Kloudle
academy

How to update a user owned public EBS Snapshot to private using AWS CLI

Pragti Chauhan
#aws#cloudsecurity#ebs#ebssnapshot#awscli
Feature image

Introduction

AWS allows the creation of snapshots of EBS volumes. These snapshots can then be used to create / restore volumes and attach to an instance. These snapshots have permissions on them which can make them either public or private. A publicly available snapshot is accessible to any AWS user. Hence one should make sure that a snapshot that is not intended to be publicly accessible is made private.

If a snapshot is public, an attacker with an AWS account can create a new volume out of the exposed snapshot and mount it to an attacker controlled EC2 instance which can then be used to access all data within the snapshot.

Based on the data within the snapshot, an attacker can target other machines, leak sensitive information to the Internet or cause damage to reputation by exposing this misconfiguration as a public finding.

In this article, we will see how to update the permissions of a user owned EBS snapshot from public to private using AWS CLI.

Update EBS snapshot permissions

Following are the steps to update permissions for a user owned public EBS snapshot to private vis AWS CLI:

  1. List the EBS snapshots by running the following command

    aws ec2 describe-snapshots --owner-ids self  --query 'Snapshots[]' --region <region>

    List EBS snapshots

  2. Modify the snapshot to update the permissions from public to private

    aws ec2 modify-snapshot-attribute --region <region> --snapshot-id <snapshot id> --attribute createVolumePermission --operation-type remove --group-names all

    Modify snapshot permissions

← Back to Academy