> 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/ru/useful-resources/forensics/depix-images.md).

# Изображения Depix

Мы находим PDF-файл: `Используя OpenVAS.pdf`.

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

При открытии этого файла мы обнаруживаем пикселизированный пароль для учетной записи администратора

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

### Расшифровка пароля:

Чтобы взломать скрытый пароль, мы используем ПО Depix:

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

<figure><img src="/files/e52ab0c0c03cd4a7a4b113f29620bb38e1e21f2b" 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/2747c1b6cb65b1d63bad53203cdfbf6aa1d1473f" alt=""><figcaption></figcaption></figure>

Расшифрованный пароль:

<figure><img src="/files/834fa6577ce4bfb478f06edebbbd3c6740e773ad" alt=""><figcaption></figcaption></figure>

`sidefromsidetheothersidesidefromsidetheotherside`

Мы входим под пользователем root с этим паролем.

<figure><img src="/files/8b5e095866b0cde2e9f529e3cd63b182d9018607" 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/ru/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.
