1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/cryptcat.md

25 lines
693 B
Markdown
Raw Normal View History

2021-11-04 11:51:13 -04:00
# cryptcat
> Cryptcat is netcat with encryption capabilities.
2024-10-12 10:02:00 +02:00
> More information: <https://cryptcat.sourceforge.net>.
2021-11-04 11:51:13 -04:00
- [l]isten on a specified [p]ort and print any data received:
`cryptcat -k {{password}} -l -p {{port}}`
- Connect to a certain port:
`cryptcat -k {{password}} {{ip_address}} {{port}}`
- Specify the timeout ([w]):
2021-11-04 11:51:13 -04:00
`cryptcat -k {{password}} -w {{timeout_in_seconds}} {{ip_address}} {{port}}`
- Scan ([z]) the open ports of a specified host:
2021-11-04 11:51:13 -04:00
`cryptcat -v -z {{ip_address}} {{port}}`
- Act as proxy and forward data from a local TCP port to the given remote host:
`cryptcat -k {{password}} -l -p {{local_port}} | cryptcat -k {{password}} {{hostname}} {{remote_port}}`