#netcat #listener #reverseShell #bindShell #webShell ```shell netcat -lvnp 1234 ``` Used to create [[Shells#Reverse Shells]] Flag | Description -|- -l |Listen mode, to wait for a connection to connect to us. -v |Verbose mode, so that we know when we receive a connection. -n| Disable DNS resolution and only connect from/to IPs, to speed up the connection. -p |1234 Port number netcat is listening on, and the reverse connection should be sent to. [[Miscellaneous File Transfers#File Transfer with Netcat and Ncat]]