赞
踩
对萌新友好
一进入就看到提示
php
$file must has test
提示传参中需要包含test
?file=test试试
回显中少了$file must has test字样,且变成了testphp,尝试访问test.php
回显为flag_not_here
说明存在此文件,返回主页尝试传参?file=test.
回显为
test.php
flag_not_here
猜测为文件包含,尝试包含主页源码
传参?file=php://filter/convert.base64-encode/resource=test/…/index.
解码回显得到源码
<?php
error_reporting(0);
$file=$_GET['file'];
$file=$file.'php';
echo $file."<br />";
if(preg_match('/test/is',$file)){
include ($fil
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。