mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-11 21:23:34 +08:00
37 lines
1.5 KiB
YAML
37 lines
1.5 KiB
YAML
id: ec2-unrestricted-redis
|
|
info:
|
|
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: true
|
|
code:
|
|
- 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:922c64590222798bb761d5b6d8e72950 |