JavaScript is disabled. Some features may not work.
analyzing-active-directory-acl-abuse — ★ 19.7K GitHub Stars — Install Guide | SkillsNav
🇺🇸 English🇨🇳 中文
SkillsNav
Home

analyzing-active-directory-acl-abuse

★ 19K repogenerationN/AIntermediateClaude
🤖 AI Summary

This skill connects to a Domain Controller via LDAP, parses binary `nTSecurityDescriptor` attributes into SDDL, and identifies misconfigured ACEs that grant dangerous permissions (e.g., GenericAll, WriteDACL) to non-privileged users on sensitive AD objects.

How to Install

Claude Code:
git clone --depth 1 https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git && cp Anthropic-Cybersecurity-Skills/skills/analyzing-active-directory-acl-abuse ~/.claude/skills/analyzing-active-directory-acl-abuse -r
# Analyzing Active Directory ACL Abuse ## Overview Active Directory Access Control Lists (ACLs) define permissions on AD objects through Discretionary Access Control Lists (DACLs) containing Access Control Entries (ACEs). Misconfigured ACEs can grant non-privileged users dangerous permissions such as GenericAll (full control), WriteDACL (modify permissions), WriteOwner (take ownership), and GenericWrite (modify attributes) on sensitive objects like Domain Admins groups, domain controllers, or GPOs. This skill uses the ldap3 Python library to connect to a Domain Controller, query objects with their nTSecurityDescriptor attribute, parse the binary security descriptor into SDDL (Security Descriptor Definition Language) format, and identify ACEs that grant dangerous permissions to non-administrative principals. These misconfigurations are the basis for ACL-based attack paths discovered by tools like BloodHound. ## When to Use - When investigating security incidents that require analyzing active directory acl abuse - When building detection rules or threat hunting queries for this domain - When SOC analysts need structured procedures for this analysis type - When validating security monitoring coverage for related attack techniques ## Prerequisites - Python 3.9 or later with ldap3 library (`pip install ldap3`) - Domain user credentials with read access to AD objects - Network connectivity to Domain Controller on port 389 (LDAP) or 636 (LDAPS) - Understanding of Active Directory security model and SDDL format ## Steps 1. **Connect to Domain Controller**: Establish an LDAP connection using ldap3 with NTLM or simple authentication. Use LDAPS (port 636) for encrypted connections in production. 2. **Query target objects**: Search the target OU or entire domain for objects including users, groups, computers, and OUs. Request the `nTSecurityDescriptor`, `distinguishedName`, `objectClass`, and `sAMAccountName` attributes. 3. **Parse security descriptors**: Convert the binary nTSecurityDescriptor into its SDDL string representation. Parse each ACE in the DACL to extract the trustee SID, access mask, and ACE type (allow/deny). 4. **Resolve SIDs to principals**: Map security identifiers (SIDs) to human-readable account names using LDAP lookups against the domain. Identify well-known SIDs for built-in groups. 5. **Check for dangerous permissions**: Compare each ACE's access mask against dangerous permission bitmasks: GenericAll (0x10000000), WriteDACL (0x00040000), WriteOwner (0x00080000), GenericWrite (0x40000000), and WriteProperty for specific extended rights. 6. **Filter non-admin trustees**: Exclude expected administrative trustees (Domain Admins, Enterprise Admins, SYSTEM, Administrators) and flag ACEs where non-privileged users or groups hold dangerous permissions. 7. **Map attack paths**: For each finding, document the potential attack chain (e.g., GenericAll on user allows password reset, WriteDACL on group allows adding self to group).

Details

Category Coding → generation
Sourcemukul975/Anthropic-Cybersecurity-Skills
SKILL.mdView on GitHub →
Repo Stars★ 19.7K
Est. per SkillN/A (shared across 144 skills from this repo)
DifficultyIntermediate
Risk LevelN/A

Related Skills

Works Well With

Skills from the same repository — often designed to work together