# AWS Misconfiguration

> Detects common AWS security misconfigurations including public S3 buckets, IAM wildcard policies, hardcoded AWS credentials, and unencrypted resources.

- Skill: `zakirkun/aws-misconfiguration` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add zakirkun/aws-misconfiguration`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zakirkun/aws-misconfiguration/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: zakirkun (https://skillmd.com/u/zakirkun)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zakirkun/aws-misconfiguration

---


# AWS Misconfiguration

## Overview
AWS misconfigurations are responsible for major data breaches. Common issues:
1. **Public S3 buckets**: Accidental public-read or public-write ACL
2. **IAM wildcard policies**: `Action: "*"` grants all permissions
3. **Hardcoded AWS credentials**: Access keys in source code
4. **Unencrypted RDS/S3**: Data at rest not encrypted
5. **Overly permissive security groups**: Port 22 or 3306 open to `0.0.0.0/0`
6. **CloudTrail disabled**: No audit trail

## Remediation
- Enable S3 Block Public Access at the account level
- Apply principle of least privilege to all IAM policies
- Use IAM roles instead of hardcoded credentials
- Enable encryption at rest for all services
- Use VPC security groups with minimal required access

