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

# أداة Kerbrute

> Kerbrute هي أداة مفتوحة المصدر مصممة لإجراء تعداد المستخدمين على نطاق Kerberos. وهي تستفيد من الاستجابات الصادرة عن خدمة KDC (مركز توزيع المفاتيح) لتحديد المستخدمين الصالحين.

### **تعداد المستخدمين عبر Kerberos**

الـ `users.txt` يحتوي الملف على قائمة بأسماء مستخدمين محتملة تم إنشاؤها من خلال دمج صيغ مختلفة للاسم (الاسم الأول، اسم العائلة، الأحرف الأولى، إلخ). تزيد هذه الصيغ من فرص تحديد المستخدمين الصالحين في نطاق Active Directory.

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

#### أنشئ `users.txt` ملف يحتوي على أسماء مستخدمين محتملة

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

استخدم `kerbrute` لتعداد المستخدمين الصالحين.

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

<figure><img src="/files/28615075d7e1ca4cecdd22544d03e1f3e66df131" alt=""><figcaption></figcaption></figure>

**العمل باستخدام قاموس مُعرَّف مسبقًا**

يمكن أيضًا استخدام Kerbrute مع القواميس العامة مثل تلك الموجودة في SecLists:

* **خيارات إضافية**:
  * `/usr/share/SecLists/Usernames/xato-net-10-million-usernames.txt` : يستخدم قاموسًا يحتوي على ملايين أسماء المستخدمين المحتملة.

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