AWS - EC2 Unauthenticated Enum

Supporta HackTricks

EC2 e Servizi Correlati

Controlla in questa pagina ulteriori informazioni su questo:

AWS - EC2, EBS, ELB, SSM, VPC & VPN Enum

Porte Pubbliche

È possibile esporre qualsiasi porta delle macchine virtuali a Internet. A seconda di cosa è in esecuzione nella porta esposta, un attaccante potrebbe abusarne.

SSRF

AMI Pubbliche e Snapshot EBS

AWS consente di dare accesso a chiunque per scaricare AMI e Snapshot. Puoi elencare queste risorse molto facilmente dal tuo stesso account:

# Public AMIs
aws ec2 describe-images --executable-users all

## Search AMI by ownerID
aws ec2 describe-images --executable-users all --query 'Images[?contains(ImageLocation, `967541184254/`) == `true`]'

## Search AMI by substr ("shared" in the example)
aws ec2 describe-images --executable-users all --query 'Images[?contains(ImageLocation, `shared`) == `true`]'

# Public EBS snapshots (hard-drive copies)
aws ec2 describe-snapshots --restorable-by-user-ids all
aws ec2 describe-snapshots --restorable-by-user-ids all | jq '.Snapshots[] | select(.OwnerId == "099720109477")'

Se trovi uno snapshot che può essere ripristinato da chiunque, assicurati di controllare AWS - EBS Snapshot Dump per le istruzioni su come scaricare e saccheggiare lo snapshot.

Modello di URL pubblico

# EC2
ec2-{ip-seperated}.compute-1.amazonaws.com
# ELB
http://{user_provided}-{random_id}.{region}.elb.amazonaws.com:80/443
https://{user_provided}-{random_id}.{region}.elb.amazonaws.com

Enumerare le istanze EC2 con IP pubblico

aws ec2 describe-instances --query "Reservations[].Instances[?PublicIpAddress!=null].PublicIpAddress" --output text
Supporta HackTricks

Last updated