> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/zh/useful-resources/forensics/steganography-steghide.md).

# 隐写术 - Steghide

{% hint style="info" %}
隐写术是一种将敏感信息隐藏在看似无害的载体媒体中的技术，即使它明明就在眼前也不会引起怀疑：只有合法接收者才会知道那里有信息供他们获取。
{% endhint %}

### **使用 Steghide 进行隐写分析**

我们保存图像并对其进行分析：

1. 检查图像是否包含隐藏数据：

<figure><img src="/files/6b1fcbbcbf54c1356bf11f15a62f8c3e1ac32cff" alt=""><figcaption></figcaption></figure>

检查图像是否包含隐藏数据：

```bash
steghide info image.jpg
```

<figure><img src="/files/680df6a8440be2ece30fb67baa11cc5a79394737" alt="" width="563"><figcaption></figcaption></figure>

提取隐藏数据：

```bash
steghide extract -sf image.jpg
```

<figure><img src="/files/bfd164206dd69d1cace6348c4e3c82cf11ef03b3" alt="" width="563"><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/zh/useful-resources/forensics/steganography-steghide.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
