Rating: 5.0

## Description

We have several pages hidden. Can you find the one with the flag?
The website is running [here](http://saturn.picoctf.net:54925/).

## Solution

If we right click --> inspect and look at the sources tab, we find that some of the assets are in a suspiciously named folder called "secret". If we navigate to the secret suburl (http://saturn.picoctf.net:54925/secret/), we find a website that says "Finally. You almost found me. you are doing well". We are on the right track. If we repeat the same process as before, we find that there is another suspiciously named folder, "hidden", so we navigate to http://saturn.picoctf.net:54925/secret/hidden/. We keep on repeating this process until we reach a website that says "Finally. You found me. But can you see me". The flag is probably hidden by the css. We can just look at the source HTML to get the flag.

## Flag

*picoCTF{succ3ss_@h3n1c@10n_34327aaf}*

Original writeup (https://github.com/FlyN-Nick/picoGymWriteups/blob/main/Web%20Exploitation/Secrets/Secrets.md).