Cloud

Cloud Security Fundamentals

The mental models that prevent the majority of real cloud breaches.

Difficulty Easy
Total points30
Your progress0/0
Log in or create a free account to submit flags and earn points.
1

Who Secures What

Shared responsibility

The provider secures the cloud (hardware, virtualisation, and the physical data centres). You secure what you put in it — data, identity, configuration, and the OS on your VMs.

The cloud shared responsibility model
The cloud shared responsibility model

Most breaches are customer-side: a public bucket or an over-permissive role.

$ aws s3api get-bucket-acl --bucket my-bucket   # is it public?

Two habits prevent most incidents: least privilege and no public by default.

Tip In the shared model, the provider secures the physical data centre.

Flag: ASEC{no_public_by_default}

In the shared responsibility model, who secures the physical data centre?

+10 pts
$

Need a hint? Not the customer.

What is the flag for this task?

+10 pts
$

Need a hint? Read the last line.
2

IAM Is the New Perimeter

Identity runs everything

There is no network edge to hide behind in the cloud — identity decides what can talk to what. Scoped roles, short-lived credentials, MFA, and no long-lived keys in code remove most attack paths.

$ aws sts get-caller-identity      # who am I / which role am I using?

A leaked access key with broad permissions is one of the most common ways cloud accounts fall.

Tip The real security perimeter in the cloud is identity.

What has become the real security perimeter in the cloud? (one word)

+10 pts
$

Need a hint? Think IAM.
3

Job-Ready Notes

Job-Ready Notes

Tools to know: ScoutSuite, Prowler, Pacu, the aws CLI, kube-bench.
Cheat sheet

aws sts get-caller-identity      # who am I / which role?
prowler aws                      # audit an AWS account

Interview practice

  • Explain the shared responsibility model.
  • Why is identity (IAM) called the new perimeter?
  • Describe the SSRF-to-cloud-metadata attack.

Reviews

No written reviews yet. Be the first once you have played the room.