> 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/depix-images.md).

# Depix 图像

我们找到 PDF 文件： `使用 OpenVAS.pdf`.

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

打开此文件时，我们发现管理员账户的像素化密码

<figure><img src="/files/b77c1d2257a4742f666d567f52e618afb4ebe693" alt=""><figcaption></figcaption></figure>

### 密码解密：

为了破解隐藏的密码，我们使用 Depix 软件：

{% embed url="<https://github.com/spipm/Depix>" %}

<figure><img src="/files/4e45d8493ddba25e654ba318267aea09382d7d98" alt=""><figcaption></figcaption></figure>

```bash
git clone https://github.com/spipm/Depix
cd Depix
```

然后执行命令：

```bash
python3 depix.py /
    -p pixel.png /
    -s images/searchimages/debruinseq_notepad_Windows10_closeAndSpaced.png /
    -o /home/jordan/Desktop/password.png
```

<figure><img src="/files/973beeb4b47ee5000c82f54381aac61bb8af9563" alt=""><figcaption></figcaption></figure>

解密后的密码是：

<figure><img src="/files/b0485a0cec5d0bf77498faa35e92e59a269d12f7" alt=""><figcaption></figcaption></figure>

`sidefromsidetheothersidesidefromsidetheotherside`

我们使用这个密码以 root 用户身份登录。

<figure><img src="/files/3cd9ce0834feb069ed6ad0220438cf776b272f43" alt="" width="554"><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/depix-images.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.
