惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
量子位
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
博客园 - 聂微东
博客园_首页
D
Docker
博客园 - 叶小钗
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
腾讯CDC
罗磊的独立博客
雷峰网
雷峰网
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AWS Security Checklist: 58 Checks Every Team Should Run B...
Hamza Imran · 2026-04-23 · via DEV Community

Hamza Imran

I Got Tired of $10k AWS Security Audits — So I Built My Own

A few months ago I was helping a startup prepare for SOC 2. Their security consultant quoted $15,000 for an AWS security audit — two weeks timeline and a PDF report at the end.
I looked at what they were actually checking — IAM configs, open security groups, unencrypted S3 buckets, CloudTrail logging. Standard stuff that any engineer could verify. Nothing that justified $15,000 and two weeks.
So I spent a few weekends building it myself. The result is DevForge Audit — 58 automated security checks across your entire AWS account, a full PDF report with severity scores and fix recommendations, done in 5 minutes. Free to try.

What It Checks
Here are all 58 checks it runs automatically across your AWS account:
IAM

Root account MFA enabled
Password policy strength
Users without MFA
Access key rotation (90 days)
Inactive users with active credentials
AdministratorAccess directly attached
Wildcard trust principals

S3

Public access blocks
Encryption at rest
Versioning enabled
Access logging

EC2 / VPC

SSH/RDP open to the internet
All-traffic security groups
EBS encryption
Unused Elastic IPs
VPC Flow Logs enabled

RDS

Encryption at rest
Public accessibility
Multi-AZ enabled
Automated backups
Deletion protection
Secrets Manager rotation

CloudTrail

Multi-region trail
KMS encryption
Log file validation
CloudWatch integration

CloudWatch / SNS

Billing alarm configured
Root account usage alarm
Unauthorized API calls alarm
SNS subscriptions confirmed

Secrets Manager

Rotation enabled
Not rotated in 90+ days
Plaintext credentials in SSM Parameter Store
Unused secrets

ECS / EKS

Privileged containers
Plaintext secrets in environment variables
Public IP on tasks
EKS public API endpoint
Kubernetes version up to date

GuardDuty

Enabled in all regions
S3 and EKS protection enabled
Active critical findings

Every finding maps to a SOC 2 Trust Service Criteria so you know exactly what to fix before your audit.

How It Works
No credentials needed. You deploy a read-only IAM role in your account via CloudFormation — takes 30 seconds. Paste the Role ARN, enter your email, and hit run.
Lambda assumes the role, runs all 58 checks, and generates a PDF report with severity scores and fix recommendations. Done in 5 minutes.
Temporary credentials expire after 15 minutes. Delete the CloudFormation stack anytime to revoke access permanently.

Why I Built It This Way
A few things were non-negotiable for me:

Read-only access only — uses sts:AssumeRole with ExternalId, SecurityAudit and ReadOnlyAccess managed policies, zero write permissions
No credential storage — temporary STS credentials expire after 15 minutes
No account needed — paste an ARN, get a report, done
SOC 2 mapped — every finding tied to a specific Trust Service Criteria so it's actually useful for compliance prep

What's Next

More checks — Lambda functions, WAF, AWS Organizations
Continuous monitoring mode — weekly automated audits with score tracking over time
Dashboard to track your score over time

Try It
👉 DevForge — free, takes 5 minutes.
Would love feedback from the community — especially if you spot any checks I'm missing or have dealt with SOC 2 compliance yourself. Drop it in the comments.