Unrestricted Redis Access
ID: ec2-unrestricted-redis
Severity: critical
Author: princechaddha
Tags: cloud,devops,aws,amazon,ec2,aws-cloud-config
Description
Section titled “Description”Checks for inbound rules in Amazon EC2 security groups that allow unrestricted access to Redis cache server instances on TCP port 6379.
YAML Source
Section titled “YAML Source”id: ec2-unrestricted-redisinfo: name: Unrestricted Redis Access author: princechaddha severity: critical description: | Checks for inbound rules in Amazon EC2 security groups that allow unrestricted access to Redis cache server instances on TCP port 6379. impact: | Unrestricted access can expose Redis instances to unauthorized access and potential security breaches. remediation: | Restrict inbound access to Redis instances by updating EC2 security group rules to allow only specific, trusted IP addresses. reference: - https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-security-groups.html tags: cloud,devops,aws,amazon,ec2,aws-cloud-config
variables: region: "us-east-1"
self-contained: truecode: - engine: - sh - bash source: | aws ec2 describe-security-groups --region $region --filters Name=ip-permission.from-port,Values=6379 Name=ip-permission.to-port,Values=6379 Name=ip-permission.cidr,Values='0.0.0.0/0' --output json --query 'SecurityGroups[*].GroupId'
extractors: - type: json name: securitygroup internal: true json: - '.[]'
- type: dsl dsl: - 'securitygroup + " security group(s) alows unrestricted access (0.0.0.0/0 or ::/0) on TCP port 6379"'# digest: 490a0046304402201cd866b6dcd97bfabdc89cde93f55c418beb68d4941885b1f237bb07e35a52f002205c1e678bd882e45183616a7e046b167944dd8844fdab58273723ff27e8f8d364:922c64590222798bb761d5b6d8e72950Guide to check the vulnerabilities
Section titled “Guide to check the vulnerabilities”This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.
$ nuclei -u "URL" -t "cloud/aws/ec2/ec2-unrestricted-redis.yaml"