我有一个文件 index.php(如下所示)。文件夹“myfolder”内还有另一个文件“other.php”
$a = $_GET['page'];
include('myfolder/' . $a . '.php');
网址是:localhost/index.php?page=other
我想做一个像这样的黑客:
localhost/index.php?page=other.php);<MALICIOUS CODE;//
(//
是评论该行的其余部分)
这可能吗 ?