@mitre/hdf-converters 2.5.0 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/data/aws-config-mapping.json +638 -0
- package/lib/data/cci-nist-mapping.json +3553 -0
- package/lib/data/converters/csv2json.d.ts +1 -0
- package/lib/data/converters/csv2json.js +36 -0
- package/lib/data/converters/csv2json.js.map +1 -0
- package/lib/data/converters/csv2json.ts +36 -0
- package/lib/data/converters/xml2json.d.ts +14 -0
- package/lib/data/converters/xml2json.js +42 -0
- package/lib/data/converters/xml2json.js.map +1 -0
- package/lib/data/converters/xml2json.ts +57 -0
- package/lib/data/cwe-nist-mapping.json +1416 -0
- package/lib/data/nessus-plugins-nist-mapping.json +644 -0
- package/lib/data/nikto-nist-mapping.json +53648 -0
- package/lib/data/owasp-nist-mapping.json +72 -0
- package/lib/data/scoutsuite-nist-mapping.json +558 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/lib/package.json +18 -9
- package/lib/src/asff-mapper.d.ts +15 -0
- package/lib/src/asff-mapper.js +508 -0
- package/lib/src/asff-mapper.js.map +1 -0
- package/lib/src/base-converter.d.ts +3 -7
- package/lib/src/base-converter.js +27 -9
- package/lib/src/base-converter.js.map +1 -1
- package/lib/src/burpsuite-mapper.js +6 -8
- package/lib/src/burpsuite-mapper.js.map +1 -1
- package/lib/src/converters-from-hdf/asff/asff-types.d.ts +88 -0
- package/lib/src/converters-from-hdf/asff/asff-types.js +3 -0
- package/lib/src/converters-from-hdf/asff/asff-types.js.map +1 -0
- package/lib/src/converters-from-hdf/asff/reverse-asff-mapper.d.ts +31 -0
- package/lib/src/converters-from-hdf/asff/reverse-asff-mapper.js +132 -0
- package/lib/src/converters-from-hdf/asff/reverse-asff-mapper.js.map +1 -0
- package/lib/src/converters-from-hdf/asff/transformers.d.ts +44 -0
- package/lib/src/converters-from-hdf/asff/transformers.js +397 -0
- package/lib/src/converters-from-hdf/asff/transformers.js.map +1 -0
- package/lib/src/converters-from-hdf/reverse-base-converter.d.ts +24 -0
- package/lib/src/converters-from-hdf/reverse-base-converter.js +111 -0
- package/lib/src/converters-from-hdf/reverse-base-converter.js.map +1 -0
- package/lib/src/dbprotect-mapper.js +1 -1
- package/lib/src/dbprotect-mapper.js.map +1 -1
- package/lib/src/jfrog-xray-mapper.js +3 -5
- package/lib/src/jfrog-xray-mapper.js.map +1 -1
- package/lib/src/mappings/AwsConfigMapping.d.ts +6 -0
- package/lib/src/mappings/AwsConfigMapping.js +39 -0
- package/lib/src/mappings/AwsConfigMapping.js.map +1 -0
- package/lib/src/mappings/AwsConfigMappingItem.d.ts +7 -0
- package/lib/src/mappings/AwsConfigMappingItem.js +28 -0
- package/lib/src/mappings/AwsConfigMappingItem.js.map +1 -0
- package/lib/src/mappings/CciNistMapping.d.ts +1 -1
- package/lib/src/mappings/CciNistMapping.js +5 -24
- package/lib/src/mappings/CciNistMapping.js.map +1 -1
- package/lib/src/mappings/CweNistMapping.d.ts +8 -1
- package/lib/src/mappings/CweNistMapping.js +4 -27
- package/lib/src/mappings/CweNistMapping.js.map +1 -1
- package/lib/src/mappings/CweNistMappingItem.d.ts +2 -1
- package/lib/src/mappings/CweNistMappingItem.js +9 -9
- package/lib/src/mappings/CweNistMappingItem.js.map +1 -1
- package/lib/src/mappings/NessusPluginsNistMapping.d.ts +7 -1
- package/lib/src/mappings/NessusPluginsNistMapping.js +4 -8
- package/lib/src/mappings/NessusPluginsNistMapping.js.map +1 -1
- package/lib/src/mappings/NessusPluginsNistMappingItem.d.ts +2 -1
- package/lib/src/mappings/NessusPluginsNistMappingItem.js +16 -6
- package/lib/src/mappings/NessusPluginsNistMappingItem.js.map +1 -1
- package/lib/src/mappings/NiktoNistMapping.d.ts +7 -1
- package/lib/src/mappings/NiktoNistMapping.js +4 -8
- package/lib/src/mappings/NiktoNistMapping.js.map +1 -1
- package/lib/src/mappings/NiktoNistMappingItem.d.ts +2 -1
- package/lib/src/mappings/NiktoNistMappingItem.js +7 -7
- package/lib/src/mappings/NiktoNistMappingItem.js.map +1 -1
- package/lib/src/mappings/OwaspNistMapping.d.ts +8 -1
- package/lib/src/mappings/OwaspNistMapping.js +4 -8
- package/lib/src/mappings/OwaspNistMapping.js.map +1 -1
- package/lib/src/mappings/OwaspNistMappingItem.d.ts +2 -1
- package/lib/src/mappings/OwaspNistMappingItem.js +9 -9
- package/lib/src/mappings/OwaspNistMappingItem.js.map +1 -1
- package/lib/src/mappings/ScoutsuiteNistMapping.d.ts +5 -1
- package/lib/src/mappings/ScoutsuiteNistMapping.js +4 -10
- package/lib/src/mappings/ScoutsuiteNistMapping.js.map +1 -1
- package/lib/src/mappings/ScoutsuiteNistMappingItem.d.ts +2 -1
- package/lib/src/mappings/ScoutsuiteNistMappingItem.js +4 -4
- package/lib/src/mappings/ScoutsuiteNistMappingItem.js.map +1 -1
- package/lib/src/nessus-mapper.js +9 -12
- package/lib/src/nessus-mapper.js.map +1 -1
- package/lib/src/netsparker-mapper.js +4 -7
- package/lib/src/netsparker-mapper.js.map +1 -1
- package/lib/src/nikto-mapper.js +1 -3
- package/lib/src/nikto-mapper.js.map +1 -1
- package/lib/src/sarif-mapper.js +1 -3
- package/lib/src/sarif-mapper.js.map +1 -1
- package/lib/src/scoutsuite-mapper.js +2 -4
- package/lib/src/scoutsuite-mapper.js.map +1 -1
- package/lib/src/snyk-mapper.js +2 -7
- package/lib/src/snyk-mapper.js.map +1 -1
- package/lib/src/sonarqube-mapper.d.ts +54 -0
- package/lib/src/sonarqube-mapper.js +196 -0
- package/lib/src/sonarqube-mapper.js.map +1 -0
- package/lib/src/xccdf-results-mapper.js +4 -6
- package/lib/src/xccdf-results-mapper.js.map +1 -1
- package/lib/src/zap-mapper.d.ts +1 -1
- package/lib/src/zap-mapper.js +8 -5
- package/lib/src/zap-mapper.js.map +1 -1
- package/package.json +18 -9
- package/lib/data/U_CCI_List.xml +0 -38403
- package/lib/data/aws-config-mapping.csv +0 -107
- package/lib/data/cwe-nist-mapping.csv +0 -203
- package/lib/data/nessus-plugins-nist-mapping.csv +0 -108
- package/lib/data/nikto-nist-mapping.csv +0 -8942
- package/lib/data/owasp-nist-mapping.csv +0 -11
- package/lib/data/scoutsuite-nist-mapping.csv +0 -140
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"OWASP-ID": "A1",
|
|
4
|
+
"OWASP Name": "Injection",
|
|
5
|
+
"NIST-ID": "SI-10",
|
|
6
|
+
"Rev": 4,
|
|
7
|
+
"NIST Name": "Information Input Validation"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"OWASP-ID": "A2",
|
|
11
|
+
"OWASP Name": "Broken Authentication",
|
|
12
|
+
"NIST-ID": "SC-23",
|
|
13
|
+
"Rev": 4,
|
|
14
|
+
"NIST Name": "Session Authenticity"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"OWASP-ID": "A3",
|
|
18
|
+
"OWASP Name": "Sensitive Data Exposure",
|
|
19
|
+
"NIST-ID": "SI-11",
|
|
20
|
+
"Rev": 4,
|
|
21
|
+
"NIST Name": "Error Handling"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"OWASP-ID": "A4",
|
|
25
|
+
"OWASP Name": "XML External Entities (XXE)",
|
|
26
|
+
"NIST-ID": "SI-10",
|
|
27
|
+
"Rev": 4,
|
|
28
|
+
"NIST Name": "Information Input Validation"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"OWASP-ID": "A5",
|
|
32
|
+
"OWASP Name": "Broken Access Control",
|
|
33
|
+
"NIST-ID": "AC-3",
|
|
34
|
+
"Rev": 4,
|
|
35
|
+
"NIST Name": "Access Enforcement"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"OWASP-ID": "A6",
|
|
39
|
+
"OWASP Name": "Security Misconfiguration",
|
|
40
|
+
"NIST-ID": "CM-6",
|
|
41
|
+
"Rev": 4,
|
|
42
|
+
"NIST Name": "Configuration Settings"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"OWASP-ID": "A7",
|
|
46
|
+
"OWASP Name": "Cross-Site Scripting (XSS)",
|
|
47
|
+
"NIST-ID": "SI-10",
|
|
48
|
+
"Rev": 4,
|
|
49
|
+
"NIST Name": "Information Input Validation"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"OWASP-ID": "A8",
|
|
53
|
+
"OWASP Name": "Insecure Deserialization",
|
|
54
|
+
"NIST-ID": "SC-23",
|
|
55
|
+
"Rev": 4,
|
|
56
|
+
"NIST Name": "Session Authenticity"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"OWASP-ID": "A9",
|
|
60
|
+
"OWASP Name": "Using Components with Known Vulnerabilities",
|
|
61
|
+
"NIST-ID": "SI-2",
|
|
62
|
+
"Rev": 4,
|
|
63
|
+
"NIST Name": "Flaw Remediation"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"OWASP-ID": "A10",
|
|
67
|
+
"OWASP Name": "Insufficient Logging&Monitoring",
|
|
68
|
+
"NIST-ID": "AU-12",
|
|
69
|
+
"Rev": 4,
|
|
70
|
+
"NIST Name": "Audit Generation"
|
|
71
|
+
}
|
|
72
|
+
]
|
|
@@ -0,0 +1,558 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"RULE": "acm-certificate-with-close-expiration-date",
|
|
4
|
+
"NIST-ID": "SC-12"
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"RULE": "acm-certificate-with-transparency-logging-disabled",
|
|
8
|
+
"NIST-ID": "SC-12"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"RULE": "cloudformation-stack-with-role",
|
|
12
|
+
"NIST-ID": "AC-6"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"RULE": "cloudtrail-duplicated-global-services-logging",
|
|
16
|
+
"NIST-ID": "AU-6"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"RULE": "cloudtrail-no-cloudwatch-integration",
|
|
20
|
+
"NIST-ID": "AU-12|SI-4(2)"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"RULE": "cloudtrail-no-data-logging",
|
|
24
|
+
"NIST-ID": "AU-12"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"RULE": "cloudtrail-no-encryption-with-kms",
|
|
28
|
+
"NIST-ID": "AU-6"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"RULE": "cloudtrail-no-global-services-logging",
|
|
32
|
+
"NIST-ID": "AU-12"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"RULE": "cloudtrail-no-log-file-validation",
|
|
36
|
+
"NIST-ID": "AU-6"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"RULE": "cloudtrail-no-logging",
|
|
40
|
+
"NIST-ID": "AU-12"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"RULE": "cloudtrail-not-configured",
|
|
44
|
+
"NIST-ID": "AU-12"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"RULE": "cloudwatch-alarm-without-actions",
|
|
48
|
+
"NIST-ID": "AU-12"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"RULE": "config-recorder-not-configured",
|
|
52
|
+
"NIST-ID": "CM-8|CM-8(2)|CM-8(6)"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"RULE": "ec2-ami-public",
|
|
56
|
+
"NIST-ID": "AC-3"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"RULE": "ec2-default-security-group-in-use",
|
|
60
|
+
"NIST-ID": "AC-3(3)"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"RULE": "ec2-default-security-group-with-RULEs",
|
|
64
|
+
"NIST-ID": "AC-3(3)"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"RULE": "ec2-ebs-snapshot-not-encrypted",
|
|
68
|
+
"NIST-ID": "SC-28"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"RULE": "ec2-ebs-snapshot-public",
|
|
72
|
+
"NIST-ID": "AC-3"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"RULE": "ec2-ebs-volume-not-encrypted",
|
|
76
|
+
"NIST-ID": "SC-28"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"RULE": "ec2-instance-in-security-group",
|
|
80
|
+
"NIST-ID": "CM-7(1)"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"RULE": "ec2-instance-type",
|
|
84
|
+
"NIST-ID": "CM-2"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"RULE": "ec2-instance-types",
|
|
88
|
+
"NIST-ID": "CM-2"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"RULE": "ec2-instance-with-public-ip",
|
|
92
|
+
"NIST-ID": "AC-3"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"RULE": "ec2-instance-with-user-data-secrets",
|
|
96
|
+
"NIST-ID": "AC-3"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"RULE": "ec2-security-group-opens-all-ports",
|
|
100
|
+
"NIST-ID": "CM-7(1)"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"RULE": "ec2-security-group-opens-all-ports-to-all",
|
|
104
|
+
"NIST-ID": "CM-7(1)"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"RULE": "ec2-security-group-opens-all-ports-to-self",
|
|
108
|
+
"NIST-ID": "CM-7(1)"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"RULE": "ec2-security-group-opens-icmp-to-all",
|
|
112
|
+
"NIST-ID": "CM-7(1)"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"RULE": "ec2-security-group-opens-known-port-to-all",
|
|
116
|
+
"NIST-ID": "CM-7(1)"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"RULE": "ec2-security-group-opens-plaintext-port",
|
|
120
|
+
"NIST-ID": "CM-7(1)"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"RULE": "ec2-security-group-opens-port-range",
|
|
124
|
+
"NIST-ID": "CM-7(1)"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"RULE": "ec2-security-group-opens-port-to-all",
|
|
128
|
+
"NIST-ID": "CM-7(1)"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"RULE": "ec2-security-group-whitelists-aws",
|
|
132
|
+
"NIST-ID": "CM-7(1)"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"RULE": "ec2-security-group-whitelists-aws-ip-from-banned-region",
|
|
136
|
+
"NIST-ID": "CM-7(1)"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"RULE": "ec2-security-group-whitelists-non-elastic-ips",
|
|
140
|
+
"NIST-ID": "CM-7(1)"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"RULE": "ec2-security-group-whitelists-unknown-aws",
|
|
144
|
+
"NIST-ID": "CM-7(1)"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"RULE": "ec2-security-group-whitelists-unknown-cidrs",
|
|
148
|
+
"NIST-ID": "CM-7(1)"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"RULE": "ec2-unused-security-group",
|
|
152
|
+
"NIST-ID": "CM-7(1)"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"RULE": "elb-listener-allowing-cleartext",
|
|
156
|
+
"NIST-ID": "SC-8"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"RULE": "elb-no-access-logs",
|
|
160
|
+
"NIST-ID": "AU-12"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"RULE": "elb-older-ssl-policy",
|
|
164
|
+
"NIST-ID": "SC-8"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"RULE": "elbv2-http-request-smuggling",
|
|
168
|
+
"NIST-ID": "SC-8"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"RULE": "elbv2-listener-allowing-cleartext",
|
|
172
|
+
"NIST-ID": "SC-8"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"RULE": "elbv2-no-access-logs",
|
|
176
|
+
"NIST-ID": "AU-12"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"RULE": "elbv2-no-deletion-protection",
|
|
180
|
+
"NIST-ID": "SI-7"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"RULE": "elbv2-older-ssl-policy",
|
|
184
|
+
"NIST-ID": "SC-8"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"RULE": "iam-assume-role-lacks-external-id-and-mfa",
|
|
188
|
+
"NIST-ID": "AC-17"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"RULE": "iam-assume-role-no-mfa",
|
|
192
|
+
"NIST-ID": "AC-6"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"RULE": "iam-assume-role-policy-allows-all",
|
|
196
|
+
"NIST-ID": "AC-6"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"RULE": "iam-ec2-role-without-instances",
|
|
200
|
+
"NIST-ID": "AC-6"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"RULE": "iam-group-with-inline-policies",
|
|
204
|
+
"NIST-ID": "AC-6"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"RULE": "iam-group-with-no-users",
|
|
208
|
+
"NIST-ID": "AC-6"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"RULE": "iam-human-user-with-policies",
|
|
212
|
+
"NIST-ID": "AC-6"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"RULE": "iam-inline-policy-allows-non-sts-action",
|
|
216
|
+
"NIST-ID": "AC-6"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"RULE": "iam-inline-policy-allows-NotActions",
|
|
220
|
+
"NIST-ID": "AC-6"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"RULE": "iam-inline-policy-for-role",
|
|
224
|
+
"NIST-ID": "AC-6"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"RULE": "iam-managed-policy-allows-full-privileges",
|
|
228
|
+
"NIST-ID": "AC-6"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"RULE": "iam-managed-policy-allows-non-sts-action",
|
|
232
|
+
"NIST-ID": "AC-6"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"RULE": "iam-managed-policy-allows-NotActions",
|
|
236
|
+
"NIST-ID": "AC-6"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"RULE": "iam-managed-policy-for-role",
|
|
240
|
+
"NIST-ID": "AC-6"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"RULE": "iam-managed-policy-no-attachments",
|
|
244
|
+
"NIST-ID": "AC-6"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"RULE": "iam-no-support-role",
|
|
248
|
+
"NIST-ID": "IR-7"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"RULE": "iam-password-policy-expiration-threshold",
|
|
252
|
+
"NIST-ID": "AC-2"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"RULE": "iam-password-policy-minimum-length",
|
|
256
|
+
"NIST-ID": "AC-2"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"RULE": "iam-password-policy-no-expiration",
|
|
260
|
+
"NIST-ID": "AC-2"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"RULE": "iam-password-policy-no-lowercase-required",
|
|
264
|
+
"NIST-ID": "AC-2"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"RULE": "iam-password-policy-no-number-required",
|
|
268
|
+
"NIST-ID": "AC-2"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"RULE": "iam-password-policy-no-symbol-required",
|
|
272
|
+
"NIST-ID": "AC-2"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"RULE": "iam-password-policy-no-uppercase-required",
|
|
276
|
+
"NIST-ID": "AC-2"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"RULE": "iam-password-policy-reuse-enabled",
|
|
280
|
+
"NIST-ID": "IA-5(1)"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"RULE": "iam-role-with-inline-policies",
|
|
284
|
+
"NIST-ID": "AC-6"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"RULE": "iam-root-account-no-hardware-mfa",
|
|
288
|
+
"NIST-ID": "IA-2(1)"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"RULE": "iam-root-account-no-mfa",
|
|
292
|
+
"NIST-ID": "IA-2(1)"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"RULE": "iam-root-account-used-recently",
|
|
296
|
+
"NIST-ID": "AC-6(9)"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"RULE": "iam-root-account-with-active-certs",
|
|
300
|
+
"NIST-ID": "AC-6(9)"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"RULE": "iam-root-account-with-active-keys",
|
|
304
|
+
"NIST-ID": "AC-6(9)"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"RULE": "iam-service-user-with-password",
|
|
308
|
+
"NIST-ID": "AC-2"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"RULE": "iam-unused-credentials-not-disabled",
|
|
312
|
+
"NIST-ID": "AC-2"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"RULE": "iam-user-no-key-rotation",
|
|
316
|
+
"NIST-ID": "AC-2"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"RULE": "iam-user-not-in-category-group",
|
|
320
|
+
"NIST-ID": "AC-2"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"RULE": "iam-user-not-in-common-group",
|
|
324
|
+
"NIST-ID": "AC-2"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"RULE": "iam-user-unused-access-key-initial-setup",
|
|
328
|
+
"NIST-ID": "AC-2"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"RULE": "iam-user-with-multiple-access-keys",
|
|
332
|
+
"NIST-ID": "IA-2"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"RULE": "iam-user-without-mfa",
|
|
336
|
+
"NIST-ID": "IA-2(1)"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"RULE": "iam-user-with-password-and-key",
|
|
340
|
+
"NIST-ID": "IA-2"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"RULE": "iam-user-with-policies",
|
|
344
|
+
"NIST-ID": "AC-2"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"RULE": "kms-cmk-rotation-disabled",
|
|
348
|
+
"NIST-ID": "SC-12"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"RULE": "logs-no-alarm-aws-configuration-changes",
|
|
352
|
+
"NIST-ID": "CM-8|CM-8(2)|CM-8(6)"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"RULE": "logs-no-alarm-cloudtrail-configuration-changes",
|
|
356
|
+
"NIST-ID": "AU-6"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"RULE": "logs-no-alarm-cmk-deletion",
|
|
360
|
+
"NIST-ID": "AC-2"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"RULE": "logs-no-alarm-console-authentication-failures",
|
|
364
|
+
"NIST-ID": "AC-2"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"RULE": "logs-no-alarm-iam-policy-changes",
|
|
368
|
+
"NIST-ID": "AC-2"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"RULE": "logs-no-alarm-nacl-changes",
|
|
372
|
+
"NIST-ID": "CM-6(2)"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"RULE": "logs-no-alarm-network-gateways-changes",
|
|
376
|
+
"NIST-ID": "AU-12|CM-6(2)"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"RULE": "logs-no-alarm-root-usage",
|
|
380
|
+
"NIST-ID": "AU-2"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"RULE": "logs-no-alarm-route-table-changes",
|
|
384
|
+
"NIST-ID": "AU-12|CM-6(2)"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"RULE": "logs-no-alarm-s3-policy-changes",
|
|
388
|
+
"NIST-ID": "AC-6|AU-12"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"RULE": "logs-no-alarm-security-group-changes",
|
|
392
|
+
"NIST-ID": "AC-2(4)"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"RULE": "logs-no-alarm-signin-without-mfa",
|
|
396
|
+
"NIST-ID": "AC-2"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"RULE": "logs-no-alarm-unauthorized-api-calls",
|
|
400
|
+
"NIST-ID": "AU-6|SI-4(2)"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"RULE": "logs-no-alarm-vpc-changes",
|
|
404
|
+
"NIST-ID": "CM-6(1)"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"RULE": "rds-instance-backup-disabled",
|
|
408
|
+
"NIST-ID": "CP-9"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"RULE": "rds-instance-ca-certificate-deprecated",
|
|
412
|
+
"NIST-ID": "SC-12"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"RULE": "rds-instance-no-minor-upgrade",
|
|
416
|
+
"NIST-ID": "SI-2"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"RULE": "rds-instance-short-backup-retention-period",
|
|
420
|
+
"NIST-ID": "CP-9"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"RULE": "rds-instance-single-az",
|
|
424
|
+
"NIST-ID": "CP-7"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"RULE": "rds-instance-storage-not-encrypted",
|
|
428
|
+
"NIST-ID": "SC-28"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"RULE": "rds-postgres-instance-with-invalid-certificate",
|
|
432
|
+
"NIST-ID": "SC-12"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"RULE": "rds-security-group-allows-all",
|
|
436
|
+
"NIST-ID": "CM-7(1)"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"RULE": "rds-snapshot-public",
|
|
440
|
+
"NIST-ID": "SC-28"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"RULE": "redshift-cluster-database-not-encrypted",
|
|
444
|
+
"NIST-ID": "SC-28"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"RULE": "redshift-cluster-no-version-upgrade",
|
|
448
|
+
"NIST-ID": "SI-2"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"RULE": "redshift-cluster-publicly-accessible",
|
|
452
|
+
"NIST-ID": "AC-3"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"RULE": "redshift-parameter-group-logging-disabled",
|
|
456
|
+
"NIST-ID": "AU-12"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"RULE": "redshift-parameter-group-ssl-not-required",
|
|
460
|
+
"NIST-ID": "SC-8"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"RULE": "redshift-security-group-whitelists-all",
|
|
464
|
+
"NIST-ID": "CM-7(1)"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"RULE": "route53-domain-no-autorenew",
|
|
468
|
+
"NIST-ID": "SC-2"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"RULE": "route53-domain-no-transferlock",
|
|
472
|
+
"NIST-ID": "SC-2"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"RULE": "route53-domain-transferlock-not-authorized",
|
|
476
|
+
"NIST-ID": "SC-2"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"RULE": "s3-bucket-allowing-cleartext",
|
|
480
|
+
"NIST-ID": "SC-28"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"RULE": "s3-bucket-no-default-encryption",
|
|
484
|
+
"NIST-ID": "SC-28"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"RULE": "s3-bucket-no-logging",
|
|
488
|
+
"NIST-ID": "AU-2|AU-12"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"RULE": "s3-bucket-no-mfa-delete",
|
|
492
|
+
"NIST-ID": "SI-7"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"RULE": "s3-bucket-no-versioning",
|
|
496
|
+
"NIST-ID": "SI-7"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"RULE": "s3-bucket-world-acl",
|
|
500
|
+
"NIST-ID": "AC-3(3)"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"RULE": "s3-bucket-world-policy-arg",
|
|
504
|
+
"NIST-ID": "AC-3(3)"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"RULE": "s3-bucket-world-policy-star",
|
|
508
|
+
"NIST-ID": "AC-3(3)"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"RULE": "ses-identity-dkim-not-enabled",
|
|
512
|
+
"NIST-ID": "SC-23"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"RULE": "ses-identity-dkim-not-verified",
|
|
516
|
+
"NIST-ID": "SC-23"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"RULE": "ses-identity-world-policy",
|
|
520
|
+
"NIST-ID": "AC-6"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"RULE": "sns-topic-world-policy",
|
|
524
|
+
"NIST-ID": "AC-6"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"RULE": "sqs-queue-world-policy",
|
|
528
|
+
"NIST-ID": "AC-6"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"RULE": "vpc-custom-network-acls-allow-all",
|
|
532
|
+
"NIST-ID": "SC-7"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"RULE": "vpc-default-network-acls-allow-all",
|
|
536
|
+
"NIST-ID": "SC-7"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"RULE": "vpc-network-acl-not-used",
|
|
540
|
+
"NIST-ID": "SC-7"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"RULE": "vpc-routing-tables-with-peering",
|
|
544
|
+
"NIST-ID": "AC-3(3)"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"RULE": "vpc-subnet-with-bad-acls",
|
|
548
|
+
"NIST-ID": "SC-7"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"RULE": "vpc-subnet-with-default-acls",
|
|
552
|
+
"NIST-ID": "SC-7"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"RULE": "vpc-subnet-without-flow-log",
|
|
556
|
+
"NIST-ID": "AU-12"
|
|
557
|
+
}
|
|
558
|
+
]
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export * from './src/asff-mapper';
|
|
1
2
|
export * from './src/burpsuite-mapper';
|
|
3
|
+
export * from './src/converters-from-hdf/asff/reverse-asff-mapper';
|
|
2
4
|
export * from './src/dbprotect-mapper';
|
|
3
5
|
export * from './src/fortify-mapper';
|
|
4
6
|
export * from './src/jfrog-xray-mapper';
|
|
@@ -8,5 +10,6 @@ export * from './src/nikto-mapper';
|
|
|
8
10
|
export * from './src/sarif-mapper';
|
|
9
11
|
export * from './src/scoutsuite-mapper';
|
|
10
12
|
export * from './src/snyk-mapper';
|
|
13
|
+
export * from './src/sonarqube-mapper';
|
|
11
14
|
export * from './src/xccdf-results-mapper';
|
|
12
15
|
export * from './src/zap-mapper';
|
package/lib/index.js
CHANGED
|
@@ -10,7 +10,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./src/asff-mapper"), exports);
|
|
13
14
|
__exportStar(require("./src/burpsuite-mapper"), exports);
|
|
15
|
+
__exportStar(require("./src/converters-from-hdf/asff/reverse-asff-mapper"), exports);
|
|
14
16
|
__exportStar(require("./src/dbprotect-mapper"), exports);
|
|
15
17
|
__exportStar(require("./src/fortify-mapper"), exports);
|
|
16
18
|
__exportStar(require("./src/jfrog-xray-mapper"), exports);
|
|
@@ -20,6 +22,7 @@ __exportStar(require("./src/nikto-mapper"), exports);
|
|
|
20
22
|
__exportStar(require("./src/sarif-mapper"), exports);
|
|
21
23
|
__exportStar(require("./src/scoutsuite-mapper"), exports);
|
|
22
24
|
__exportStar(require("./src/snyk-mapper"), exports);
|
|
25
|
+
__exportStar(require("./src/sonarqube-mapper"), exports);
|
|
23
26
|
__exportStar(require("./src/xccdf-results-mapper"), exports);
|
|
24
27
|
__exportStar(require("./src/zap-mapper"), exports);
|
|
25
28
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAuC;AACvC,yDAAuC;AACvC,uDAAqC;AACrC,0DAAwC;AACxC,sDAAoC;AACpC,0DAAwC;AACxC,qDAAmC;AACnC,qDAAmC;AACnC,0DAAwC;AACxC,oDAAkC;AAClC,6DAA2C;AAC3C,mDAAiC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAAkC;AAClC,yDAAuC;AACvC,qFAAmE;AACnE,yDAAuC;AACvC,uDAAqC;AACrC,0DAAwC;AACxC,sDAAoC;AACpC,0DAAwC;AACxC,qDAAmC;AACnC,qDAAmC;AACnC,0DAAwC;AACxC,oDAAkC;AAClC,yDAAuC;AACvC,6DAA2C;AAC3C,mDAAiC"}
|