> 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/kerberos-key-components.md).

# Componentes clave de Kerberos

#### KDC

El **KDC**o **Centro de distribución de claves**, está instalado en el controlador de dominio.

Es responsable de emitir tickets Kerberos.

Contiene dos componentes principales:

* **AS** : Servicio de autenticación ;
* **TGS** : Servicio de concesión de tickets.

#### AS — Servicio de autenticación

El **AS** es la parte del KDC responsable de la autenticación inicial del usuario.

Ocurre cuando el usuario se conecta al dominio.

#### TGS — Servicio de concesión de tickets

El **TGS** es la parte del KDC responsable de proporcionar tickets para acceder a servicios específicos.

Ejemplos de servicios:

* recurso compartido SMB;
* servicio HTTP;
* MSSQL;
* LDAP;
* CIFS;
* servicio de aplicación interna.

#### cuenta krbtgt

En Active Directory, se crea una cuenta especial de forma predeterminada:

```
krbtgt
```

Esta cuenta es utilizada por el KDC para firmar y cifrar ciertos tickets Kerberos.

Es extremadamente sensible porque está relacionada con cómo funciona la autenticación Kerberos en el dominio.

<figure><img src="/files/b9cce22f2c9df5df65a1473e3b7d10a4a71532ec" 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/kerberos-key-components.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.
