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

# Kerbrute - Ferramenta

> Kerbrute é uma ferramenta de código aberto projetada para realizar enumeração de usuários em um domínio Kerberos. Ela aproveita as respostas do serviço KDC (Key Distribution Center) para identificar usuários válidos.

### **Enumeração de usuários via Kerberos**

O `users.txt` O arquivo contém uma lista de possíveis nomes de usuário gerados pela combinação de diferentes formatos de nomes (nome, sobrenome, iniciais etc.). Esses formatos aumentam as chances de identificar usuários válidos em um domínio do Active Directory.

<figure><img src="/files/4528df49633c3b4bfd77e23547cb206865affb5e" alt=""><figcaption></figcaption></figure>

#### Crie um `users.txt` arquivo contendo possíveis nomes de usuário

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

Use `kerbrute` para enumerar usuários válidos.

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

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

**Operação com um dicionário predefinido**

O Kerbrute também pode ser usado com dicionários públicos, como os do SecLists:

* **Opções adicionais**:
  * `/usr/share/SecLists/Usernames/xato-net-10-million-usernames.txt`: Usa um dicionário contendo milhões de possíveis nomes de usuário.

<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/pt-br/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.
