Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
linux/steghide Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
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>.
- Embed data in a PNG, 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|...}}`