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

# Kerbrute - Outil

> Kerbrute est un outil open source conçu pour effectuer l’énumération d’utilisateurs sur un domaine Kerberos. Il exploite les réponses du service KDC (Key Distribution Center) pour identifier les utilisateurs valides.

### **Énumération d’utilisateurs via Kerberos**

Le `users.txt` Le fichier contient une liste de noms d’utilisateur potentiels générés en combinant différents formats de nom (prénom, nom, initiales, etc.). Ces formats augmentent les chances d’identifier des utilisateurs valides dans un domaine Active Directory.

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

#### Créez un `users.txt` fichier contenant des noms d’utilisateur potentiels

```
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
```

Utilisez `kerbrute` pour énumérer les utilisateurs valides.

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

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

**Utilisation avec un dictionnaire prédéfini**

Kerbrute peut aussi être utilisé avec des dictionnaires publics comme ceux de SecLists :

* **Options supplémentaires**:
  * `/usr/share/SecLists/Usernames/xato-net-10-million-usernames.txt`: Utilise un dictionnaire contenant des millions de noms d’utilisateur potentiels.

<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/fr/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.
