nc

Netcat is een veelzijdig hulpprogramma voor het omleiden van IO naar een netwerkstream. Meer informatie: https://manned.org/nc.

nc -l -p {{poort}} < {{bestandsnaam}}

nc {{host}} {{poort}} > {{ontvangen_bestandsnaam}}

nc -v -z -w {{timeout_in_seconden}} {{host}} {{start_port}}-{{end_port}}

nc -l -p {{poort}} -e {{shell_executable}}

nc {{host}} {{poort}} -e {{shell_executable}}

nc -l -p {{local_port}} | nc {{host}} {{remote_port}}

echo -e "GET / HTTP/1.1\nHost: {{host}}\n\n" | nc {{host}} 80