Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-28 00:20:19 +00:00
parent 5bf37ece1a
commit 2c0f4bfdb2
88 changed files with 330 additions and 253 deletions

View File

@@ -6,15 +6,15 @@ source: https://github.com/tldr-pages/tldr.git
# steghide
> Steganography tool for JPEG, BMP, WAV and AU file formats.
> More information: <https://github.com/StefanoDeVuono/steghide>.
> More information: <https://manned.org/steghide>.
- Embed data in a PNG, prompting for a passphrase:
`steghide embed --coverfile {{path/to/image.png}} --embedfile {{path/to/data.txt}}`
`steghide embed {{[-cf|--coverfile]}} {{path/to/image.png}} {{[-ef|--embedfile]}} {{path/to/data.txt}}`
- Extract data from a WAV audio file:
`steghide extract --stegofile {{path/to/sound.wav}}`
`steghide extract {{[-sf|--stegofile]}} {{path/to/sound.wav}}`
- Display file information, trying to detect an embedded file:
@@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git
- Embed data in a JPEG image, using maximum compression:
`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --compress {{9}}`
`steghide embed {{[-cf|--coverfile]}} {{path/to/image.jpg}} {{[-ef|--embedfile]}} {{path/to/data.txt}} {{[-z|--compress]}} {{9}}`
- Get the list of supported encryption algorithms and modes:
@@ -30,4 +30,4 @@ source: https://github.com/tldr-pages/tldr.git
- 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|...}}`
`steghide embed {{[-cf|--coverfile]}} {{path/to/image.jpg}} {{[-ef|--embedfile]}} {{path/to/data.txt}} {{[-e|--encryption]}} {{blowfish|...}} {{cbc|...}}`