tldr/pages/linux/ncat.md

30 lines
881 B
Markdown
Raw Normal View History

2017-11-01 19:52:54 +00:00
# ncat
> Read, write, redirect, and encrypt data across a network.
> An alternative implementation of a similar utility called `netcat`/`nc`.
> More information: <https://nmap.org/ncat/guide/index.html>.
2017-11-01 19:52:54 +00:00
- Listen for input on the specified port and write it to the specified file:
2018-03-26 08:47:48 +01:00
`ncat -l {{port}} > {{path/to/file}}`
- Accept multiple connections and keep ncat open after they have been closed:
`ncat -lk {{port}}`
2017-11-01 19:52:54 +00:00
- Write output of specified file to the specified host on the specified port:
2018-03-26 08:47:48 +01:00
`ncat {{address}} {{port}} < {{path/to/file}}`
- Accept multiple incoming connections on an encrypted channel evading detection of traffic content:
`ncat --ssl -k -l {{port}}`
- Connect to an open `ncat` connection over SSL:
`ncat --ssl {{host}} {{port}}`
- Check connectivity to a remote host on a particular port with timeout:
`ncat -w {{seconds}} -vz {{host}} {{port}}`