HackThisSite Basic Mission 3 Walkthrough
This is a walkthrough of the basic challenge 3.
The voice-over for these videos is done by MicMonster AI TTS.
Basic 3 - Mission Briefing
On this mission the briefing described that this time Sam remembered to upload the password file, but there were deeper problems than that.
This time submit button did not sign us in.
Solution
To solve this challenge, I had to look in to the source code.
** Steps to get the password: **
- Right-click on the password-field and select inspect
- There is a hidden-input field that has value “password.php”
<input type="hidden" name="file" value="password.php">
- Copy the “password.php and paste it in the end of page url.
https://www.hackthissite.org/missions/basic/3/password.php
- Press enter. You get redirected to the password.php -page and you should see the password.
- Copy the password and paste it to the password field. Press submit.
My thoughts about this challenge?
This challenge was easy, but it shows that sometimes the source code can reveal information about your app that you would not want to show. Remember that anyone could view the source code. Better to make sure that there is not something we don’t want people to see.