1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# main.tf — NCD violations fixture
# Triggers all 9 NCD policy violations
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
provider "aws" {
region = "ap-south-1"
}
# NCD-001 + NCD-002 + NCD-003 — Unrestricted SSH, RDP, high-risk ports
resource "aws_security_group" "bad_sg" {
name = "bad-sg"
vpc_id = "vpc-12345678"
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 3389
to_port = 3389
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 3306
to_port = 3306
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
}
# NCD-004 — Default security group has rules
resource "aws_default_security_group" "bad_default_sg" {
vpc_id = "vpc-12345678"
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
# NCD-005 — NACL allows SSH from 0.0.0.0/0
resource "aws_network_acl_rule" "bad_nacl_ssh" {
network_acl_id = "acl-12345678"
rule_number = 100
egress = false
protocol = "tcp"
rule_action = "allow"
cidr_block = "0.0.0.0/0"
from_port = 22
to_port = 22
}
# NCD-005 — NACL allows RDP from 0.0.0.0/0
resource "aws_network_acl_rule" "bad_nacl_rdp" {
network_acl_id = "acl-12345678"
rule_number = 110
egress = false
protocol = "tcp"
rule_action = "allow"
cidr_block = "0.0.0.0/0"
from_port = 3389
to_port = 3389
}
# NCD-006 — No VPC endpoints declared (absence check, no resource needed)
# NCD-007 — HTTP listener with no HTTPS redirect
resource "aws_lb_listener" "bad_http" {
load_balancer_arn = "arn:aws:elasticloadbalancing:ap-south-1:123456789012:loadbalancer/app/bad-alb/1234567890"
port = 80
protocol = "HTTP"
default_action {
type = "fixed-response"
fixed_response {
content_type = "text/plain"
message_body = "OK"
status_code = "200"
}
}
}
# NCD-008 — CloudFront with HTTP allowed
resource "aws_cloudfront_distribution" "bad_cf" {
enabled = true
default_cache_behavior {
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
target_origin_id = "bad-origin"
viewer_protocol_policy = "allow-all"
forwarded_values {
query_string = false
cookies {
forward = "none"
}
}
}
viewer_certificate {
cloudfront_default_certificate = true
minimum_protocol_version = "TLSv1"
}
origin {
domain_name = "example.com"
origin_id = "bad-origin"
custom_origin_config {
http_port = 80
https_port = 443
origin_protocol_policy = "http-only"
origin_ssl_protocols = ["TLSv1.2"]
}
}
restrictions {
geo_restriction {
restriction_type = "none"
}
}
}
# NCD-009 — API Gateway with logging disabled
resource "aws_api_gateway_rest_api" "bad_api" {
name = "bad-api"
}
resource "aws_api_gateway_stage" "bad_stage" {
rest_api_id = aws_api_gateway_rest_api.bad_api.id
stage_name = "prod"
deployment_id = "d-12345678"
}
resource "aws_api_gateway_method_settings" "bad_settings" {
rest_api_id = aws_api_gateway_rest_api.bad_api.id
stage_name = aws_api_gateway_stage.bad_stage.stage_name
method_path = "*/*"
settings {
logging_level = "OFF"
}
}
|