Tags: forensics 

Rating:

# Mind Blown

We're given an image.

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-TJ/images/mind-blown-1.jpg)

Let's binwalk it.

```
$ binwalk --dd=".*" image.jpg
```

Upon looking at the extracted contents, we find the flag:

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-TJ/images/mind-blown-2.png)

```
tjctf{kn0w_y0ur_m3tad4ta}
```

Original writeup (https://github.com/shawnduong/ctf-writeups/blob/master/2019-TJ/Forensics/mind-blown.md).