What is it? @.@

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

2012-11-02

TRY2HACK - Level 1

Description:

LEVEL 1

Enter the password below to continue:
____________________
|___________________| click here to continue

Solution:
  1. View page source code and you'll find the JavaScript code below.
    <script type="text/javascript">
      <!--
      function Try(passwd) {   
        if (passwd =="h4x0r") {
          alert("Alright! On to level 2...");   
          location.href = "level2-xfdgnh.xhtml";
        }
        else {
          alert("The password is incorrect. Please don't try again.");
          location.href = "http://www.disney.com/";
        }
      }
      //-->  
    </script>
    
  2. And the password is "h4x0r". Well done!

No comments:

Post a Comment