1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-06 21:35:24 +02:00
tldr/pages/linux/steghide.md

29 lines
986 B
Markdown
Raw Normal View History

2020-04-04 12:26:43 +02:00
# steghide
> Steganography tool for JPEG, BMP, WAV and AU file formats.
> More information: <https://manned.org/steghide>.
2020-04-04 12:26:43 +02:00
- Embed data in a PNG, prompting for a passphrase:
2020-04-04 12:26:43 +02:00
`steghide embed {{[-cf|--coverfile]}} {{path/to/image.png}} {{[-ef|--embedfile]}} {{path/to/data.txt}}`
2020-04-04 12:26:43 +02:00
- Extract data from a WAV audio file:
`steghide extract {{[-sf|--stegofile]}} {{path/to/sound.wav}}`
2020-04-04 12:26:43 +02:00
- 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 {{[-cf|--coverfile]}} {{path/to/image.jpg}} {{[-ef|--embedfile]}} {{path/to/data.txt}} {{[-z|--compress]}} {{9}}`
2020-04-04 12:26:43 +02:00
- 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 {{[-cf|--coverfile]}} {{path/to/image.jpg}} {{[-ef|--embedfile]}} {{path/to/data.txt}} {{[-e|--encryption]}} {{blowfish|...}} {{cbc|...}}`