Performing Access Review and Certification
Overview
Conduct systematic access reviews and certifications to ensure users have appropriate access rights aligned with their roles. This skill covers review campaign design, reviewer selection, risk-based prioritization, micro-certification strategies, and remediation tracking for compliance with SOX, HIPAA, and PCI DSS requirements.
Anti-Rationalization Table
| Rationalization |
Reality |
| "I'll figure it out as I go" |
A structured approach saves time and reduces errors. Follow the workflow in this skill rather than improvising. |
| "I already know this topic" |
Familiarity breeds shortcuts. Use the checklist to verify you haven't missed critical steps. |
| "This doesn't apply to my situation" |
The patterns here generalize across contexts. Adapt, don't skip — the underlying principles hold. |
| "One more tool will fix it" |
Adding complexity rarely solves process gaps. Master the core workflow first. |
When to Use
Trigger phrases:
"performing access review and certification"
"Conduct systematic access reviews and certifications to ensure users have approp"
When conducting security assessments that involve performing access review and certification
When following incident response procedures for related security events
When performing scheduled security testing or auditing activities
When validating security controls through hands-on testing
Prerequisites
- Familiarity with identity access management 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
- Design and execute access review campaigns across enterprise applications
- Implement risk-based prioritization for review scope
- Configure reviewer selection (manager, application owner, hybrid)
- Automate entitlement data collection and presentation
- Track remediation of inappropriate access findings
- Generate compliance evidence for auditors
Key Concepts
This section covers key concepts for performing access review and certification.
- Ensure all prerequisites are met before proceeding
- Follow the documented workflow steps in sequence
- Record results and any anomalies encountered during this phase
Access Review Types
- User Access Review: Manager certifies all entitlements for their direct reports
- Entitlement Review: Application owner certifies all users with specific entitlement
- Role Review: Role owner certifies role membership and permissions
- Privileged Access Review: Security team reviews high-risk/privileged access
- SOD Review: Verify no users have conflicting separation-of-duty violations
Risk-Based Prioritization
- High Risk: Privileged access, financial systems, PII/PHI systems, external-facing apps
- Medium Risk: Internal business applications, shared drives, collaboration tools
- Low Risk: Standard employee tools, read-only access, public information systems
Review Campaign Lifecycle
- Planning: Define scope, reviewers, timeline, escalation
- Data Collection: Aggregate entitlements from all identity sources
- Distribution: Assign review items to appropriate certifiers
- Certification: Reviewers approve or revoke each entitlement
- Remediation: Revoke inappropriate access, enforce timeline
- Reporting: Generate compliance evidence and metrics
- Closure: Archive campaign, feed findings into next cycle
Workflow
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
- Scope the task — define objectives, boundaries, and success criteria
- Gather information — collect all necessary data and context before proceeding
- Execute the core workflow — follow the domain-specific steps methodically
- Validate results — verify outputs against expected outcomes or baselines
- Document findings — record results, anomalies, and recommendations
Step 1: Define Review Scope and Schedule
- Identify in-scope applications and systems
- Determine review frequency: quarterly (SOX), semi-annual, annual
- Define campaign timeline: review period, escalation dates, hard close
- Establish escalation chain for non-responsive reviewers
Step 2: Data Collection and Aggregation
- Extract user-entitlement mappings from each application
- Correlate with HR data (active employees, role, department, manager)
- Identify terminated/transferred users still holding access
- Flag high-risk entitlements (admin, DBA, system, privileged)
- Calculate risk scores based on entitlement sensitivity and user role
Step 3: Reviewer Assignment
- Manager Reviews: Direct manager certifies subordinate access
- Application Owner Reviews: App owner certifies all users of their application
- Hybrid Model: Manager reviews standard access, app owner reviews privileged
- Delegate Management: Allow reviewers to delegate with audit trail
Step 4: Execute Certification Campaign
- Send notifications to reviewers with clear instructions
- Present entitlements with context (last used date, risk level, role justification)
- Require reviewers to explicitly approve or revoke each item
- Track completion percentage and send reminders
- Escalate to management after deadline
Step 5: Remediation and Tracking
- Automatically ticket revocations to IT operations
- Set SLA for revocation execution (24-48 hours for high-risk)
- Verify revocation completed (re-check entitlement)
- Exception management for business-justified deviations
- Document all exceptions with expiration dates
Step 6: Reporting and Evidence
- Generate campaign completion metrics
- Produce per-application compliance reports
- Create audit-ready evidence packages
- Track trends across review cycles
- Feed findings into risk assessment process
Security Controls
| Control |
NIST 800-53 |
Description |
| Access Review |
AC-2(3) |
Periodic review of account privileges |
| Account Management |
AC-2 |
Account lifecycle management |
| Least Privilege |
AC-6 |
Minimum necessary access enforcement |
| Separation of Duties |
AC-5 |
SOD conflict identification |
| Audit Logging |
AU-6 |
Review of access audit records |
Common Pitfalls
- Rubber-stamping: reviewers approving all access without examination
- Incomplete scope: missing critical applications from review campaigns
- No remediation tracking: revoking access on paper but not in systems
- Inconsistent reviewer assignment causing gaps in coverage
- Not including service accounts and non-human identities
Verification
When NOT to Use
- You don't have explicit written authorization to test
- Task is about defense/detection, not offense (use detection skills)
- You need to implement security controls (use implementing-* skills)
- Task requires compliance auditing (use auditing-* skills)
- You're investigating an incident (use incident response skills)
- Target is out of scope for your engagement
- Task is about vulnerability scanning only (use scanning tools)
Red Flags
- Performing actions without explicit written authorization from the asset owner
- Testing against production systems without a defined scope and rules of engagement
- Sharing sensitive findings or credentials in unencrypted communications
- Failing to properly scope and contain the assessment before starting
Process
- Analyze the task requirements
- Apply domain expertise
- Verify output quality
1---2name: performing-access-review-and-certification3description: Use when conduct systematic access reviews and certifications to ensure users have appropriate access rights aligned with their roles. This skill covers review campaign design, reviewer selection, risk-based p4license: Apache-2.05---67# Performing Access Review and Certification89## Overview10Conduct systematic access reviews and certifications to ensure users have appropriate access rights aligned with their roles. This skill covers review campaign design, reviewer selection, risk-based prioritization, micro-certification strategies, and remediation tracking for compliance with SOX, HIPAA, and PCI DSS requirements.11121314## Anti-Rationalization Table1516| Rationalization | Reality |17|---|---|18| "I'll figure it out as I go" | A structured approach saves time and reduces errors. Follow the workflow in this skill rather than improvising. |19| "I already know this topic" | Familiarity breeds shortcuts. Use the checklist to verify you haven't missed critical steps. |20| "This doesn't apply to my situation" | The patterns here generalize across contexts. Adapt, don't skip — the underlying principles hold. |21| "One more tool will fix it" | Adding complexity rarely solves process gaps. Master the core workflow first. |2223## When to Use24**Trigger phrases:**25- "performing access review and certification"26- "Conduct systematic access reviews and certifications to ensure users have approp"272829- When conducting security assessments that involve performing access review and certification30- When following incident response procedures for related security events31- When performing scheduled security testing or auditing activities32- When validating security controls through hands-on testing3334## Prerequisites3536- Familiarity with identity access management concepts and tools37- Access to a test or lab environment for safe execution38- Python 3.8+ with required dependencies installed39- Appropriate authorization for any testing activities4041## Objectives42- Design and execute access review campaigns across enterprise applications43- Implement risk-based prioritization for review scope44- Configure reviewer selection (manager, application owner, hybrid)45- Automate entitlement data collection and presentation46- Track remediation of inappropriate access findings47- Generate compliance evidence for auditors4849## Key Concepts5051This section covers key concepts for performing access review and certification.5253- Ensure all prerequisites are met before proceeding54- Follow the documented workflow steps in sequence55- Record results and any anomalies encountered during this phase56### Access Review Types571. **User Access Review**: Manager certifies all entitlements for their direct reports582. **Entitlement Review**: Application owner certifies all users with specific entitlement593. **Role Review**: Role owner certifies role membership and permissions604. **Privileged Access Review**: Security team reviews high-risk/privileged access615. **SOD Review**: Verify no users have conflicting separation-of-duty violations6263### Risk-Based Prioritization64- **High Risk**: Privileged access, financial systems, PII/PHI systems, external-facing apps65- **Medium Risk**: Internal business applications, shared drives, collaboration tools66- **Low Risk**: Standard employee tools, read-only access, public information systems6768### Review Campaign Lifecycle691. **Planning**: Define scope, reviewers, timeline, escalation702. **Data Collection**: Aggregate entitlements from all identity sources713. **Distribution**: Assign review items to appropriate certifiers724. **Certification**: Reviewers approve or revoke each entitlement735. **Remediation**: Revoke inappropriate access, enforce timeline746. **Reporting**: Generate compliance evidence and metrics757. **Closure**: Archive campaign, feed findings into next cycle7677## Workflow7879```python80# Example: IOC detection81import re8283IOC_PATTERNS = {84 "ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",85 "domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",86 "hash_md5": r"\b[a-f0-9]{32}\b",87 "hash_sha256": r"\b[a-f0-9]{64}\b",88}8990def extract_iocs(text: str) -> dict:91 return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}92```93941. **Scope the task** — define objectives, boundaries, and success criteria952. **Gather information** — collect all necessary data and context before proceeding963. **Execute the core workflow** — follow the domain-specific steps methodically974. **Validate results** — verify outputs against expected outcomes or baselines985. **Document findings** — record results, anomalies, and recommendations99### Step 1: Define Review Scope and Schedule100- Identify in-scope applications and systems101- Determine review frequency: quarterly (SOX), semi-annual, annual102- Define campaign timeline: review period, escalation dates, hard close103- Establish escalation chain for non-responsive reviewers104105### Step 2: Data Collection and Aggregation106- Extract user-entitlement mappings from each application107- Correlate with HR data (active employees, role, department, manager)108- Identify terminated/transferred users still holding access109- Flag high-risk entitlements (admin, DBA, system, privileged)110- Calculate risk scores based on entitlement sensitivity and user role111112### Step 3: Reviewer Assignment113- **Manager Reviews**: Direct manager certifies subordinate access114- **Application Owner Reviews**: App owner certifies all users of their application115- **Hybrid Model**: Manager reviews standard access, app owner reviews privileged116- **Delegate Management**: Allow reviewers to delegate with audit trail117118### Step 4: Execute Certification Campaign119- Send notifications to reviewers with clear instructions120- Present entitlements with context (last used date, risk level, role justification)121- Require reviewers to explicitly approve or revoke each item122- Track completion percentage and send reminders123- Escalate to management after deadline124125### Step 5: Remediation and Tracking126- Automatically ticket revocations to IT operations127- Set SLA for revocation execution (24-48 hours for high-risk)128- Verify revocation completed (re-check entitlement)129- Exception management for business-justified deviations130- Document all exceptions with expiration dates131132### Step 6: Reporting and Evidence133- Generate campaign completion metrics134- Produce per-application compliance reports135- Create audit-ready evidence packages136- Track trends across review cycles137- Feed findings into risk assessment process138139## Security Controls140| Control | NIST 800-53 | Description |141|---------|-------------|-------------|142| Access Review | AC-2(3) | Periodic review of account privileges |143| Account Management | AC-2 | Account lifecycle management |144| Least Privilege | AC-6 | Minimum necessary access enforcement |145| Separation of Duties | AC-5 | SOD conflict identification |146| Audit Logging | AU-6 | Review of access audit records |147148## Common Pitfalls149- Rubber-stamping: reviewers approving all access without examination150- Incomplete scope: missing critical applications from review campaigns151- No remediation tracking: revoking access on paper but not in systems152- Inconsistent reviewer assignment causing gaps in coverage153- Not including service accounts and non-human identities154155## Verification156- [ ] All in-scope applications included in campaign157- [ ] Reviewers assigned for 100% of entitlements158- [ ] Campaign completion rate exceeds 95%159- [ ] Revocations executed within SLA160- [ ] Audit evidence package complete and archived161- [ ] SOD violations identified and documented162- [ ] Exceptions documented with business justification and expiry163## When NOT to Use164165- You don't have explicit written authorization to test166- Task is about defense/detection, not offense (use detection skills)167- You need to implement security controls (use implementing-* skills)168- Task requires compliance auditing (use auditing-* skills)169- You're investigating an incident (use incident response skills)170- Target is out of scope for your engagement171- Task is about vulnerability scanning only (use scanning tools)172173174## Red Flags175176- Performing actions without explicit written authorization from the asset owner177- Testing against production systems without a defined scope and rules of engagement178- Sharing sensitive findings or credentials in unencrypted communications179- Failing to properly scope and contain the assessment before starting180181## Process1821831. Analyze the task requirements1842. Apply domain expertise1853. Verify output quality