Listen on Port
Open a TCP listener on the specified port.
nc -lvnp
Tool
Copy-ready command templates for common penetration testing tools. Select a tool, fill in the parameters, copy, paste, profit.
TCP/UDP networking Swiss army knife for reading/writing data across connections
Parameters
Open a TCP listener on the specified port.
Connect to a remote host and port.
Connect and immediately print whatever the service sends back.
Scan a range of ports (no data sent — zero I/O mode).
Send a file to a listening nc on the remote host.
Receiver must run: nc -lvnp {port} > received_file
Send a bash reverse shell to a waiting listener.
Set up listener first: nc -lvnp {port}. Use only on systems you own.