# Forensics 101

> Think the flag is somewhere in there. Would you help me find it? <https://mega.nz/#!OHohCbTa!wbg60PARf4u6E6juuvK9-aDRe\\_bgEL937VO01EImM7c>

Let's open the link and see what is in the MEGA folder.

<figure><img src="/files/5XmxaZlWuA58szNoBJeG" alt=""><figcaption></figcaption></figure>

It's an image with a Minion on it. It also has some text but none of it is in the format of our flag.

There are some strings inside of an image file as well. These strings can be extracted using the `strings` utility in Linux.

```
$ strings 95f6edfb66ef42d774a5a34581f19052.jpg 
-- snip --;
flag{wow!_data_is_cool}
-- snip --;
```

Alternatively we can also use the `Strings` operation inside [Cyberchef](https://gchq.github.io/CyberChef/) in order to find the flag.&#x20;

<figure><img src="/files/Ge286NKRbzQXsFiV3Xxa" alt=""><figcaption></figcaption></figure>

### Flag

```
flag{wow!_data_is_cool}
```


---

# 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://kunalwalavalkar.gitbook.io/write-ups/ctflearn/forensics/forensics-101.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.
