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

# WordPress - 技术

## WordPress 网站枚举

### 枚举用户：

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

### WordPress 会指示某个用户是否存在：

<figure><img src="/files/e093ccb266aea3b9b5781ffb6eeabbd531b80d55" 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/zh/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.
