Main 2 – Solution

This challenge is very similar to Level 1. First, we are greeted by another username/password form.

Once again, the first thing that we should do is inspect the source code of the page to find anything interesting. As there was nothing in the header that was especially mysterious, I used ctrl+f and searched for “user” to find the section of the code that entailed the form.

Inside the <span> tags outside the label exists a username of “resu” and a password of “ssap”, which is user and pass backwards.

Previous: Main 1Next: Main 3