Storage
Last updated
Last updated
AWS Supports:
− S3 (Simple Storage Service, object storage)
− EBS (Elastic Block Storage, disk storage)
− EFS (Elastic File Storage, shares similar to NFS)
− High-Performance Storage (A NetApp "Filer" SAN with iSCSI Support)
Tools to enumerate S3 buckets include:
− Gobuster: Use the S3 API to validate whether buckets exist or not, will attempt to list files of open buckets.
− CloudStorageFinder: Toolset by DigiNinja that can scan for S3, DigitalOcean Spaces, and GCP Buckets.
s3://[a-zA-Z0-9.-]+
→ Matches URLs like s3://my-bucket-name
([a-zA-Z0-9.-]+)\.s3[a-zA-Z0-9.-]*\.amazonaws\.com
→ Matches my-bucket.s3.amazonaws.com
arn:aws:s3:::[a-zA-Z0-9.-]+
→ Matches AWS ARNs like arn:aws:s3:::my-bucket-name
Names are then stripped of surrounding fluff