What is it? @.@

Here is the place where I record some tactics about wargame, systems, and other security issues.

2013-02-13

Hacker Test - Level 5

Description:

Solution:
  1. When you get into this level, there will be a prompt popped up to require you enter the password. If you enter a wrong answer, it will redirect you back to level 4.
  2. Disable the JavaScript functionality of your browser and re-enter this level. You will see the webpage like above.
  3. View page source code and find the JavaScript code below.
    <script language=JavaScript>
    var pass, i;
    pass=prompt("Password: ","");
    if (pass=="SAvE-as hELpS a lOt") {
    window.location.href="save_as.htm";
    i=4;
    }else {alert("Try again");
    window.location.href="abrae.htm";}
    // -->
    </script>
    
  4. Got it!
    password : SAvE-as hELpS a lOt
    URL of level 6 : http://www.hackertest.net/save_as.htm

No comments:

Post a Comment