mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-12 06:04:56 +03:00
2.0 KiB
2.0 KiB
Workflows - AD Vulnerability Assessment
Workflow 1: Comprehensive AD Security Assessment
Steps
- Run PingCastle health check to get overall AD security score
- Review PingCastle report for stale objects, privilege issues, trust problems, and anomalies
- Run SharpHound data collection against the domain
- Upload SharpHound data to BloodHound CE
- Execute critical BloodHound queries (shortest path to DA, Kerberoastable admins, delegation issues)
- Run Purple Knight for additional security indicator checks
- Consolidate findings from all three tools into unified report
- Prioritize findings by risk severity and attack path impact
- Generate remediation plan with specific PowerShell/GPO fix commands
Workflow 2: Attack Path Remediation
Steps
- Identify top 5 shortest attack paths to Domain Admin from BloodHound
- For each path, determine the weakest link (misconfigured ACL, session reuse, etc.)
- Remediate weakest links to break attack paths
- Re-run BloodHound collection to verify paths are eliminated
- Document remediated paths and remaining risk
Workflow 3: Privileged Account Hardening
Steps
- Export all members of privileged groups from PingCastle report
- Validate each account has legitimate business need for privilege
- Remove unnecessary privileged group memberships
- Implement tiered administration model (Tier 0/1/2)
- Enable Protected Users group for sensitive accounts
- Configure AdminSDHolder with correct ACLs
- Verify changes with follow-up PingCastle scan
Workflow 4: Kerberos Security Hardening
Steps
- Identify all Kerberoastable accounts from BloodHound
- Convert user-assigned SPNs to Managed Service Accounts (MSA/gMSA) where possible
- For remaining SPNs, ensure 25+ character passwords with rotation
- Disable DES and RC4 encryption for Kerberos
- Enable AES-256 encryption for all accounts
- Enable Kerberos pre-authentication for all accounts
- Configure constrained delegation to replace unconstrained delegation