From 86f9e45fc416c3a9727392029b9aacc5c03dafa7 Mon Sep 17 00:00:00 2001 From: ciph3rz <46655414+ciph3rz@users.noreply.github.com> Date: Thu, 4 Nov 2021 11:51:13 -0400 Subject: [PATCH] cryptcat: add page (#7226) --- pages/linux/cryptcat.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/cryptcat.md diff --git a/pages/linux/cryptcat.md b/pages/linux/cryptcat.md new file mode 100644 index 000000000..39b0b78d7 --- /dev/null +++ b/pages/linux/cryptcat.md @@ -0,0 +1,24 @@ +# cryptcat + +> Cryptcat is netcat with encryption capabilities. +> More information: . + +- [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}}` + +- Set a 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}}`