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);
}
}
1.傳入str,經過處理反序列化,
2.is_valid過濾:傳入的string要是可見字符ascii值為32-125,
3.$op:op=="1"的時候會進入write方法處理,op=="2"的時候進入read方法處理,
2.利用php>7.1版本對類屬性的檢測不嚴格(對屬性型別不敏感)
2.1正常構造payload的話因為$op、$fliename、$content都是protected屬性,序列化的的結果的屬性名前面會有/00/00(或者%00%00),/00的ascii為0不可見的字符如下圖,就會被is_valid方法攔下來,

2.php>7.1版本對類屬性的檢測不嚴格來繞過,將序列化里的portected屬性換成public屬性,就不會有/00,

2.2弱型別繞過
然后$obj = unserialize($str);會呼叫__destruct魔術方法,如果變數op全等于字串2的話就賦值$op="1"

這時候要使op全等于字串2不成立且op=="2"成立,這里可以自己使用op等于整數2使得進入read方法里面,因為= = =php會先對比兩邊的型別一個是數字2一個是字串"2"所以是flase, = =在進行比較的時候,會先將字串型別轉化成相同,再比較,然后字串"2"轉成數字也就是2從而實作read方法,
構造payload
1.非預期的解法

2.通過php偽協議讀取

比賽的是通過讀取/proc/self/cmdline下的組態檔得到網站的絕對路徑然后通過php偽協議讀取flag的
參考:(https://blog.csdn.net/Oavinci/article/details/106998738)[https://blog.csdn.net/Oavinci/article/details/106998738]
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/2013.html
標籤:其他
上一篇:order by 注入姿勢
下一篇:7.11工控安全學習
