mirror of
https://github.com/carlospolop/hacktricks
synced 2025-01-10 12:18:52 +00:00
72 lines
4.9 KiB
Markdown
72 lines
4.9 KiB
Markdown
|
# PHP SSRF
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
||
|
|
||
|
* ¿Trabajas en una **empresa de ciberseguridad**? ¿Quieres ver tu **empresa anunciada en HackTricks**? ¿O quieres tener acceso a la **última versión de PEASS o descargar HackTricks en PDF**? ¡Consulta los [**PLANES DE SUSCRIPCIÓN**](https://github.com/sponsors/carlospolop)!
|
||
|
* Descubre [**The PEASS Family**](https://opensea.io/collection/the-peass-family), nuestra colección exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
|
* Obtén el [**swag oficial de PEASS y HackTricks**](https://peass.creator-spring.com)
|
||
|
* **Únete al** [**💬**](https://emojipedia.org/speech-balloon/) [**grupo de Discord**](https://discord.gg/hRep4RUj7f) o al [**grupo de telegram**](https://t.me/peass) o **sígueme** en **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
||
|
* **Comparte tus trucos de hacking enviando PR al** [**repositorio de hacktricks**](https://github.com/carlospolop/hacktricks) **y al** [**repositorio de hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|
||
|
|
||
|
### Funciones PHP para SSRF
|
||
|
|
||
|
Algunas funciones como _**file\_get\_contents(), fopen(), file(), md5\_file()**_ aceptan URLs como entrada que seguirán, lo que hace **posibles vulnerabilidades de SSRF** si el usuario puede controlar los datos:
|
||
|
```php
|
||
|
file_get_contents("http://127.0.0.1:8081");
|
||
|
fopen("http://127.0.0.1:8081", "r");
|
||
|
file("http://127.0.0.1:8081");
|
||
|
md5_file("http://127.0.0.1:8081");
|
||
|
```
|
||
|
### CRLF
|
||
|
|
||
|
Además, en algunos casos, incluso puede ser posible enviar encabezados arbitrarios a través de "vulnerabilidades" CRLF en las funciones anteriores:
|
||
|
```php
|
||
|
# The following will create a header called from with value Hi and
|
||
|
# an extra header "Injected: I HAVE IT"
|
||
|
ini_set("from", "Hi\r\nInjected: I HAVE IT");
|
||
|
file_get_contents("http://127.0.0.1:8081");
|
||
|
|
||
|
GET / HTTP/1.1
|
||
|
From: Hi
|
||
|
Injected: I HAVE IT
|
||
|
Host: 127.0.0.1:8081
|
||
|
Connection: close
|
||
|
|
||
|
# Any of the previously mentioned functions will send those headers
|
||
|
```
|
||
|
{% hint style="warning" %}
|
||
|
Para obtener más información sobre la vulnerabilidad CRLF, consulte este error [https://bugs.php.net/bug.php?id=81680\&edit=1](https://bugs.php.net/bug.php?id=81680\&edit=1)
|
||
|
{% endhint %}
|
||
|
|
||
|
Tenga en cuenta que estas funciones pueden tener otros métodos para establecer encabezados arbitrarios en las solicitudes, como:
|
||
|
```php
|
||
|
$url = "";
|
||
|
|
||
|
$options = array(
|
||
|
'http'=>array(
|
||
|
'method'=>"GET",
|
||
|
'header'=>"Accept-language: en\r\n" .
|
||
|
"Cookie: foo=bar\r\n" . // check function.stream-context-create on php.net
|
||
|
"User-Agent: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.102011-10-16 20:23:10\r\n" // i.e. An iPad
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$context = stream_context_create($options);
|
||
|
$file = file_get_contents($url, false, $context);
|
||
|
```
|
||
|
<details>
|
||
|
|
||
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
||
|
|
||
|
* ¿Trabajas en una **empresa de ciberseguridad**? ¿Quieres ver tu **empresa anunciada en HackTricks**? ¿O quieres tener acceso a la **última versión de PEASS o descargar HackTricks en PDF**? ¡Consulta los [**PLANES DE SUSCRIPCIÓN**](https://github.com/sponsors/carlospolop)!
|
||
|
* Descubre [**The PEASS Family**](https://opensea.io/collection/the-peass-family), nuestra colección exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
|
* Obtén la [**oficial PEASS & HackTricks swag**](https://peass.creator-spring.com)
|
||
|
* **Únete al** [**💬**](https://emojipedia.org/speech-balloon/) **grupo de Discord** o al [**grupo de telegram**](https://t.me/peass) o **sígueme en** **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
||
|
* **Comparte tus trucos de hacking enviando PRs al** [**repositorio de hacktricks**](https://github.com/carlospolop/hacktricks) **y al** [**repositorio de hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|