DEV Community

Huxley
Huxley

Posted on • Updated on

picoCTF: Insp3ct0r

Challenge

Name: Insp3ct0r

Points: 50

Description:

Kishor Balan tipped us off that the following code may need inspection

Link: https://jupiter.challenges.picoctf.org/problem/9670/

Hints
  1. How do you inspect web code on a browser?
  2. There's 3 parts

Solution

View source

PC: CTRL + U
Mac: OPTION + COMMAND + U
Both: Right click view source 
Enter fullscreen mode Exit fullscreen mode

The first flag is at the bottom of the index.html file

<!-- Html is neat. Anyways have 1/3 of the flag: *** -->
Enter fullscreen mode Exit fullscreen mode

The second flag is at the bottom of the mycss.css file

/* You need CSS to make pretty pages. Here's part 2/3 of the flag: *** */
Enter fullscreen mode Exit fullscreen mode

The third flag is at the bottom of the myjs.js file

/* Javascript sure is neat. Anyways part 3/3 of the flag: *** */
Enter fullscreen mode Exit fullscreen mode

Top comments (0)