# Enumeración de CMS

### Wordpress

Enumeración de temas y plugins Wordpress

**Nmap**

```bash
nmap -p80 --script http-wordpress-enum --script-args http-wordpress-enum.root='/wordpress',search-limit=1000 remote.nyx
```

**Wpscan**

```bash
wpscan --url http://192.168.1.10/wordpress --api-token $WP_TOKEN --plugins-detection aggressive
```

> La variable de entorno `$WP_TOKEN` contiene el token generado en la web <https://wpscan.com/>

**Nuclei**

```bash
nuclei -u http://remote.nyx/wordpress/ -tags fuzz -t /home/d4redevil/.local/nuclei-templates/http/fuzzing/wordpress-plugins-detect.yaml
```

**Gobuster**

```bash
gobuster dir -u http://remote.nyx/wordpress/ -w /usr/share/seclists/Discovery/WebContent/CMS/wp-plugins.fuzz.txt
```

### Joomla

[**joomscan**](https://github.com/OWASP/joomscan)

```bash
joomscan -u http://192.168.1.10
```

### Drupal

[droopescan](https://github.com/SamJoan/droopescan)

```bash
droopescan scan drupal -u http://example.org/ -t 32
```

### Magento

[magescan](https://github.com/steverobbins/magescan)

```bash
php magescan.phar scan:all <https://example.com>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://d4redevil.gitbook.io/d4redevil/cheatsheet/enumeracion-de-cms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
