# Steganography

* Binwalk

```bash
## ------------------| Displays informations
binwalk sample.jpg

## ------------------| Extrack all informations
binwalk -Me sample.jpg
```

* steghide \[`JPEG, BMP, WAV and AU`]

```bash
## ------------------| Displays informations
steghide info sample.jpg

## ------------------| Extrack all informations
steghide extract sample.jpg
steghide extract -sf sample.jpg

## ------------------| Embed file.
steghide embed –ef plaintext.txt –cf sample.jpg

## ------------------| Bruteforce password
stegseek sample.jpg /usr/share/wordlists/rockyou.txt
```

* Foremost \[`PNG`]

```bash
## ------------------| Extrack all informations
foremost -i sample.jpg
```

* Recovers Pixelized Images

```bash
## ------------------| Extract images from PDF
pdfimages -png input.pdf output.png

## ------------------| 
git clone https://github.com/spipm/Depix
cd Depix
python3 depix.py -p input.png -o output.png -s images/searchimages/debruinseq_notepad_Windows10_closeAndSpaced.png
    
```


---

# Agent Instructions: 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:

```
GET https://docs.h4rithd.com/other/steganography.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
