[RQL] How to construct a query to investigate on all AWS Security Groups that has outbound to 0.0.0.0

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Please sign in to see details of an important advisory in our Customer Advisories area.

[RQL] How to construct a query to investigate on all AWS Security Groups that has outbound to 0.0.0.0

L0 Member

Reference: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-security-groups.html

 

RQL that is not working: config from cloud.resource where cloud.type = 'aws' AND api.name = 'describe-security-groups' AND json.rule = "IpPermissionsEgress[IpRanges[?any (CidrIp equals 0.0.0.0/0)]]" 

 

Does not seems to be right. Need RQL expert here! Thanks

2 REPLIES 2

L0 Member

Somehow figure out something like this and so far no error.

 

config from cloud.resource where api.name = 'aws-ec2-describe-security-groups' and json.rule = (($.ipPermissions[?(@.ipProtocol==-1)].ipRanges[*] contains 0.0.0.0/0 or $.ipPermissions[?(@.ipProtocol==-1)].ipv6Ranges[*].cidrIpv6 contains ::/0))

 

That works.  Or a more simplified version of the query to only look for ipv4 outbound to 0.0.0.0/0 could be:

config from cloud.resource where cloud.type = 'aws' AND api.name = 'aws-ec2-describe-security-groups' AND json.rule = '((ipPermissionsEgress[*] equals 0.0.0.0/0))'

  • 515 Views
  • 2 replies
  • 0 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

Click Accept as Solution to acknowledge that the answer to your question has been provided.

The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!

These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!

The LIVEcommunity thanks you for your participation!