HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

cryptcat — Cryptcat is netcat with encryption capabilities. More information: <https://manned.org/cryptcat>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
netcatcommandcapabilitiesclicryptcatencryptionwith
linux

Problem

How to use the cryptcat command: Cryptcat is netcat with encryption capabilities. More information: <https://manned.org/cryptcat>.

Solution

cryptcat — Cryptcat is netcat with encryption capabilities. More information: <https://manned.org/cryptcat>.

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

Code Snippets

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

Context

tldr-pages: linux/cryptcat

Revisions (0)

No revisions yet.