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

# WordPress - Techniken

## WordPress-Seitenaufzählung

### Benutzer aufzählen:

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

### WordPress zeigt an, ob ein Benutzer existiert:

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

### Prüfe die WordPress-Version:

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

### Finde Versionsschwachstellen mit searchsploit:

```bash
searchsploit wordpress user enumeration
```

### Suche nach verwendeten Plugins, einschließlich Versionen:

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

### Finde versteckte Plugins im Quellcode der Website:

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

### Finde Schwachstellen mit einem [WPScan](https://wpscan.com/profile) Token:

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

### Gültige Benutzer per Brute-Force ermitteln:

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

### Das Passwort per Brute-Force ermitteln, nachdem ein gültiger Benutzer identifiziert wurde:

```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/de/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.
