檔案包含漏洞示例

神棍先生發表於2017-08-25
<?php
if( !ini_get(`display_errors`) ) {
  ini_set(`display_errors`, `On`);
  }
error_reporting(E_ALL);
$f = $_GET["file"];
if ($f){
require "".$f.".php";
}else{
print("No File Included");
}
?>


相關文章