What is it? @.@

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

2012-11-28

Hacker Test - Level 2

Description:

Level 2

Refresh now...

Solution:
  1. When we enter level 2, it will prompt a password login window like above and ask us to enter the password.
  2. Just press the 'Cancel' button and view page source code.
    <script language="JavaScript" type="text/javascript">
    var pass, i;
    pass=prompt("Please enter password!","");
    if (pass=="l3l") {
    window.location.href="http://www.hackertest.net/"+pass+".htm";
    i=4;
    }
    </script>
    
  3. Got it!
    password: l3l
    URL of level 3: http://www.hackertest.net/l3l.htm

No comments:

Post a Comment