> For the complete documentation index, see [llms.txt](https://simon-6.gitbook.io/simoncyber/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://simon-6.gitbook.io/simoncyber/ctf-writeups/picoctf-2024/forensics/verify-easy.md).

# Verify (Easy)

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

***

This one will be pretty quick. The challenge gives us 3 objects.

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

We use the checksum.txt to find sha256 hash as a file in "files". We'll need to use grep for this.

```
sha256sum files/* | grep 467a10447deb3d4e17634cacc2a68ba6c2bb62a6637dad9145ea673bf0be5e02
```

Doing this, we get the file name. Once we find that, it's just another command before finding the flag.

```
./decrypt.sh files/c6c8b911
```

picoCTF{trust\_but\_verify\_c6c8b911}
