Rating:

# inspector-general

Author: [roerohan](https://github.com/roerohan)

Basic source code challenge.

# Requirements

- Viewing source of HTML

# Source

- https://redpwn.net/

# Exploitation

Press `Ctrl + U` on your browser to view the source code of the `HTML` file. Search for `flag{...}`.

```html
<meta name="redpwnctf2020" content="flag{1nspector_g3n3ral_at_w0rk}">
```

The flag is:

```
flag{1nspector_g3n3ral_at_w0rk}
```

Original writeup (https://github.com/csivitu/CTF-Write-ups/tree/master/redpwnCTF%202020/web/inspector-general).