orca-identity-review

Solid

Analyzes any cloud identity for overprivileged access, actual usage patterns, lateral movement risk, and least-privilege recommendations. Use when user asks about identity permissions, overprivileged access, or IAM review (e.g., "identity review for anika", "is this role overprivileged", "review permissions", "IAM analysis").

Code & Development 50 stars 9 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
57
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Orca Identity Review Skill Answers the question: **"Is this identity overprivileged, and what's the blast radius if it's compromised?"** Given an IAM role, user, or service account, analyzes effective permissions vs actual usage from CloudTrail, identifies overprivileged access, maps lateral movement potential, and generates a least-privilege recommendation. ## Usage ``` /orca-identity-review admin-role /orca-identity-review arn:aws:iam::123456789012:role/bastion-admin-role ``` Or natural language: - "review the permissions on admin-role" - "is terraform-deploy overprivileged?" - "identity risk for orca-scanner-role" - "what can this role access?" ## Processing Logic ### Step 1: Find the Identity | Input Pattern | Tool | Parameter | |--------------|------|-----------| | ARN format `arn:aws:iam::...` | `get_asset_by_id` | `asset_id` with appropriate `model_type` | | Role/user name | `get_asset_by_name` | `asset_name`, `model_type: "AwsIamRole"` or `"AwsIamUser"` | | Name (ambiguous) | Try `get_asset_by_name` with each IAM type, or `discovery_search` | If multiple results, show list and ask user to pick. Extract: ARN, identity type (Role/User/ServiceAccount), account, creation date, tags, attached policies. ### Step 2: Gather Data (run ALL in parallel) **Query 1: Effective permissions** ``` get_aws_effective_permissions_policy_on_asset: asset_arn: "<identity ARN>" ``` Returns the current effective permissions AND a recommended least-privilege policy. **Query 2:...

Details

Author
orcasecurity
Repository
orcasecurity/orca-skills
Created
4 months ago
Last Updated
5 days ago
Language
N/A
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category