1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 10:42:07 +02:00
tldr/pages/linux/cryptcat.md
Vitor Henrique d79a1667e3
pages*: refine wording (#12132)
* pages*: refine wording

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2024-02-09 19:25:36 +05:30

692 B

cryptcat

Cryptcat is netcat with encryption capabilities. More information: http://cryptcat.sourceforge.net.

  • [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]):

cryptcat -k {{password}} -w {{timeout_in_seconds}} {{ip_address}} {{port}}

  • Scan ([z]) the open ports of a specified host:

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}}