> For the complete documentation index, see [llms.txt](https://docs.h4rithd.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.h4rithd.com/other/steganography.md).

# 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
    
```
