摘要: Example 1 源码: <?php require_once("../header.php"); ?> <?php $str="echo \"Hello ".$_GET['name']."!!!\";"; eval($str);?><?php require_once("../footer.ph 阅读全文
posted @ 2020-06-25 17:57 APT-101 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Example 1 源码: <?php require_once '../header.php'; ?> <?php if ($_GET["page"]) { include($_GET["page"]); } ?> <?php require_once '../footer.php'; ?> 解释 阅读全文
posted @ 2020-06-25 16:45 APT-101 阅读(168) 评论(0) 推荐(0) 编辑
摘要: Example 1 源码: <?php $UploadDir = '/var/www/files/'; if (!(isset($_GET['file']))) die(); $file = $_GET['file']; $path = $UploadDir . $file; if (!is_fil 阅读全文
posted @ 2020-06-25 16:04 APT-101 阅读(134) 评论(0) 推荐(0) 编辑