Source profileQuality 94/100Review permissions

alirezarezvani/claude-skills/engineering-team/skills/cloud-security/SKILL.md

cloud-security

Use when assessing cloud infrastructure for security misconfigurations, IAM privilege escalation paths, S3 public exposure, open security group rules, or IaC security gaps. Covers AWS, Azure, and GCP posture assessment with MITRE ATT&CK mapping.

Source repository stars
24,975
Declared platforms
0
Static risk flags
1
Last source update
2026-08-25
Source checked
2026-08-26

Decision brief

What it does: where it fits

Cloud security posture assessment skill for detecting IAM privilege escalation, public storage exposure, network configuration risks, and infrastructure-as-code misconfigurations. This is NOT incident response for active cloud compromise (see incident-response) or application vu…

Best for

  • Use when assessing cloud infrastructure for security misconfigurations, IAM privilege escalation paths, S3 public exposure, open security group rules, or IaC security gaps.

Not for

  • Running IAM analysis without checking escalation combos — Individual high-risk actions in isolation may appear low-risk. The danger is in combinations: iam:PassRole alone is not critical, but iam:PassRole + lambda:Creat…
  • Enabling only bucket-level public access block — AWS S3 has both account-level and bucket-level public access block settings. A bucket-level setting can override an account-level setting. Both must be configured. Accoun…

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/alirezarezvani/claude-skills --skill "engineering-team/skills/cloud-security"
Safe inspection promptEditorial

Inspect the Agent Skill "cloud-security" from https://github.com/alirezarezvani/claude-skills/blob/f2bac0a8f29b71846cc62d9d580249c2a3246030/engineering-team/skills/cloud-security/SKILL.md at commit f2bac0a8f29b71846cc62d9d580249c2a3246030. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    S3 Exposure Assessment

    S3 assessment checks four dimensions: public access block configuration, bucket ACL, bucket policy principal exposure, and default encryption.

    S3 assessment checks four dimensions: public access block configuration, bucket ACL, bucket policy principal exposure, and default encryption.All four public access block settings must be enabled at both the bucket level and the AWS account level. Account-level settings can be overridden by bucket-level settings if not both enforced.
  2. 02

    IaC Security Review

    Infrastructure-as-code review catches configuration issues at definition time, before deployment.

    Infrastructure-as-code review catches configuration issues at definition time, before deployment.
  3. 03

    Workflow 1: Quick Posture Check (20 Minutes)

    For a newly provisioned resource or pre-deployment review:

    For a newly provisioned resource or pre-deployment review:
  4. 04

    3. Review security groups for open admin ports

    aws ec2 describe-security-groups --group-ids sg-123456 | \ jq '.SecurityGroups[0]' sg.json python3 scripts/cloudposturecheck.py sg.json --check sg --json bash

    aws ec2 describe-security-groups --group-ids sg-123456 | \ jq '.SecurityGroups[0]' sg.json python3 scripts/cloudposturecheck.py sg.json --check sg --json bash
  5. 05

    Workflow 2: Full Cloud Security Assessment (Multi-Day)

    Day 1 — IAM and Identity: 1. Export all IAM policies attached to production roles 2. Run cloudposturecheck.py --check iam on each policy 3. Map all privilege escalation paths found 4. Identify overprivileged service accounts and roles 5. Review cross-account trust policies

    Export all IAM policies attached to production rolesRun cloudposturecheck.py --check iam on each policyMap all privilege escalation paths found

Permission review

Static risk signals and limitations

Runs scripts

medium · line 50

The documentation asks the agent to run terminal commands or scripts.

python3 scripts/cloud_posture_check.py policy.json --check iam --json

Runs scripts

medium · line 53

The documentation asks the agent to run terminal commands or scripts.

python3 scripts/cloud_posture_check.py bucket_config.json --check s3 --json

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score94/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars24,975SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
alirezarezvani/claude-skills
Skill path
engineering-team/skills/cloud-security/SKILL.md
Commit
f2bac0a8f29b71846cc62d9d580249c2a3246030
License
MIT
Collected
2026-08-26
Default branch
main
View the original SKILL.md

Cloud Security

Cloud security posture assessment skill for detecting IAM privilege escalation, public storage exposure, network configuration risks, and infrastructure-as-code misconfigurations. This is NOT incident response for active cloud compromise (see incident-response) or application vulnerability scanning (see security-pen-testing) — this is about systematic cloud configuration analysis to prevent exploitation.


Table of Contents


Overview

What This Skill Does

This skill provides the methodology and tooling for cloud security posture management (CSPM) — systematically checking cloud configurations for misconfigurations that create exploitable attack surface. It covers IAM privilege escalation paths, storage public exposure, network over-permissioning, and infrastructure code security.

Distinction from Other Security Skills

SkillFocusApproach
cloud-security (this)Cloud configuration riskPreventive — assess before exploitation
incident-responseActive cloud incidentsReactive — triage confirmed cloud compromise
threat-detectionBehavioral anomaliesProactive — hunt for attacker activity in cloud logs
security-pen-testingApplication vulnerabilitiesOffensive — actively exploit found weaknesses

Prerequisites

Read access to IAM policy documents, S3 bucket configurations, and security group rules in JSON format. For continuous monitoring, integrate with cloud provider APIs (AWS Config, Azure Policy, GCP Security Command Center).


Cloud Posture Check Tool

The cloud_posture_check.py tool runs three types of checks: iam (privilege escalation), s3 (public access), and sg (network exposure). It auto-detects the check type from the config file structure or accepts explicit --check flags.

# Analyze an IAM policy for privilege escalation paths
python3 scripts/cloud_posture_check.py policy.json --check iam --json

# Assess S3 bucket configuration for public access
python3 scripts/cloud_posture_check.py bucket_config.json --check s3 --json

# Check security group rules for open admin ports
python3 scripts/cloud_posture_check.py sg.json --check sg --json

# Run all checks with internet-facing severity bump
python3 scripts/cloud_posture_check.py config.json --check all \
  --provider aws --severity-modifier internet-facing --json

# Regulated data context (bumps severity by one level for all findings)
python3 scripts/cloud_posture_check.py config.json --check all \
  --severity-modifier regulated-data --json

# Pipe IAM policy from AWS CLI
aws iam get-policy-version --policy-arn arn:aws:iam::123456789012:policy/MyPolicy \
  --version-id v1 | jq '.PolicyVersion.Document' | \
  python3 scripts/cloud_posture_check.py - --check iam --json

Exit Codes

CodeMeaningRequired Action
0No high/critical findingsNo action required
1High-severity findingsRemediate within 24 hours
2Critical findingsRemediate immediately — escalate to incident-response if active

IAM Policy Analysis

IAM analysis detects privilege escalation paths, overprivileged grants, public principal exposure, and data exfiltration risk.

Privilege Escalation Patterns

PatternSeverityKey Action CombinationMITRE
Lambda PassRole escalationCriticaliam:PassRole + lambda:CreateFunctionT1078.004
EC2 instance profile abuseCriticaliam:PassRole + ec2:RunInstancesT1078.004
CloudFormation PassRoleCriticaliam:PassRole + cloudformation:CreateStackT1078.004
Self-attach policy escalationCriticaliam:AttachUserPolicy + sts:GetCallerIdentityT1484.001
Inline policy self-escalationCriticaliam:PutUserPolicy + sts:GetCallerIdentityT1484.001
Policy version backdoorCriticaliam:CreatePolicyVersion + iam:ListPoliciesT1484.001
Credential harvestingHighiam:CreateAccessKey + iam:ListUsersT1098.001
Group membership escalationHighiam:AddUserToGroup + iam:ListGroupsT1098
Password reset attackHighiam:UpdateLoginProfile + iam:ListUsersT1098
Service-level wildcardHighiam:* or s3:* or ec2:*T1078.004

IAM Finding Severity Guide

Finding TypeConditionSeverity
Full admin wildcardAction=* Resource=*Critical
Public principalPrincipal: '*'Critical
Dangerous action comboTwo-action escalation pathCritical
Individual priv-esc actionsOn wildcard resourceHigh
Data exfiltration actionss3:GetObject, secretsmanager:GetSecretValue on *High
Service wildcardservice:* actionHigh
Data actions on named resourceAppropriate scopeLow/Clean

Least Privilege Recommendations

For every critical or high finding, the tool outputs a least_privilege_suggestion field with specific remediation guidance:

  • Replace Action: * with a named list of required actions
  • Replace Resource: * with specific ARN patterns
  • Use AWS Access Analyzer to identify actually-used permissions
  • Separate dangerous action combinations into different roles with distinct trust policies

S3 Exposure Assessment

S3 assessment checks four dimensions: public access block configuration, bucket ACL, bucket policy principal exposure, and default encryption.

S3 Configuration Check Matrix

CheckFinding ConditionSeverity
Public access blockAny of four flags missing/falseHigh
Bucket ACLpublic-read-writeCritical
Bucket ACLpublic-read or authenticated-readHigh
Bucket policy Principal"Principal": "*" with AllowCritical
Default encryptionNo ServerSideEncryptionConfigurationHigh
Default encryptionNon-standard SSEAlgorithmMedium
No PublicAccessBlockConfigurationStatus unknownMedium

Recommended S3 Baseline Configuration

{
  "PublicAccessBlockConfiguration": {
    "BlockPublicAcls": true,
    "BlockPublicPolicy": true,
    "IgnorePublicAcls": true,
    "RestrictPublicBuckets": true
  },
  "ServerSideEncryptionConfiguration": {
    "Rules": [{
      "ApplyServerSideEncryptionByDefault": {
        "SSEAlgorithm": "aws:kms",
        "KMSMasterKeyID": "arn:aws:kms:region:account:key/key-id"
      },
      "BucketKeyEnabled": true
    }]
  },
  "ACL": "private"
}

All four public access block settings must be enabled at both the bucket level and the AWS account level. Account-level settings can be overridden by bucket-level settings if not both enforced.


Security Group Analysis

Security group analysis flags inbound rules that expose admin ports, database ports, or all traffic to internet CIDRs (0.0.0.0/0, ::/0).

Critical Port Exposure Rules

PortServiceFinding SeverityRemediation
22SSHCriticalRestrict to VPN CIDR or use AWS Systems Manager Session Manager
3389RDPCriticalRestrict to VPN CIDR or use AWS Fleet Manager
0–65535 (all)All trafficCriticalRemove rule; add specific required ports only

High-Risk Database Port Rules

PortServiceFinding SeverityRemediation
1433MSSQLHighAllow from application tier SG only — move to private subnet
3306MySQLHighAllow from application tier SG only — move to private subnet
5432PostgreSQLHighAllow from application tier SG only — move to private subnet
27017MongoDBHighAllow from application tier SG only — move to private subnet
6379RedisHighAllow from application tier SG only — move to private subnet
9200ElasticsearchHighAllow from application tier SG only — move to private subnet

Severity Modifiers

Use --severity-modifier internet-facing when the assessed resource is directly internet-accessible (load balancer, API gateway, public EC2). Use --severity-modifier regulated-data when the resource handles PCI, HIPAA, or GDPR-regulated data. Both modifiers bump each finding's severity by one level.


IaC Security Review

Infrastructure-as-code review catches configuration issues at definition time, before deployment.

IaC Check Matrix

ToolCheck TypesWhen to Run
TerraformResource-level checks (aws_s3_bucket_acl, aws_security_group, aws_iam_policy_document)Pre-plan, pre-apply, PR gate
CloudFormationTemplate property validation (PublicAccessBlockConfiguration, SecurityGroupIngress)Template lint, deploy gate
Kubernetes manifestsContainer privileges, network policies, secret exposurePR gate, admission controller
Helm chartsSame as KubernetesPR gate

Terraform IAM Policy Example — Finding vs. Clean

# BAD: Will generate critical findings
resource "aws_iam_policy" "bad_policy" {
  policy = jsonencode({
    Version = "2012-10-17"
    Statement = [{
      Effect   = "Allow"
      Action   = "*"
      Resource = "*"
    }]
  })
}

# GOOD: Least privilege
resource "aws_iam_policy" "good_policy" {
  policy = jsonencode({
    Version = "2012-10-17"
    Statement = [{
      Effect   = "Allow"
      Action   = ["s3:GetObject", "s3:PutObject"]
      Resource = "arn:aws:s3:::my-specific-bucket/*"
    }]
  })
}

Full CSPM check reference: references/cspm-checks.md


Cloud Provider Coverage Matrix

Check TypeAWSAzureGCP
IAM privilege escalationFull (IAM policies, trust policies, ESCALATION_COMBOS)Partial (RBAC assignments, service principal risks)Partial (IAM bindings, workload identity)
Storage public accessFull (S3 bucket policies, ACLs, public access block)Partial (Blob SAS tokens, container access levels)Partial (GCS bucket IAM, uniform bucket-level access)
Network exposureFull (Security Groups, NACLs, port-level analysis)Partial (NSG rules, inbound port analysis)Partial (Firewall rules, VPC firewall)
IaC scanningFull (Terraform, CloudFormation)Partial (ARM templates, Bicep)Partial (Deployment Manager)

Workflows

Workflow 1: Quick Posture Check (20 Minutes)

For a newly provisioned resource or pre-deployment review:

# 1. Export IAM policy document
aws iam get-policy-version --policy-arn ARN --version-id v1 | \
  jq '.PolicyVersion.Document' > policy.json
python3 scripts/cloud_posture_check.py policy.json --check iam --json

# 2. Check S3 bucket configuration
aws s3api get-bucket-acl --bucket my-bucket > acl.json
aws s3api get-public-access-block --bucket my-bucket >> bucket.json
python3 scripts/cloud_posture_check.py bucket.json --check s3 --json

# 3. Review security groups for open admin ports
aws ec2 describe-security-groups --group-ids sg-123456 | \
  jq '.SecurityGroups[0]' > sg.json
python3 scripts/cloud_posture_check.py sg.json --check sg --json

Decision: Exit code 2 = block deployment and remediate. Exit code 1 = schedule remediation within 24 hours.

Workflow 2: Full Cloud Security Assessment (Multi-Day)

Day 1 — IAM and Identity:

  1. Export all IAM policies attached to production roles
  2. Run cloud_posture_check.py --check iam on each policy
  3. Map all privilege escalation paths found
  4. Identify overprivileged service accounts and roles
  5. Review cross-account trust policies

Day 2 — Storage and Network:

  1. Enumerate all S3 buckets and export configurations
  2. Run cloud_posture_check.py --check s3 --severity-modifier regulated-data for data buckets
  3. Export security group configurations for all VPCs
  4. Run cloud_posture_check.py --check sg for internet-facing resources
  5. Review NACL rules for network segmentation gaps

Day 3 — IaC and Continuous Integration:

  1. Review Terraform/CloudFormation templates in version control
  2. Check CI/CD pipeline for IaC security gates
  3. Validate findings against references/cspm-checks.md
  4. Produce remediation plan with priority ordering (Critical → High → Medium)

Workflow 3: CI/CD Security Gate

Integrate posture checks into deployment pipelines to prevent misconfigured resources reaching production:

# Validate IaC before terraform apply
terraform show -json plan.json | \
  jq '[.resource_changes[].change.after | select(. != null)]' > resources.json
python3 scripts/cloud_posture_check.py resources.json --check all --json
if [ $? -eq 2 ]; then
  echo "Critical cloud security findings — blocking deployment"
  exit 1
fi

# Validate existing S3 bucket before modifying
aws s3api get-bucket-policy --bucket "${BUCKET}" | jq '.Policy | fromjson' | \
  python3 scripts/cloud_posture_check.py - --check s3 \
  --severity-modifier regulated-data --json

Anti-Patterns

  1. Running IAM analysis without checking escalation combos — Individual high-risk actions in isolation may appear low-risk. The danger is in combinations: iam:PassRole alone is not critical, but iam:PassRole + lambda:CreateFunction is a confirmed privilege escalation path. Always analyze the full statement, not individual actions.
  2. Enabling only bucket-level public access block — AWS S3 has both account-level and bucket-level public access block settings. A bucket-level setting can override an account-level setting. Both must be configured. Account-level block alone is insufficient if any bucket has explicit overrides.
  3. Treating --severity-modifier internet-facing as optional for public resources — Internet-facing resources have significantly higher exposure than internal resources. High findings on internet-facing infrastructure should be treated as critical. Always apply --severity-modifier internet-facing for DMZ, load balancer, and API gateway configurations.
  4. Checking only administrator policies — Privilege escalation paths frequently originate from non-administrator policies that combine innocuous-looking permissions. All policies attached to production identities must be checked, not just policies with obvious elevated access.
  5. Remediating findings without root cause analysis — Removing a dangerous permission without understanding why it was granted will result in re-addition. Document the business justification for every high-risk permission before removing it, to prevent silent re-introduction.
  6. Ignoring service account over-permissioning — Service accounts are often over-provisioned during development and never trimmed for production. Every service account in production must be audited against AWS Access Analyzer or equivalent to identify and remove unused permissions.
  7. Not applying severity modifiers for regulated data workloads — A high finding in a general-purpose S3 bucket is different from the same finding in a bucket containing PHI or cardholder data. Always use --severity-modifier regulated-data when assessing resources in regulated data environments.

Cross-References

SkillRelationship
incident-responseCritical findings (public S3, privilege escalation confirmed active) may trigger incident classification
threat-detectionCloud posture findings create hunting targets — over-permissioned roles are likely lateral movement destinations
red-teamRed team exercises specifically test exploitability of cloud misconfigurations found in posture assessment
security-pen-testingCloud posture findings feed into the infrastructure security section of pen test assessments

Frequently asked questions

What to verify before installation and use

What does the cloud-security source document cover?

Cloud security posture assessment skill for detecting IAM privilege escalation, public storage exposure, network configuration risks, and infrastructure-as-code misconfigurations. This is NOT incident response for active cloud compromise (see incident-response) or application vu…

How do I install cloud-security?

The source record exposes this install command: npx skills add https://github.com/alirezarezvani/claude-skills --skill "engineering-team/skills/cloud-security". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 9465

brucesongs/kali-claw

cloud-security

Cloud security covers security assessment for major cloud platforms including AWS, Azure, and GCP, with core focus on IAM misconfiguration detection, storage bucket exposure scanning, metadata service attacks, container escape, and Kubernetes RBAC auditing.

Computed 10024,975

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 10015,246

wanshuiyin/Auto-claude-code-research-in-sleep

citation-audit

Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

Computed 10014,678

prowler-cloud/prowler

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance