Drupal
Last updated
Last updated
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE) Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Check meta
Node: Drupal indexes its content using nodes. A node can hold anything such as a blog post, poll, article, etc. The page URIs are usually of the form /node/<nodeid>
.
Check /CHANGELOG.txt
Newer installs of Drupal by default block access to the CHANGELOG.txt
and README.txt
files.
Drupal supports three types of users by default:
Administrator
: This user has complete control over the Drupal website.
Authenticated User
: These users can log in to the website and perform operations such as adding and editing articles based on their permissions.
Anonymous
: All website visitors are designated as anonymous. By default, these users are only allowed to read posts.
To enumerate users you can:
Get number of users: Just access /user/1
, /user/2
, /user/3
... until it returns an error indicating that the suer doesn't exist.
Registry: Access/user/register
and try to create a username and if the name is already taken it will be indicated in an error from the server.
Reset password: Try to reset the password of a user and if the user doesn't exist it will be indicated clearly in an error message.
Just find new pages by looking into /node/FUZZ
where FUZZ
is a number (from 1 to 1000 for example).
If you have access to the Drupal web console check these options to get RCE:
Drupalwned: Drupal Exploitation Script that elevate XSS to RCE or Others Critical Vulnerabilities. For more info check this post. It provides support for Drupal Versions 7.X.X, 8.X.X, 9.X.X and 10.X.X, and allows to:
Privilege Escalation: Creates an administrative user in Drupal.
(RCE) Upload Template: Upload custom templates backdoored to Drupal.
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE) Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)