Good luck!
Solution:- When we enter this challenge page, it pop up an alert message like below to ask us to input the valid username.
- If we input anything wrong, it will direct us to an error page containing a message like below.
Sorry but that is not right.
- Let's disable the JavaScript functionality of our browser first. Then, view page source code, but we could not find any JavaScript code. Actually, the code was included by a link in the header like below.
<script type="text/javascript" src="www.bright-shadows.net/challenges/js/check.js"></script>
- Visit the link and you will find the code below.
var input; input=prompt ("Login to get access!",""); if (input == "nice_or?"){ window.location.href="niceeyes.php"; } else{ window.location.href="sorrywrong.php"; }
- Just input the password like 'nice_or?' or visit the URL 'niceeyes.php'.
- Well done!
No comments:
Post a Comment