Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Secrets

Author

Geoffrey Njogu

Description

We have several pages hidden. Can you find the one with the flag?
The website is running here.

Hints

  1. folders folders folders

Approach

If you inspect the page, you'll notice in the head, the CSS is linked. For whatever reason, the CSS is put into a folder called "secret". That's suspicious.

<link href="secret/assets/index.css" rel="stylesheet">

If we visit /secret we'll notice a file inside a folder called "hudden" when looking at the HTML:

<head>
    <title></title>
    <link rel="stylesheet" href="hidden/file.css">
</head>

At /secret/hidden we will once again find a file that's linked:

<link href="superhidden/login.css" rel="stylesheet">

Finally at /secret/hidden/superhidden we find

<body>
    <h1>Finally. You found me. But can you see me</h1>
    <h3 class="flag">picoCTF{succ3ss_@h3n1c@10n_34327aaf}</h3>
</body>

Flag

picoCTF{succ3ss_@h3n1c@10n_34327aaf}