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

# WordPress — техники

## Перечисление сайта WordPress

### Перечислить пользователей:

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

### WordPress показывает, существует ли пользователь:

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

### Проверьте версию WordPress:

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

### Найдите уязвимости версии с помощью searchsploit:

```bash
searchsploit wordpress user enumeration
```

### Ищите используемые плагины, включая версии:

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

### Найдите скрытые плагины в исходном коде сайта:

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

### Найдите уязвимости с помощью [WPScan](https://wpscan.com/profile) токен:

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

### Подберите действительных пользователей:

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

### Подберите пароль после определения действительного пользователя:

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