From e21d3e0d11968b2fbcb285d0477423442d81cf58 Mon Sep 17 00:00:00 2001 From: Johan Degn <54548365+johandegn@users.noreply.github.com> Date: Fri, 10 Mar 2023 22:20:23 +0100 Subject: [PATCH] stegsnow: add page (#9933) --- pages/linux/stegsnow.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/stegsnow.md diff --git a/pages/linux/stegsnow.md b/pages/linux/stegsnow.md new file mode 100644 index 000000000..3d0c8e792 --- /dev/null +++ b/pages/linux/stegsnow.md @@ -0,0 +1,28 @@ +# stegsnow + +> Steganography tool for concealing and extracting messages in text files encoded as tabs and spaces. +> More information: . + +- Extract [m]essage from file: + +`stegsnow {{path/to/file.txt}}` + +- Extract [C]ompressed and [p]assword protected [m]essage from file: + +`stegsnow -C -p {{password}} {{path/to/file.txt}}` + +- Determine approximate [S]torage capacity with line [l]ength less than 72 for file: + +`stegsnow -S -l 72 {{path/to/file.txt}}` + +- Conceal [m]essage in text from file and save to result: + +`stegsnow -m '{{message}}' {{path/to/file.txt}} {{path/to/result.txt}}` + +- Conceal message [f]ile content [C]ompressed in text from file and save to result: + +`stegsnow -C -f '{{path/to/message.txt}}' {{path/to/file.txt}} {{path/to/result.txt}}` + +- Conceal [m]essage [C]ompressed and [p]assword protected in text from file and save to result: + +`stegsnow -C -p {{password}} -m '{{message}}' {{path/to/file.txt}} {{path/to/result.txt}}`