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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
D
DataBreaches.Net
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
腾讯CDC
博客园_首页
The Cloudflare Blog
S
SegmentFault 最新的问题
C
Check Point Blog
美团技术团队
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale

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
Day 9 — AWS S3
Rahul Joshi · 2026-05-20 · via DEV Community

Modern cloud applications store massive amounts of data.

From:

  • website images
  • backups
  • logs
  • videos
  • static frontend files
  • financial reports

everything needs scalable storage.

That’s where Amazon S3 comes in.

And honestly?

If you’re learning Cloud, DevOps, or Security Engineering, then understanding S3 buckets and bucket policies is absolutely mandatory.

Because most real-world cloud breaches happen due to:

  • publicly exposed buckets
  • weak bucket permissions
  • misconfigured policies
  • accidentally leaked sensitive files

In this blog, we’ll deeply understand:

  • What S3 buckets are
  • Bucket policies
  • Static website hosting
  • Public access risks
  • Real-world security mistakes
  • Best practices used in enterprises

🔗 Resources


🪣 What is an S3 Bucket?

s3 dashboard

An S3 bucket is basically a container used to store files in AWS.

Think of it like:

Google Drive Folder → But infinitely scalable

Enter fullscreen mode Exit fullscreen mode

Inside buckets, you can store:

  • Images
  • Videos
  • Backups
  • Application logs
  • PDFs
  • Website files
  • Terraform states
  • Kubernetes backups

AWS S3 is designed for:

  • high durability
  • massive scalability
  • global availability

AWS claims:

S3 provides 99.999999999% durability.

That’s 11 nines.


🏗️ S3 Architecture

s3 architecture


📦 Creating Your First Bucket

When creating a bucket, AWS asks for:

  • Bucket name
  • Region
  • Object ownership
  • Public access settings
  • Versioning
  • Encryption

Example bucket names:

s3 bucket

⚠️ Bucket names must be globally unique.


🌍 S3 Bucket Use Cases

Common Enterprise Use Cases

Use Case Example
Static website hosting React frontend
Backup storage DB backups
Log storage CloudTrail logs
Data lake Analytics
Disaster recovery Encrypted snapshots
Media storage Images/videos

🔐 Understanding Bucket Policies

s3 images

User Request → Policy Evaluation → Allow / Deny

Enter fullscreen mode Exit fullscreen mode

Bucket policies control:

Who can access your bucket and what they can do.

These are JSON-based IAM policies attached directly to the bucket.

Example permissions:

  • Read objects
  • Upload files
  • Delete files
  • Public access
  • Restrict access by IP
  • Enforce HTTPS

🧠 Example Bucket Policy

s3 bucket policy

This policy means:

Anyone on the internet can read files from this bucket.

Enter fullscreen mode Exit fullscreen mode

Perfect for:

  • public websites
  • images
  • CSS/JS files

Dangerous for:

  • financial documents
  • backups
  • secrets

🚨 Public Access Risks (Most Important Section)

This is where most beginners make mistakes.

Thousands of companies have leaked sensitive data because:

  • S3 buckets became public
  • developers disabled block public access
  • bucket policies were misconfigured

Real leaked data examples:

  • customer records
  • bank documents
  • API keys
  • employee data
  • application backups

⚠️ Common S3 Misconfigurations

1️⃣ Public Buckets

Everyone on the internet can access files.

Enter fullscreen mode Exit fullscreen mode


2️⃣ No Encryption

Sensitive files stored without:

  • SSE-S3
  • SSE-KMS

3️⃣ Weak IAM Permissions

Example:

s3:*

Enter fullscreen mode Exit fullscreen mode

for all users.

Very dangerous.


4️⃣ No Logging Enabled

Without logging:

  • no audit trail
  • difficult incident response

5️⃣ Exposed Terraform State Files

Many DevOps teams accidentally expose:

terraform.tfstate

Enter fullscreen mode Exit fullscreen mode

which may contain:

  • secrets
  • passwords
  • infrastructure details

🌐 Static Website Hosting Using S3

One of the coolest features of S3:

You can host static websites directly from a bucket.

Perfect for:

  • portfolio websites
  • React apps
  • documentation
  • landing pages

⚙️ How Static Website Hosting Works

s3 website hosting flow


🛠️ Steps to Enable Static Website Hosting

Step 1 — Create Bucket

Example:

30-days-cloud-devsecops-journey-day9-s3

Enter fullscreen mode Exit fullscreen mode


Step 2 — Upload Files

Upload:

  • index.html
  • error.html

Step 3 — Enable Static Website Hosting

Go to:

Properties → Static Website Hosting

Enter fullscreen mode Exit fullscreen mode

Enable it.

Specify:

Index document → index.html

Enter fullscreen mode Exit fullscreen mode


Step 4 — Add Bucket Policy

Allow public read access.


Step 5 — Access Website URL

AWS generates:

http://30-days-cloud-devsecops-journey-day9-s3.s3-website-region.amazonaws.com

Enter fullscreen mode Exit fullscreen mode


🎨 Website Hosting Screenshots

1. Uploading Files For Website hosting

Website hosting

2. Url Of Static Website

Website second hosting

3. Output of Hosted Website

s3 static hosting


🔒 Best Practices for Secure Buckets

✅ Enable Block Public Access

Unless explicitly needed.


✅ Use Least Privilege IAM

Never use:

s3:*

Enter fullscreen mode Exit fullscreen mode

for everyone.


✅ Enable Encryption

Recommended:

  • SSE-S3
  • SSE-KMS

✅ Enable Versioning

Helps recover deleted files.


✅ Enable Logging

Use:

  • CloudTrail
  • S3 Access Logs

✅ Use Lifecycle Policies

Automatically:

  • archive old files
  • delete unnecessary objects

🏦 Fintech Security Perspective

In fintech environments, S3 often stores:

  • transaction logs
  • KYC documents
  • audit reports
  • backups
  • customer statements

That means:

a single public bucket can become a massive compliance violation.

This can break:

  • PCI-DSS
  • SOC2
  • ISO 27001
  • RBI compliance

That’s why enterprises:

  • heavily audit S3 permissions
  • use automated compliance scanning
  • continuously monitor bucket exposure

🔍 Tools Used to Audit S3 Security

Popular Tools

Tool Purpose
AWS Config Compliance monitoring
Security Hub Security findings
CloudTrail Audit logging
ScoutSuite Cloud auditing
Prowler AWS security assessment

☁️ Real Industry Practice

Most mature companies follow:

Private by default
Public only when necessary

Enter fullscreen mode Exit fullscreen mode

This is the golden rule of cloud storage security.


🎯 Final Thoughts

S3 looks simple initially.

But in real enterprise environments:

  • permissions
  • policies
  • encryption
  • compliance
  • auditing

become extremely important.

A single misconfigured bucket can expose:

  • millions of records
  • customer identities
  • internal infrastructure data

That’s why:

understanding S3 security is one of the most important cloud skills.