Tags: web 

Rating:

# Inspect Me

```
Keith's little brother messed up some things...

https://inspect-me.web.chal.hsctf.com

Note: There are 3 parts to the flag!
```

We need to view the source code of the site in order to find the flag. The first one is in the HTML as a comment.

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-HSCTF6/images/inspect-me-1.png)

The second part is in the stylesheet.

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-HSCTF6/images/inspect-me-2.png)

The final part is in the JavaScript.

![](https://raw.githubusercontent.com/shawnduong/ctf-writeups/master/2019-HSCTF6/images/inspect-me-3.png)

The final flag put together is

```
hsctf{that_was_pretty_easy_right}
```

Original writeup (https://github.com/shawnduong/ctf-writeups/blob/master/2019-HSCTF6/Web/inspect-me.md).