> 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/pt-br/cms/wordpress-cms-exploitation/wordpress-techniques.md).

# WordPress - Técnicas

## Enumeração de site WordPress

### Enumere usuários:

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

### O WordPress indica se um usuário existe:

<figure><img src="/files/0a45e8ec7b4a2329db3116184268749ab61675d3" alt="" width="563"><figcaption></figcaption></figure>

### Verifique a versão do WordPress:

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

### Encontre vulnerabilidades da versão com searchsploit:

```bash
searchsploit wordpress user enumeration
```

### Pesquise plugins usados, incluindo versões:

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

### Encontre plugins ocultos no código-fonte do site:

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

### Encontre vulnerabilidades com um [WPScan](https://wpscan.com/profile) token:

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

### Faça força bruta em usuários válidos:

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

### Faça força bruta da senha após identificar um usuário 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/pt-br/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.
