# AWS - EC2 Enum Non Autenticato {{#include ../../../banners/hacktricks-training.md}} ## EC2 e Servizi Correlati Controlla in questa pagina ulteriori informazioni su questo: {{#ref}} ../aws-services/aws-ec2-ebs-elb-ssm-vpc-and-vpn-enum/ {{#endref}} ### 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 {{#ref}} https://book.hacktricks.wiki/en/pentesting-web/ssrf-server-side-request-forgery/cloud-ssrf.html {{#endref}} ### 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 account: ```bash # 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](https://cloud.hacktricks.wiki/en/pentesting-cloud/aws-security/aws-post-exploitation/aws-ec2-ebs-ssm-and-vpc-post-exploitation/index.html#ebs-snapshot-dump) per le istruzioni su come scaricare e saccheggiare lo snapshot. #### Modello di URL pubblico ```bash # 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 ```bash aws ec2 describe-instances --query "Reservations[].Instances[?PublicIpAddress!=null].PublicIpAddress" --output text ``` {{#include ../../../banners/hacktricks-training.md}}