Files
LFIboomCTF/命令执行/index.php

6 lines
105 B
PHP
Raw Permalink Normal View History

2017-02-20 20:53:20 +08:00
<?php
include "flag.php";
$a = @$_REQUEST['hello'];
eval( "var_dump($a);");
show_source(__FILE__);
?>