Drupal
tip
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.
Descubrimiento
- Verifica meta
bash
curl https://www.drupal.org/ | grep 'content="Drupal'
- Node: Drupal indexa su contenido utilizando nodos. Un nodo puede contener cualquier cosa como una publicaci贸n de blog, encuesta, art铆culo, etc. Las URIs de las p谩ginas suelen tener la forma
/node/<nodeid>
.
bash
curl drupal-site.com/node/1
Enumeraci贸n
Versi贸n
- Verifique
/CHANGELOG.txt
bash
curl -s http://drupal-site.local/CHANGELOG.txt | grep -m2 ""
Drupal 7.57, 2018-02-21
note
Las instalaciones m谩s recientes de Drupal bloquean por defecto el acceso a los archivos CHANGELOG.txt
y README.txt
.
Enumeraci贸n de nombres de usuario
Drupal soporta tres tipos de usuarios por defecto:
Administrator
: Este usuario tiene control total sobre el sitio web de Drupal.Authenticated User
: Estos usuarios pueden iniciar sesi贸n en el sitio web y realizar operaciones como agregar y editar art铆culos seg煤n sus permisos.Anonymous
: Todos los visitantes del sitio web son designados como an贸nimos. Por defecto, a estos usuarios solo se les permite leer publicaciones.
Para enumerar usuarios puedes:
- Obtener el n煤mero de usuarios: Simplemente accede a
/user/1
,/user/2
,/user/3
... hasta que devuelva un error que indique que el usuario no existe. - Registro: Accede a
/user/register
e intenta crear un nombre de usuario y si el nombre ya est谩 en uso, se indicar谩 en un error del servidor. - Restablecer contrase帽a: Intenta restablecer la contrase帽a de un usuario y si el usuario no existe, se indicar谩 claramente en un mensaje de error.
P谩ginas ocultas
Simplemente encuentra nuevas p谩ginas buscando en /node/FUZZ
donde FUZZ
es un n煤mero (del 1 al 1000, por ejemplo).
Informaci贸n de m贸dulos instalados
bash
#From https://twitter.com/intigriti/status/1439192489093644292/photo/1
#Get info on installed modules
curl https://example.com/config/sync/core.extension.yml
curl https://example.com/core/core.services.yml
# Download content from files exposed in the previous step
curl https://example.com/config/sync/swiftmailer.transport.yml
Herramientas Autom谩ticas
bash
droopescan scan drupal -u http://drupal-site.local
RCE
Si tienes acceso a la consola web de Drupal, verifica estas opciones para obtener RCE:
De XSS a RCE
- Drupalwned: Script de explotaci贸n de Drupal que eleva XSS a RCE u Otras Vulnerabilidades Cr铆ticas. Para m谩s informaci贸n, consulta esta publicaci贸n. Proporciona soporte para las versiones de Drupal 7.X.X, 8.X.X, 9.X.X y 10.X.X, y permite:
- Escalamiento de Privilegios: Crea un usuario administrativo en Drupal.
- (RCE) Subir Plantilla: Sube plantillas personalizadas con puerta trasera a Drupal.
Post Explotaci贸n
Leer settings.php
bash
find / -name settings.php -exec grep "drupal_hash_salt\|'database'\|'username'\|'password'\|'host'\|'port'\|'driver'\|'prefix'" {} \; 2>/dev/null
Volcar usuarios de la base de datos
bash
mysql -u drupaluser --password='2r9u8hu23t532erew' -e 'use drupal; select * from users'
tip
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.