> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/es/cms/wordpress-cms-exploitation/wordpress-techniques.md).

# WordPress - Técnicas

## Enumeración de sitio WordPress

### Enumerar usuarios:

<figure><img src="/files/860b9be5fd3047d260616a07cc0639b4c6472d2b" alt="" width="563"><figcaption></figcaption></figure>

### WordPress indica si existe un usuario:

<figure><img src="/files/682b8ccbee8a95053be3d20aaf69a887a02419b0" alt="" width="563"><figcaption></figcaption></figure>

### Comprobar la versión de WordPress:

```bash
whatweb https://website.com
```

### Encontrar vulnerabilidades de versión con searchsploit:

```bash
searchsploit wordpress user enumeration
```

### Buscar los plugins utilizados, incluidas las versiones:

```bash
wpscan --url https://website.com
```

### Encontrar plugins ocultos en el código fuente del sitio:

```bash
curl -s -X GET "https://website.com/" | grep -oP 'plugins//K[^/]+' | sort -u
```

### Encontrar vulnerabilidades con un [WPScan](https://wpscan.com/profile) token:

```bash
wpscan --url https://website.com -e vp --api-token="ms2cBwllBoXKaLvhVsrwTIaeL1GBbS44WLlkeu5UWQ4"
```

### Fuerza bruta de usuarios válidos:

```bash
wpscan --url https://website.com -e u
```

### Fuerza bruta de la contraseña después de identificar un usuario válido:

```bash
wpscan --url https://website.com -U USER -P /usr/share/wordlists/rockyou.txt
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/es/cms/wordpress-cms-exploitation/wordpress-techniques.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
