AWS IAM Policy Linter
Paste an AWS IAM policy JSON document to validate its structure and surface common security red flags — Allow "*" on Action and Resource, public Principals, conflicting Action/NotAction, missing Version, and malformed service:Operation names.
Ringkasan alat
Alat ini menerima input terstruktur dan menghasilkan output deterministik di browser, tanpa upload server.
- Nama alat
- AWS IAM Policy Linter
- Maksud input
- Berikan konten sumber untuk diubah, divalidasi, atau dianalisis.
- Maksud output
- Terima output ternormalisasi yang siap disalin, dipakai ulang, atau di-debug.
- Contoh input
- {"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":"*","Resource":"*"}]}
- Contoh output
- Error: Allow "*" on Action and Resource grants full administrator access — nearly always too broad.
Local processing / privacy notice
- Inputs are processed in your browser session.
- We do not send raw input/output values to our analytics endpoint.
- Use reset/clear actions when working with confidential data.
No issues found. The policy is syntactically well-formed and free of common wildcard red flags.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ReadBucket",
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::my-bucket",
"arn:aws:s3:::my-bucket/*"
]
}
]
}Pengantar alat
Paste an AWS IAM policy JSON document to validate its structure and surface common security red flags — Allow "*" on Action and Resource, public Principals, conflicting Action/NotAction, missing Version, and malformed service:Operation names.
Gambaran alat
IAM policies are famous for failing silently: they parse fine, attach cleanly, and still grant everything in the account. This linter focuses on the misconfigurations that show up in real security reviews: full-wildcard Allow statements, public-Principal policies with no Condition, missing or outdated Version, and Resource values that do not look like ARNs. It does not resolve policy evaluation (no simulation across identity, resource, SCP, and session policies) — treat it as a fast first-pass editor check, not a replacement for IAM Access Analyzer.
Kasus penggunaan
- Catch an accidental Action "*" / Resource "*" before you attach the policy
- Flag publicly accessible S3 bucket policies before deploying
- Enforce Version "2012-10-17" across all new policies
- Spot typos in service:Operation strings during code review
Contoh input/output
{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":"*","Resource":"*"}]}Error: Allow "*" on Action and Resource grants full administrator access — nearly always too broad.
{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Principal":"*","Action":"s3:GetObject","Resource":"arn:aws:s3:::b/*"}]}Error: Principal "*" with Effect Allow and no Condition exposes the resource publicly.
Pertanyaan umum
Is this a replacement for IAM Access Analyzer?+
Does it check for deprecated actions or typos?+
Does my policy leave the browser?+
Jelajahi alat lainnya
Temukan utilitas terkait di kategori Cloud di bawah.
Alat terkait
Utilitas pilihan yang mungkin Anda anggap berguna