fork download
  1. <script language=JavaScript>
  2. var base= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z");
  3. var data=new Array(3);
  4. base.reverse();
  5. data[0]=base[42];
  6. data[1]=base[11];
  7. data[2]=base[17];
  8. data[3]=base[12];
  9. data[4]=base[7];
  10. data[5]=base[43];
  11. data[6]=base[6];
  12. password=prompt("Please enter the Password!","");
  13. if (password==data.join("_")){
  14. window.location.href=""+password+".php";
  15. }
  16.  
  17. </script>
  18.  
Runtime error #stdin #stdout 0.01s 4980KB
stdin
Standard input is empty
stdout
Standard output is empty