Files
tldr/pages.zh/linux/steghide.md

28 lines
893 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# steghide
> 针对JPEG、BMP、WAV和AU文件格式的隐写工具。
> 更多信息:<https://github.com/StefanoDeVuono/steghide>。
- 在PNG中嵌入数据提示输入密码短语
`steghide embed --coverfile {{path/to/image.png}} --embedfile {{path/to/data.txt}}`
- 从WAV音频文件中提取数据
`steghide extract --stegofile {{path/to/sound.wav}}`
- 显示文件信息,尝试检测嵌入的文件:
`steghide info {{path/to/file.jpg}}`
- 在JPEG图像中嵌入数据使用最大压缩
`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --compress {{9}}`
- 获取支持的加密算法和模式列表:
`steghide encinfo`
- 在JPEG图像中嵌入加密数据例如使用CBC模式的Blowfish
`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --encryption {{blowfish|...}} {{cbc|...}}`