1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| <?php error_reporting(0); highlight_file(__FILE__); include "passwd.php";
if(isset($_GET['L1'])) { $L1 = $_GET['L1']; echo "Here is level1.<br />"; is_numeric($L1) ? die("nonono!") : NULL; if ($L1 > 2021) { echo "Congratulations,You pass the level1!<br />"; echo "Here is level2.<br />"; if(isset($_GET['L2'])) $L2=$_GET['L2']; if (strlen($L2) <= 3 && $L2 > 20000) { echo "Congratulations,You pass the level2!<br />"; echo "Here is level3.<br />"; if (isset($_GET['L3'])) $md5_1 = md5('QNKCDZO'); $md5_2 = md5($_GET['L3']); if ($md5_1 == $md5_2) { echo "Congratulations,You pass the level3!<br />"; echo "Here is level 4.<br />"; if (isset($_GET['L4'])) $level_4 = $_GET['L4']; if (strcmp($level_4, $level_4_password) == 0) { echo "Password is right,You pass the level4!<br />"; echo "Here is level5.<br />"; if (isset($_POST['L5'])) { $level_5 = $_POST['L5']; eval("print_r($level_5);"); } } else { die("Sorry, you didn't pass the level4!"); } } else { die("Sorry, you didn't pass the level3!"); } } else { die("Sorry, you didn't pass the level2!"); } } else { die("Sorry, you didn't pass the level1!"); } }
|