From e409ab72bd20e42853a14371e96f55a52c7d4d0a Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 4 Apr 2020 12:26:43 +0200 Subject: [PATCH] steghide: add page (#3950) --- pages/linux/steghide.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/steghide.md diff --git a/pages/linux/steghide.md b/pages/linux/steghide.md new file mode 100644 index 0000000000..11df94a99d --- /dev/null +++ b/pages/linux/steghide.md @@ -0,0 +1,28 @@ +# steghide + +> Steganography tool for JPEG, BMP, WAV and AU file formats. +> More information: . + +- Embed data in a PNG image, prompting for a passphrase: + +`steghide embed --coverfile {{path/to/image.png}} --embedfile {{path/to/data.txt}}` + +- Extract data from a WAV audio file: + +`steghide extract --stegofile {{path/to/sound.wav}}` + +- Display file information, trying to detect an embedded file: + +`steghide info {{path/to/file.jpg}}` + +- Embed data in a JPEG image, using maximum compression: + +`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --compress {{9}}` + +- Get the list of supported encryption algorithms and modes: + +`steghide encinfo` + +- Embed encrypted data in a JPEG image, e.g. with Blowfish in CBC mode: + +`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --encryption {{blowfish|...}} {{cbc|...}}`