[wp] 攻防世界 Web_php_include

<?php
show_source(__FILE__);
echo $_GET['hello'];
$page=$_GET['page'];
while (strstr($page, "php://")) {
    $page=str_replace("php://", "", $page);
}
include($page);
?>

strstr是对大小写敏感的,用大写PHP绕过检测
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

发布了32 篇原创文章 · 获赞 9 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_40884727/article/details/101571923