Δημόσια προσβάσιμο Security Group ή Load Balancer για τις υπηρεσίες ECS
Ένα λανθασμένα διαμορφωμένο security group που επιτρέπει εισερχόμενη κίνηση από το διαδίκτυο (0.0.0.0/0 ή ::/0) στις υπηρεσίες Amazon ECS μπορεί να εκθέσει τους πόρους του AWS σε επιθέσεις.
# Example of detecting misconfigured security group for ECS servicesaws ec2 describe-security-groups --query 'SecurityGroups[?IpPermissions[?contains(IpRanges[].CidrIp, `0.0.0.0/0`) || contains(Ipv6Ranges[].CidrIpv6, `::/0`)]]'
# Example of detecting a publicly accessible load balancer for ECS servicesawselbv2describe-load-balancers--query'LoadBalancers[?Scheme == `internet-facing`]'