Restrict EC2 RDP Access
ID: ec2-unrestricted-rdp
Severity: high
Author: princechaddha
Tags: cloud,devops,aws,amazon,ec2,aws-cloud-config
Description
Section titled “Description”Check Amazon EC2 security groups for inbound rules that allow unrestricted RDP access and restrict access to trusted IPs.
YAML Source
Section titled “YAML Source”id: ec2-unrestricted-rdpinfo: name: Restrict EC2 RDP Access author: princechaddha severity: high description: | Check Amazon EC2 security groups for inbound rules that allow unrestricted RDP access and restrict access to trusted IPs. impact: | Unrestricted RDP access increases the risk of unauthorized access and potential breaches. remediation: | Modify the EC2 security group rules to limit RDP access (TCP 3389) to known, trusted IP addresses or ranges. reference: - https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/authorizing-access-to-an-instance.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=3389 Name=ip-permission.to-port,Values=3389 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 3389"'# digest: 4a0a00473045022100f22a08d9a7d111723906569b284c8695329fabcceab2180658c1a259e7bd07e10220759466bf48b3e77ef1a7364acbcba133e36f201961bacf875abafbc0c9279f73: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-rdp.yaml"