# Steg

## Steganography <a href="#steganography" id="steganography"></a>

### Useful websites

| Address                                              | Explanation           |
| ---------------------------------------------------- | --------------------- |
| <https://secsy.net/easy\\_stegoCTF>                  | steganography tools   |
| <https://www.branah.com/braille-translator>          | Braille interpreter   |
| <http://bigwww.epfl.ch/demo/ip/demos/FFT/>           | Decode TTF            |
| <https://www.dcode.fr/brainfuck-language>            | translator brainfuck  |
| <https://www.boxentriq.com/code-breaking/morse-code> | Morse code translator |
| <https://georgeom.net/StegOnline/image>              | Display LSB HALF mode |

### Extract the file inside the file

```
steghide info <filename> -p <password>
steghide extract -sf <filename> -p <password>
```

### Extract the file inside the wav file

```
java -jar turgen.jar
```

### Convert binary codes to qrcode

```
https://www.dcode.fr/binary-image
https://online-barcode-reader.inliteresarchy.com/
```

### transformations of photos

```
java -jar Stegsolve.jar
```

### Check the file

```
binwalk -e <file>
strings <file>
```

### Guess the password of the file in the file

```
./steg_brute.py -b -d /usr/share/wordlists/rockyou.txt -f ../meow.wav
```

<br>
