> 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/kerberos-88/kerbrute-tool.md).

# Kerbrute - Werkzeug

> Kerbrute ist ein Open-Source-Tool, das entwickelt wurde, um eine Benutzeraufzählung in einer Kerberos-Domäne durchzuführen. Es nutzt Antworten vom KDC-Dienst (Key Distribution Center), um gültige Benutzer zu identifizieren.

### **Benutzeraufzählung via Kerberos**

Das `users.txt` Die Datei enthält eine Liste potenzieller Benutzernamen, die durch die Kombination verschiedener Namensformate (Vorname, Nachname, Initialen usw.) erzeugt wurden. Diese Formate erhöhen die Chancen, gültige Benutzer in einer Active-Directory-Domäne zu identifizieren.

<figure><img src="/files/5f19bb14f18f104076b244c345159b0b3d4a200a" alt=""><figcaption></figcaption></figure>

#### Erstellen Sie eine `users.txt` Datei mit potenziellen Benutzernamen

```
hugosmith
h.smith 
hugo.smith
hsmith

fergussmith
f.smith 
fergus.smith 
fsmith

hugobear
h.bear
hugo.bear
hbear

stevenkerb
s.kerb
steven.kerb
skerb

shauncoins
s.coins
shaun.coins
scoins

bowietaylor
b.taylor
bowie.taylor
btaylor

sophiedriver
s.driver
sophie.driver
sdriver
```

Verwenden Sie `kerbrute` um gültige Benutzer aufzuzählen.

```bash
kerbrute userenum -d egotistical-bank.local --dc 10.10.10.175 users.txt
```

<figure><img src="/files/55643c0603d2ba690101cfed85519b979dc77bd8" alt=""><figcaption></figcaption></figure>

**Verwendung eines vordefinierten Wörterbuchs**

Kerbrute kann auch mit öffentlichen Wörterbüchern wie denen in SecLists verwendet werden:

* **Zusätzliche Optionen**:
  * `/usr/share/SecLists/Usernames/xato-net-10-million-usernames.txt`: Verwendet ein Wörterbuch mit Millionen potenzieller Benutzernamen.

<pre class="language-bash"><code class="lang-bash"><strong>kerbrute userenum -d support.htb --dc 10.10.11.174 /usr/share/SecLists/Usernames/xato-net-10-million-usernames.txt
</strong></code></pre>


---

# 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/kerberos-88/kerbrute-tool.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.
