> 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/credentials/windows-authentication-and-authorization.md).

# Autenticación y autorización en Windows

<details>

<summary>Recursos</summary>

{% embed url="<https://learn.microsoft.com/en-us/windows/win32/secauthz/access-tokens>" %}

{% embed url="<https://learn.microsoft.com/en-us/windows-server/security/windows-authentication/credentials-processes-in-windows-authentication#BKMK_CrentialInputForUserLogon>" %}

</details>

> **Segundo plano**: Esta sección explica cómo Windows gestiona la autenticación, las sesiones de inicio de sesión, los tokens de acceso y las credenciales en memoria o en caché. Las manipulaciones descritas se realizan en un **laboratorio autorizado** con el fin de comprender los riesgos vinculados al compromiso de una estación de trabajo Windows en un dominio de Active Directory.

#### Principio general

Cuando un usuario se autentica correctamente en Windows, el sistema crea una **sesión de inicio de sesión**, es decir, una sesión de conexión.

El paquete de autenticación transmite entonces información a la **LSA**o **Autoridad de seguridad local**.

La LSA utiliza esta información para crear un **token de acceso** asociado al nuevo usuario.

Este token contiene notablemente:

* la identidad del usuario;
* los grupos a los que pertenece;
* sus privilegios;
* su nivel de integridad;
* una credencial local única llamada **LUID**;
* el contexto de seguridad de la sesión.

El **LUID**o **Identificador único local**, permite identificar localmente una sesión de conexión.


---

# 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/credentials/windows-authentication-and-authorization.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.
