mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 19:44:05 +00:00
22 lines
445 B
Plaintext
22 lines
445 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, windows]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mimikatz dpapi
|
|
|
|
> Interact with the Windows Data Protection API (DPAPI).
|
|
> More information: <https://github.com/gentilkiwi/mimikatz>.
|
|
|
|
- List master keys:
|
|
|
|
`mimikatz "dpapi::masterkey /list"`
|
|
|
|
- Decrypt a DPAPI blob:
|
|
|
|
`mimikatz "dpapi::blob /in:blob_file.bin"`
|
|
|
|
- Retrieve Chrome credentials using DPAPI:
|
|
|
|
`mimikatz "dpapi::chrome /in:Login Data"`
|