














































































<SCRIPT language="JavaScript">
  <!-- Key-code script by Bart Jellema
    var usermulcode=216
    var code=0   // the entered code
    var mul=1    // the multiplied digits
    var digit=0  // number of digits entered so far
    var fails=0  // number of tries done

    function Enter_code(number)
    {
     
      code=code*10+number         // Add the digit to the code
      mul=mul*number              // Update mul-value
      document.codepad.thecode.value=code  // Show code
      digit++                     // Increase digit
      
      if (digit==3)
      {
        if (mul==216)
        {
          location=code+".html"
        }
        else
        {
          fails++                 // Increase fails
          code=0                  // Reset values
          mul=1
          digit=0
          if (fails<3)            
          {
            if (fails==1)
            {document.codepad.thecode.value="Wrong!"}
            if (fails==2)
            {document.codepad.thecode.value="Try Again"}
          }
          else                    // To many tries = worp back 
          {
            location="bdoor.html"
            document.codepad.thecode.value="Later!"
          } 
        }
      }
    }

    function keycodepad(mulcode)
    {
      usermulcode=mulcode
      document.write("<form name=\"codepad\">");
      document.write("<input type=\"button\" value=\" 1 \" onClick=\"Enter_code(1)\">");
      document.write("<input type=\"button\" value=\" 2 \" onClick=\"Enter_code(2)\">");
      document.write("<input type=\"button\" value=\" 3 \" onClick=\"Enter_code(3)\"><br>");
      document.write("<input type=\"button\" value=\" 4 \" onClick=\"Enter_code(4)\">");
      document.write("<input type=\"button\" value=\" 5 \" onClick=\"Enter_code(5)\">");
      document.write("<input type=\"button\" value=\" 6 \" onClick=\"Enter_code(6)\"><br>");
      document.write("<input type=\"button\" value=\" 7 \" onClick=\"Enter_code(7)\">");
      document.write("<input type=\"button\" value=\" 8 \" onClick=\"Enter_code(8)\">");
      document.write("<input type=\"button\" value=\" 9 \" onClick=\"Enter_code(9)\"><br>");
      document.write("<input type=\"text\" name=\"thecode\" size=10 value=\"\"><br>");
      document.write("</form>");
    }
// -->
</SCRIPT>

<TITLE>Backdoor Access</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<CENTER><h1>
Backdoor Access</h1>
<h3>You must supply the correct code to gain access to the Backdoor
files</h3>
 <img src="/cgi-bin/counter?douglast:secret.html&width=5"> have tried<br>
<h2>Enter Code:</h2>


<center>

<script>
  keycodepad(216)
</script>



</BODY>
</HTML>

