> For the complete documentation index, see [llms.txt](https://picoctf2019.haydenhousen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://picoctf2019.haydenhousen.com/forensics/so-meta.md).

# So Meta

## Problem

> Find the flag in this picture. You can also find the file in /problems/so-meta\_3\_6dc950904c3ee41f324ae8d9f142f2b8.

* [Image](https://github.com/HHousen/PicoCTF-2019/tree/24b0981c72638c12f9a8572f81e1abbcf8de306d/Forensics/So%20Meta/pico_img.png)

## Solution

1. The flag is hidden in the EXIF data of the image. Use `exiftool` and `grep`:

   ```bash
    $ exiftool pico_img.png | grep Artist
    Artist                          : picoCTF{s0_m3ta_43f253bb}
   ```
2. [Katana](https://github.com/JohnHammond/katana) can solve this challenge:

   ```bash
    Target completed in 0.21 seconds after 1847 unit cases
    grep(/data/targets/pico_img.png) ➜ 
    picoCTF{s0_m3ta_43f253bb} - (copied)
   ```

### Flag

`picoCTF{s0_m3ta_43f253bb}`
