@zerothreatai/vulnerability-registry 4.0.0 → 6.0.0
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/dist/categories/authentication.js +17 -17
- package/dist/categories/configuration.js +80 -80
- package/dist/categories/injection.js +34 -34
- package/dist/categories/sensitive-paths.js +84 -84
- package/dist/categories/ssrf.js +11 -11
- package/dist/categories/xss.js +15 -15
- package/dist/compliance-codes.d.ts +207 -0
- package/dist/compliance-codes.js +213 -0
- package/dist/compliances/gdpr.d.ts +2 -0
- package/dist/compliances/gdpr.js +252 -0
- package/dist/compliances/helpers.d.ts +6 -0
- package/dist/compliances/helpers.js +11 -0
- package/dist/compliances/hipaa.d.ts +2 -0
- package/dist/compliances/hipaa.js +187 -0
- package/dist/compliances/index.d.ts +5 -0
- package/dist/compliances/index.js +5 -0
- package/dist/compliances/owasp.d.ts +2 -0
- package/dist/compliances/owasp.js +127 -0
- package/dist/compliances/pci-dss.d.ts +2 -0
- package/dist/compliances/pci-dss.js +260 -0
- package/dist/compliances/sans-top-25.d.ts +2 -0
- package/dist/compliances/sans-top-25.js +242 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.js +7 -1
- package/dist/types.d.ts +33 -0
- package/dist/types.js +11 -1
- package/dist-cjs/categories/authentication.js +17 -17
- package/dist-cjs/categories/configuration.js +80 -80
- package/dist-cjs/categories/injection.js +34 -34
- package/dist-cjs/categories/sensitive-paths.js +84 -84
- package/dist-cjs/categories/ssrf.js +11 -11
- package/dist-cjs/categories/xss.js +15 -15
- package/dist-cjs/compliance-codes.js +216 -0
- package/dist-cjs/compliances/gdpr.js +255 -0
- package/dist-cjs/compliances/helpers.js +19 -0
- package/dist-cjs/compliances/hipaa.js +190 -0
- package/dist-cjs/compliances/index.js +13 -0
- package/dist-cjs/compliances/owasp.js +130 -0
- package/dist-cjs/compliances/pci-dss.js +263 -0
- package/dist-cjs/compliances/sans-top-25.js +245 -0
- package/dist-cjs/index.js +12 -1
- package/dist-cjs/types.js +12 -0
- package/package.json +40 -32
- package/scripts/assign-ids.ts +105 -0
- package/scripts/check-duplicate-ids.ts +45 -0
- package/src/categories/authentication.ts +17 -17
- package/src/categories/configuration.ts +80 -80
- package/src/categories/injection.ts +34 -34
- package/src/categories/sensitive-paths.ts +84 -84
- package/src/categories/ssrf.ts +11 -11
- package/src/categories/xss.ts +15 -15
- package/src/compliance-codes.ts +216 -0
- package/src/compliances/README.md +82 -0
- package/src/compliances/gdpr.ts +258 -0
- package/src/compliances/helpers.ts +29 -0
- package/src/compliances/hipaa.ts +193 -0
- package/src/compliances/index.ts +5 -0
- package/src/compliances/owasp.ts +133 -0
- package/src/compliances/pci-dss.ts +266 -0
- package/src/compliances/sans-top-25.ts +246 -0
- package/src/id-registry.json +1235 -0
- package/src/index.ts +12 -1
- package/src/types.ts +40 -4
- package/src/categories/authentication.d.ts +0 -8
- package/src/categories/authentication.d.ts.map +0 -1
- package/src/categories/authentication.js +0 -392
- package/src/categories/authentication.js.map +0 -1
- package/src/categories/configuration.d.ts +0 -8
- package/src/categories/configuration.d.ts.map +0 -1
- package/src/categories/configuration.js +0 -1782
- package/src/categories/configuration.js.map +0 -1
- package/src/categories/injection.d.ts +0 -8
- package/src/categories/injection.d.ts.map +0 -1
- package/src/categories/injection.js +0 -781
- package/src/categories/injection.js.map +0 -1
- package/src/categories/sensitive-paths.d.ts +0 -9
- package/src/categories/sensitive-paths.d.ts.map +0 -1
- package/src/categories/sensitive-paths.js +0 -1872
- package/src/categories/sensitive-paths.js.map +0 -1
- package/src/categories/ssrf.d.ts +0 -8
- package/src/categories/ssrf.d.ts.map +0 -1
- package/src/categories/ssrf.js +0 -258
- package/src/categories/ssrf.js.map +0 -1
- package/src/categories/xss.d.ts +0 -7
- package/src/categories/xss.d.ts.map +0 -1
- package/src/categories/xss.js +0 -340
- package/src/categories/xss.js.map +0 -1
- package/src/error-codes.d.ts +0 -280
- package/src/error-codes.d.ts.map +0 -1
- package/src/error-codes.js +0 -350
- package/src/error-codes.js.map +0 -1
- package/src/index.d.ts +0 -60
- package/src/index.d.ts.map +0 -1
- package/src/index.js +0 -92
- package/src/index.js.map +0 -1
- package/src/types.d.ts +0 -88
- package/src/types.d.ts.map +0 -1
- package/src/types.js +0 -6
- package/src/types.js.map +0 -1
package/dist/categories/ssrf.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { VulnerabilityCode } from '../error-codes.js';
|
|
7
7
|
export const SSRF_VULNERABILITIES = {
|
|
8
8
|
[VulnerabilityCode.SSRF_CLOUD_METADATA]: {
|
|
9
|
-
id:
|
|
9
|
+
id: 450,
|
|
10
10
|
code: VulnerabilityCode.SSRF_CLOUD_METADATA,
|
|
11
11
|
title: 'Server-Side Request Forgery - Cloud Metadata Access',
|
|
12
12
|
description: 'Critical SSRF vulnerability enabling access to cloud provider metadata services (AWS IMDSv1, GCP, Azure) which expose sensitive information including IAM credentials, API tokens, and instance configuration that can lead to full cloud account compromise and lateral movement.',
|
|
@@ -28,7 +28,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
28
28
|
remediation: 'Block access to cloud metadata IP ranges (169.254.169.254). Implement IMDSv2 which requires tokens. Use allowlist for external URLs. Validate and sanitize all URL inputs.',
|
|
29
29
|
},
|
|
30
30
|
[VulnerabilityCode.SSRF_INTERNAL_SERVICE]: {
|
|
31
|
-
id:
|
|
31
|
+
id: 451,
|
|
32
32
|
code: VulnerabilityCode.SSRF_INTERNAL_SERVICE,
|
|
33
33
|
title: 'Server-Side Request Forgery - Internal Service Access',
|
|
34
34
|
description: 'SSRF vulnerability allowing attackers to access internal network services that should not be reachable from the internet, including databases, admin panels, cache servers, and other infrastructure components protected only by network segmentation without authentication.',
|
|
@@ -50,7 +50,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
50
50
|
remediation: 'Implement URL allowlist for permitted external resources. Block requests to private IP ranges and localhost. Use network segmentation with proper authentication for internal services.',
|
|
51
51
|
},
|
|
52
52
|
[VulnerabilityCode.SSRF_PROTOCOL_SMUGGLING]: {
|
|
53
|
-
id:
|
|
53
|
+
id: 452,
|
|
54
54
|
code: VulnerabilityCode.SSRF_PROTOCOL_SMUGGLING,
|
|
55
55
|
title: 'Server-Side Request Forgery - Protocol Smuggling',
|
|
56
56
|
description: 'SSRF vulnerability exploiting non-HTTP protocol handlers like file://, gopher://, dict://, or ftp:// to read local files, interact with internal services using raw TCP, or perform attacks that would not be possible through HTTP requests alone, significantly expanding impact scope.',
|
|
@@ -72,7 +72,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
72
72
|
remediation: 'Enforce HTTP/HTTPS only for outbound requests. Disable or block dangerous protocol handlers at the application and network level. Validate URL schemes against strict allowlist.',
|
|
73
73
|
},
|
|
74
74
|
[VulnerabilityCode.SSRF_BLIND_OOB]: {
|
|
75
|
-
id:
|
|
75
|
+
id: 453,
|
|
76
76
|
code: VulnerabilityCode.SSRF_BLIND_OOB,
|
|
77
77
|
title: 'Server-Side Request Forgery - Blind OOB',
|
|
78
78
|
description: 'Blind SSRF vulnerability confirmed through out-of-band DNS or HTTP callbacks indicating the server makes requests to attacker-controlled destinations even though responses are not reflected, enabling internal network scanning and data exfiltration through DNS or timing side channels.',
|
|
@@ -97,7 +97,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
97
97
|
// OPEN REDIRECT
|
|
98
98
|
// ========================================
|
|
99
99
|
[VulnerabilityCode.REDIRECT_HEADER_INJECTION]: {
|
|
100
|
-
id:
|
|
100
|
+
id: 454,
|
|
101
101
|
code: VulnerabilityCode.REDIRECT_HEADER_INJECTION,
|
|
102
102
|
title: 'Open Redirect - HTTP Header Injection',
|
|
103
103
|
description: 'Open redirect vulnerability through Location header manipulation allowing attackers to redirect victims to malicious websites after authenticating or interacting with the legitimate application, facilitating phishing attacks that abuse user trust in the original domain.',
|
|
@@ -119,7 +119,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
119
119
|
remediation: 'Use allowlist of permitted redirect destinations. Avoid using user input for redirect URLs. If redirects are required, use indirect references or validate against known safe patterns.',
|
|
120
120
|
},
|
|
121
121
|
[VulnerabilityCode.REDIRECT_JS_NAVIGATION]: {
|
|
122
|
-
id:
|
|
122
|
+
id: 455,
|
|
123
123
|
code: VulnerabilityCode.REDIRECT_JS_NAVIGATION,
|
|
124
124
|
title: 'Open Redirect - JavaScript Navigation',
|
|
125
125
|
description: 'Client-side open redirect vulnerability through JavaScript navigation methods like window.location or location.href being set to user-controlled values, allowing attackers to redirect users to malicious sites through specially crafted URLs that bypass server-side validation.',
|
|
@@ -144,7 +144,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
144
144
|
// HOST HEADER INJECTION
|
|
145
145
|
// ========================================
|
|
146
146
|
[VulnerabilityCode.HOST_CACHE_POISONING]: {
|
|
147
|
-
id:
|
|
147
|
+
id: 456,
|
|
148
148
|
code: VulnerabilityCode.HOST_CACHE_POISONING,
|
|
149
149
|
title: 'Host Header Injection - Cache Poisoning',
|
|
150
150
|
description: 'Host header injection vulnerability where manipulated Host headers are reflected in cached responses, allowing attackers to poison web caches and CDNs with malicious content that is then served to all users, potentially enabling widespread defacement or malware distribution.',
|
|
@@ -166,7 +166,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
166
166
|
remediation: 'Configure web servers to reject requests with unexpected Host headers. Include Host header in cache keys. Use canonical URLs for all generated links.',
|
|
167
167
|
},
|
|
168
168
|
[VulnerabilityCode.HOST_PASSWORD_RESET]: {
|
|
169
|
-
id:
|
|
169
|
+
id: 457,
|
|
170
170
|
code: VulnerabilityCode.HOST_PASSWORD_RESET,
|
|
171
171
|
title: 'Host Header Injection - Password Reset Poisoning',
|
|
172
172
|
description: 'Critical host header injection vulnerability in password reset functionality where the injected Host header is used to generate password reset URLs, allowing attackers to receive password reset tokens when victims click the manipulated links in legitimate reset emails.',
|
|
@@ -188,7 +188,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
188
188
|
remediation: 'Use hardcoded canonical domain for generated URLs. Never trust Host header for security-sensitive functionality. Validate Host header against configured allowed hosts.',
|
|
189
189
|
},
|
|
190
190
|
[VulnerabilityCode.SSRF_FILTER_BYPASS]: {
|
|
191
|
-
id:
|
|
191
|
+
id: 458,
|
|
192
192
|
code: VulnerabilityCode.SSRF_FILTER_BYPASS,
|
|
193
193
|
title: 'Server-Side Request Forgery - Filter Bypass',
|
|
194
194
|
description: 'SSRF vulnerability that bypasses security filters through encoding tricks (URL encoding, IPv6 representation, decimal IP notation), DNS rebinding, or using alternative representations of blocked addresses to reach internal resources despite URL validation controls.',
|
|
@@ -210,7 +210,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
210
210
|
remediation: 'Implement defense-in-depth with multiple validation layers. Resolve DNS before validation. Use strict URL parsing libraries. Block all private IP ranges including encoded forms.',
|
|
211
211
|
},
|
|
212
212
|
[VulnerabilityCode.REDIRECT_META_REFRESH]: {
|
|
213
|
-
id:
|
|
213
|
+
id: 459,
|
|
214
214
|
code: VulnerabilityCode.REDIRECT_META_REFRESH,
|
|
215
215
|
title: 'Open Redirect - Meta Refresh',
|
|
216
216
|
description: 'Open redirect vulnerability through HTML meta refresh tags where user input controls the redirect target URL, enabling phishing attacks by sending victims to malicious sites after a brief delay on the legitimate domain, bypassing some security controls.',
|
|
@@ -232,7 +232,7 @@ export const SSRF_VULNERABILITIES = {
|
|
|
232
232
|
remediation: 'Validate meta refresh URLs against allowlist. Avoid using user input in meta refresh tags. Prefer server-side redirects with proper validation over client-side meta refresh.',
|
|
233
233
|
},
|
|
234
234
|
[VulnerabilityCode.HOST_REDIRECT]: {
|
|
235
|
-
id:
|
|
235
|
+
id: 460,
|
|
236
236
|
code: VulnerabilityCode.HOST_REDIRECT,
|
|
237
237
|
title: 'Host Header Injection - Open Redirect',
|
|
238
238
|
description: 'Host header injection leading to open redirect where the application uses the Host header to generate redirect URLs, allowing attackers to redirect users to malicious domains by manipulating the Host header in their requests.',
|
package/dist/categories/xss.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { VulnerabilityCode } from '../error-codes.js';
|
|
7
7
|
export const XSS_VULNERABILITIES = {
|
|
8
8
|
[VulnerabilityCode.XSS_REFLECTED]: {
|
|
9
|
-
id:
|
|
9
|
+
id: 400,
|
|
10
10
|
code: VulnerabilityCode.XSS_REFLECTED,
|
|
11
11
|
title: 'Cross-Site Scripting - Reflected',
|
|
12
12
|
description: 'Reflected XSS vulnerability where user input is immediately returned by the server in the response without proper encoding, allowing attackers to inject malicious scripts that execute in the victim browser when they click a crafted link or submit a manipulated form.',
|
|
@@ -28,7 +28,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
28
28
|
remediation: 'HTML-encode all user input before rendering in HTML. Implement Content Security Policy (CSP). Use context-aware output encoding based on output location (HTML, JS, CSS, URL).',
|
|
29
29
|
},
|
|
30
30
|
[VulnerabilityCode.XSS_STORED]: {
|
|
31
|
-
id:
|
|
31
|
+
id: 401,
|
|
32
32
|
code: VulnerabilityCode.XSS_STORED,
|
|
33
33
|
title: 'Cross-Site Scripting - Stored',
|
|
34
34
|
description: 'Critical stored XSS vulnerability where malicious scripts are permanently saved in the application database and served to all users who view the affected content, enabling widespread session hijacking, credential theft, and malware distribution without requiring victim interaction beyond normal usage.',
|
|
@@ -50,7 +50,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
50
50
|
remediation: 'Sanitize all user input before storage. HTML-encode all dynamic content in responses. Implement strict Content Security Policy. Use HTTP-only and Secure flags for session cookies.',
|
|
51
51
|
},
|
|
52
52
|
[VulnerabilityCode.XSS_DOM_BASED]: {
|
|
53
|
-
id:
|
|
53
|
+
id: 402,
|
|
54
54
|
code: VulnerabilityCode.XSS_DOM_BASED,
|
|
55
55
|
title: 'Cross-Site Scripting - DOM Based',
|
|
56
56
|
description: 'DOM-based XSS vulnerability where the attack payload is processed entirely in the client-side JavaScript code without being sent to the server, typically through dangerous sinks like innerHTML, document.write(), or eval() that process URL fragments or user-controlled DOM elements.',
|
|
@@ -72,7 +72,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
72
72
|
remediation: 'Avoid using dangerous DOM sinks like innerHTML and document.write(). Use textContent instead of innerHTML. Sanitize any DOM manipulation with user input. Implement Trusted Types if supported.',
|
|
73
73
|
},
|
|
74
74
|
[VulnerabilityCode.XSS_SVG_INJECTION]: {
|
|
75
|
-
id:
|
|
75
|
+
id: 403,
|
|
76
76
|
code: VulnerabilityCode.XSS_SVG_INJECTION,
|
|
77
77
|
title: 'Cross-Site Scripting - SVG Injection',
|
|
78
78
|
description: 'SVG-based XSS vulnerability where malicious JavaScript is embedded within SVG image files using script elements or event handlers like onload, which execute when the browser renders the SVG file as an image or inline element, bypassing image upload security controls.',
|
|
@@ -94,7 +94,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
94
94
|
remediation: 'Sanitize uploaded SVG files to remove script elements and event handlers. Serve user-uploaded SVGs from a separate domain. Set Content-Disposition: attachment for SVG downloads. Use Content-Security-Policy.',
|
|
95
95
|
},
|
|
96
96
|
[VulnerabilityCode.XSS_CSTI_ANGULAR]: {
|
|
97
|
-
id:
|
|
97
|
+
id: 404,
|
|
98
98
|
code: VulnerabilityCode.XSS_CSTI_ANGULAR,
|
|
99
99
|
title: 'Cross-Site Scripting - Angular Template Injection',
|
|
100
100
|
description: 'AngularJS client-side template injection vulnerability where user input containing Angular expressions like {{constructor.constructor("alert(1)")()}} is evaluated by the Angular template engine, leading to arbitrary JavaScript execution in the user browser context.',
|
|
@@ -117,7 +117,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
117
117
|
remediation: 'Upgrade from AngularJS to modern Angular which is not vulnerable to template injection. Use ng-non-bindable directive for user content. Encode special characters {{}} in user input. Apply strict CSP.',
|
|
118
118
|
},
|
|
119
119
|
[VulnerabilityCode.XSS_CSP_BYPASS]: {
|
|
120
|
-
id:
|
|
120
|
+
id: 405,
|
|
121
121
|
code: VulnerabilityCode.XSS_CSP_BYPASS,
|
|
122
122
|
title: 'Cross-Site Scripting - CSP Bypass',
|
|
123
123
|
description: 'XSS vulnerability that bypasses Content Security Policy protections through techniques like JSONP endpoints on whitelisted domains, base tag injection, Angular.js libraries on CDN, or other CSP bypass gadgets that allow script execution despite CSP controls being in place.',
|
|
@@ -139,7 +139,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
139
139
|
remediation: 'Review CSP for JSONP endpoints and Angular.js CDN inclusions. Use nonce-based CSP instead of allowlist domains. Add base-uri restriction. Fix the underlying XSS vulnerability.',
|
|
140
140
|
},
|
|
141
141
|
[VulnerabilityCode.XSS_JS_CONTEXT]: {
|
|
142
|
-
id:
|
|
142
|
+
id: 406,
|
|
143
143
|
code: VulnerabilityCode.XSS_JS_CONTEXT,
|
|
144
144
|
title: 'Cross-Site Scripting - JavaScript Context',
|
|
145
145
|
description: 'XSS vulnerability where user input is injected directly into JavaScript code blocks, allowing attackers to break out of string contexts and execute arbitrary JavaScript by injecting quote characters and script code, or modify application logic by injecting new statements.',
|
|
@@ -161,7 +161,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
161
161
|
remediation: 'Avoid inserting user data into JavaScript code. Use JSON.stringify() with proper encoding for data passed to JavaScript. Pass data through data attributes and access via DOM APIs instead.',
|
|
162
162
|
},
|
|
163
163
|
[VulnerabilityCode.XSS_EVENT_HANDLER]: {
|
|
164
|
-
id:
|
|
164
|
+
id: 407,
|
|
165
165
|
code: VulnerabilityCode.XSS_EVENT_HANDLER,
|
|
166
166
|
title: 'Cross-Site Scripting - Event Handler Injection',
|
|
167
167
|
description: 'XSS vulnerability through injection into HTML event handler attributes like onclick, onerror, onload, or onmouseover, allowing attackers to execute JavaScript when users interact with or simply view the affected page elements without requiring script tags.',
|
|
@@ -183,7 +183,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
183
183
|
remediation: 'Use proper HTML encoding for all user input in attributes. Avoid placing user input in event handler attributes. Use Content Security Policy with unsafe-inline disabled.',
|
|
184
184
|
},
|
|
185
185
|
[VulnerabilityCode.XSS_SCRIPT_INJECTION]: {
|
|
186
|
-
id:
|
|
186
|
+
id: 408,
|
|
187
187
|
code: VulnerabilityCode.XSS_SCRIPT_INJECTION,
|
|
188
188
|
title: 'Cross-Site Scripting - Script Tag Injection',
|
|
189
189
|
description: 'XSS vulnerability where attackers can inject complete script tags into the HTML response, enabling arbitrary JavaScript execution. This is often the most straightforward XSS exploitation when input is not properly sanitized before rendering.',
|
|
@@ -205,7 +205,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
205
205
|
remediation: 'Encode < and > characters in user input. Implement Content Security Policy. Use HTML sanitization libraries that remove script tags. Apply context-aware output encoding.',
|
|
206
206
|
},
|
|
207
207
|
[VulnerabilityCode.XSS_HTML_INJECTION]: {
|
|
208
|
-
id:
|
|
208
|
+
id: 409,
|
|
209
209
|
code: VulnerabilityCode.XSS_HTML_INJECTION,
|
|
210
210
|
title: 'Cross-Site Scripting - HTML Injection',
|
|
211
211
|
description: 'HTML injection vulnerability where attackers can inject arbitrary HTML elements that modify page structure, enabling phishing attacks through fake login forms, content spoofing, or combination with CSS to overlay malicious content over legitimate page elements.',
|
|
@@ -227,7 +227,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
227
227
|
remediation: 'HTML-encode all user input. Use allowlist-based HTML sanitization if rich text is required. Implement Content Security Policy to restrict form actions and frame sources.',
|
|
228
228
|
},
|
|
229
229
|
[VulnerabilityCode.XSS_ATTRIBUTE_INJECTION]: {
|
|
230
|
-
id:
|
|
230
|
+
id: 410,
|
|
231
231
|
code: VulnerabilityCode.XSS_ATTRIBUTE_INJECTION,
|
|
232
232
|
title: 'Cross-Site Scripting - Attribute Injection',
|
|
233
233
|
description: 'XSS vulnerability where user input is placed in HTML attributes without proper encoding, allowing attackers to break out of the attribute context and inject new attributes or event handlers by using quote characters and spaces.',
|
|
@@ -249,7 +249,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
249
249
|
remediation: 'HTML-encode quotes (single and double) when placing user input in attributes. Always use quoted attributes. Avoid placing user input in dangerous attributes like href, src, or event handlers.',
|
|
250
250
|
},
|
|
251
251
|
[VulnerabilityCode.XSS_CSS_INJECTION]: {
|
|
252
|
-
id:
|
|
252
|
+
id: 411,
|
|
253
253
|
code: VulnerabilityCode.XSS_CSS_INJECTION,
|
|
254
254
|
title: 'Cross-Site Scripting - CSS Injection',
|
|
255
255
|
description: 'CSS injection vulnerability where attackers can inject malicious CSS rules to exfiltrate data through CSS selectors and background URLs, modify page appearance for phishing, or in older browsers achieve JavaScript execution through CSS expressions.',
|
|
@@ -271,7 +271,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
271
271
|
remediation: 'Sanitize CSS input to remove url() functions and expression() directives. Use CSS-specific encoding. Implement Content Security Policy with style-src restrictions.',
|
|
272
272
|
},
|
|
273
273
|
[VulnerabilityCode.XSS_TEMPLATE_LITERAL]: {
|
|
274
|
-
id:
|
|
274
|
+
id: 412,
|
|
275
275
|
code: VulnerabilityCode.XSS_TEMPLATE_LITERAL,
|
|
276
276
|
title: 'Cross-Site Scripting - Template Literal Injection',
|
|
277
277
|
description: 'XSS vulnerability through JavaScript template literals (backtick strings) where user input can break out of the template context or inject expressions using ${} syntax, executing arbitrary JavaScript in the client browser context.',
|
|
@@ -293,7 +293,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
293
293
|
remediation: 'Avoid placing user input inside template literals. Escape backticks, dollar signs, and braces. Use tagged template functions with proper escaping for user data.',
|
|
294
294
|
},
|
|
295
295
|
[VulnerabilityCode.XSS_MUTATION_BASED]: {
|
|
296
|
-
id:
|
|
296
|
+
id: 413,
|
|
297
297
|
code: VulnerabilityCode.XSS_MUTATION_BASED,
|
|
298
298
|
title: 'Cross-Site Scripting - Mutation XSS',
|
|
299
299
|
description: 'Mutation-based XSS (mXSS) vulnerability exploiting browser HTML parser quirks and DOM mutations where seemingly safe HTML is transformed into executable script through browser parsing behaviors, bypassing traditional sanitization.',
|
|
@@ -315,7 +315,7 @@ export const XSS_VULNERABILITIES = {
|
|
|
315
315
|
remediation: 'Use DOMPurify or similar mXSS-aware sanitizers. Avoid innerHTML with user content. Implement Trusted Types. Stay updated on browser parsing behavior changes.',
|
|
316
316
|
},
|
|
317
317
|
[VulnerabilityCode.XSS_CSTI_VUE]: {
|
|
318
|
-
id:
|
|
318
|
+
id: 414,
|
|
319
319
|
code: VulnerabilityCode.XSS_CSTI_VUE,
|
|
320
320
|
title: 'Cross-Site Scripting - Vue.js Template Injection',
|
|
321
321
|
description: 'Vue.js client-side template injection vulnerability where user input containing Vue expression syntax like {{}} or v-bind directives is evaluated by the Vue template compiler, leading to arbitrary JavaScript execution in the browser context.',
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
export declare enum ComplianceCode {
|
|
2
|
+
OWASP_A1_BROKEN_ACCESS_CONTROL = "OWASP_A1_BROKEN_ACCESS_CONTROL",
|
|
3
|
+
OWASP_A2_CRYPTOGRAPHIC_FAILURES = "OWASP_A2_CRYPTOGRAPHIC_FAILURES",
|
|
4
|
+
OWASP_A3_INJECTION_FLAWS = "OWASP_A3_INJECTION_FLAWS",
|
|
5
|
+
OWASP_A4_INSECURE_DESIGN = "OWASP_A4_INSECURE_DESIGN",
|
|
6
|
+
OWASP_A5_SECURITY_MISCONFIGURATION = "OWASP_A5_SECURITY_MISCONFIGURATION",
|
|
7
|
+
OWASP_A6_VULNERABLE_OUTDATED_COMPONENTS = "OWASP_A6_VULNERABLE_OUTDATED_COMPONENTS",
|
|
8
|
+
OWASP_A7_IDENTIFICATION_AUTH_FAILURE = "OWASP_A7_IDENTIFICATION_AUTH_FAILURE",
|
|
9
|
+
OWASP_A8_SOFTWARE_DATA_INTEGRITY_FAILURE = "OWASP_A8_SOFTWARE_DATA_INTEGRITY_FAILURE",
|
|
10
|
+
OWASP_A9_LOGGING_MONITORING_FAILURES = "OWASP_A9_LOGGING_MONITORING_FAILURES",
|
|
11
|
+
OWASP_A10_SSRF = "OWASP_A10_SSRF",
|
|
12
|
+
HIPAA_164_105_PROTECT_PRIVATE_HEALTH_INFO = "HIPAA_164_105_PROTECT_PRIVATE_HEALTH_INFO",
|
|
13
|
+
HIPAA_164_306_A_1_KEEP_INFO_SAFE = "HIPAA_164_306_A_1_KEEP_INFO_SAFE",
|
|
14
|
+
HIPAA_164_306_A_2_PROTECT_AGAINST_THREATS = "HIPAA_164_306_A_2_PROTECT_AGAINST_THREATS",
|
|
15
|
+
HIPAA_164_306_A_3_STOP_UNAUTHORIZED_ACCESS = "HIPAA_164_306_A_3_STOP_UNAUTHORIZED_ACCESS",
|
|
16
|
+
HIPAA_164_308_A_1_I_PREVENT_FIX_PROBLEMS = "HIPAA_164_308_A_1_I_PREVENT_FIX_PROBLEMS",
|
|
17
|
+
HIPAA_164_308_A_1_II_B_LOWER_SECURITY_RISKS = "HIPAA_164_308_A_1_II_B_LOWER_SECURITY_RISKS",
|
|
18
|
+
HIPAA_164_308_A_5_II_B_BLOCK_MALWARE = "HIPAA_164_308_A_5_II_B_BLOCK_MALWARE",
|
|
19
|
+
HIPAA_164_308_A_5_II_C_WATCH_LOGINS = "HIPAA_164_308_A_5_II_C_WATCH_LOGINS",
|
|
20
|
+
HIPAA_164_308_A_5_II_D_PROTECT_PASSWORDS = "HIPAA_164_308_A_5_II_D_PROTECT_PASSWORDS",
|
|
21
|
+
HIPAA_164_308_A_7_I_PLAN_EMERGENCIES = "HIPAA_164_308_A_7_I_PLAN_EMERGENCIES",
|
|
22
|
+
HIPAA_164_312_A_1_CONTROL_ACCESS = "HIPAA_164_312_A_1_CONTROL_ACCESS",
|
|
23
|
+
HIPAA_164_312_C_1_PREVENT_CHANGES = "HIPAA_164_312_C_1_PREVENT_CHANGES",
|
|
24
|
+
HIPAA_164_312_D_VERIFY_IDENTITY = "HIPAA_164_312_D_VERIFY_IDENTITY",
|
|
25
|
+
HIPAA_164_312_E_1_PROTECT_ONLINE_INFO = "HIPAA_164_312_E_1_PROTECT_ONLINE_INFO",
|
|
26
|
+
HIPAA_164_312_E_2_I_PREVENT_UNAUTHORIZED_CHANGES = "HIPAA_164_312_E_2_I_PREVENT_UNAUTHORIZED_CHANGES",
|
|
27
|
+
HIPAA_164_312_E_2_II_USE_ENCRYPTION = "HIPAA_164_312_E_2_II_USE_ENCRYPTION",
|
|
28
|
+
HIPAA_164_530_C_2_I_KEEP_INFO_SHARED = "HIPAA_164_530_C_2_I_KEEP_INFO_SHARED",
|
|
29
|
+
GDPR_A_10_1_1_DOCUMENTED_OPERATING_PROCEDURES = "GDPR_A_10_1_1_DOCUMENTED_OPERATING_PROCEDURES",
|
|
30
|
+
GDPR_A_10_1_2_CHANGE_MANAGEMENT = "GDPR_A_10_1_2_CHANGE_MANAGEMENT",
|
|
31
|
+
GDPR_A_10_1_3_SEGREGATION_OF_DUTIES = "GDPR_A_10_1_3_SEGREGATION_OF_DUTIES",
|
|
32
|
+
GDPR_A_10_1_4_SEPARATION_DEV_TEST_OPS = "GDPR_A_10_1_4_SEPARATION_DEV_TEST_OPS",
|
|
33
|
+
GDPR_A_10_2_1_SERVICE_DELIVERY = "GDPR_A_10_2_1_SERVICE_DELIVERY",
|
|
34
|
+
GDPR_A_10_2_2_MONITORING_THIRD_PARTY_SERVICES = "GDPR_A_10_2_2_MONITORING_THIRD_PARTY_SERVICES",
|
|
35
|
+
GDPR_A_10_2_3_MANAGING_CHANGES_THIRD_PARTY = "GDPR_A_10_2_3_MANAGING_CHANGES_THIRD_PARTY",
|
|
36
|
+
GDPR_A_10_3_1_CAPACITY_MANAGEMENT = "GDPR_A_10_3_1_CAPACITY_MANAGEMENT",
|
|
37
|
+
GDPR_A_10_3_2_SYSTEM_ACCEPTANCE = "GDPR_A_10_3_2_SYSTEM_ACCEPTANCE",
|
|
38
|
+
GDPR_A_10_4_1_CONTROLS_AGAINST_MALICIOUS_CODE = "GDPR_A_10_4_1_CONTROLS_AGAINST_MALICIOUS_CODE",
|
|
39
|
+
GDPR_A_10_4_2_CONTROLS_AGAINST_MOBILE_CODE = "GDPR_A_10_4_2_CONTROLS_AGAINST_MOBILE_CODE",
|
|
40
|
+
GDPR_A_10_5_1_INFORMATION_BACK_UP = "GDPR_A_10_5_1_INFORMATION_BACK_UP",
|
|
41
|
+
GDPR_A_10_6_1_NETWORK_CONTROLS = "GDPR_A_10_6_1_NETWORK_CONTROLS",
|
|
42
|
+
GDPR_A_10_6_2_SECURITY_OF_NETWORK_SERVICES = "GDPR_A_10_6_2_SECURITY_OF_NETWORK_SERVICES",
|
|
43
|
+
GDPR_A_10_7_1_MANAGEMENT_REMOVABLE_MEDIA = "GDPR_A_10_7_1_MANAGEMENT_REMOVABLE_MEDIA",
|
|
44
|
+
GDPR_A_10_7_2_DISPOSAL_OF_MEDIA = "GDPR_A_10_7_2_DISPOSAL_OF_MEDIA",
|
|
45
|
+
GDPR_A_10_7_3_INFORMATION_HANDLING_PROCEDURES = "GDPR_A_10_7_3_INFORMATION_HANDLING_PROCEDURES",
|
|
46
|
+
GDPR_A_10_7_4_SECURITY_SYSTEM_DOCUMENTATION = "GDPR_A_10_7_4_SECURITY_SYSTEM_DOCUMENTATION",
|
|
47
|
+
GDPR_A_10_8_1_INFO_EXCHANGE_POLICIES = "GDPR_A_10_8_1_INFO_EXCHANGE_POLICIES",
|
|
48
|
+
GDPR_A_10_8_2_EXCHANGE_AGREEMENTS = "GDPR_A_10_8_2_EXCHANGE_AGREEMENTS",
|
|
49
|
+
GDPR_A_10_8_3_PHYSICAL_MEDIA_IN_TRANSIT = "GDPR_A_10_8_3_PHYSICAL_MEDIA_IN_TRANSIT",
|
|
50
|
+
GDPR_A_10_8_4_ELECTRONIC_MESSAGING = "GDPR_A_10_8_4_ELECTRONIC_MESSAGING",
|
|
51
|
+
GDPR_A_10_8_5_BUSINESS_INFORMATION_SYSTEMS = "GDPR_A_10_8_5_BUSINESS_INFORMATION_SYSTEMS",
|
|
52
|
+
GDPR_A_10_9_1_ELECTRONIC_COMMERCE = "GDPR_A_10_9_1_ELECTRONIC_COMMERCE",
|
|
53
|
+
GDPR_A_10_9_2_ONLINE_TRANSACTIONS = "GDPR_A_10_9_2_ONLINE_TRANSACTIONS",
|
|
54
|
+
GDPR_A_10_9_3_PUBLICLY_AVAILABLE = "GDPR_A_10_9_3_PUBLICLY_AVAILABLE",
|
|
55
|
+
GDPR_A_10_10_1_AUDIT_LOGGING = "GDPR_A_10_10_1_AUDIT_LOGGING",
|
|
56
|
+
GDPR_A_10_10_2_MONITORING_SYSTEM_USE = "GDPR_A_10_10_2_MONITORING_SYSTEM_USE",
|
|
57
|
+
GDPR_A_10_10_3_PROTECTION_OF_LOG_INFORMATION = "GDPR_A_10_10_3_PROTECTION_OF_LOG_INFORMATION",
|
|
58
|
+
GDPR_A_10_10_4_ADMINISTRATOR_OPERATOR_LOGS = "GDPR_A_10_10_4_ADMINISTRATOR_OPERATOR_LOGS",
|
|
59
|
+
GDPR_A_10_10_5_FAULT_LOGGING = "GDPR_A_10_10_5_FAULT_LOGGING",
|
|
60
|
+
GDPR_A_10_10_6_CLOCK_SYNCHRONIZATION = "GDPR_A_10_10_6_CLOCK_SYNCHRONIZATION",
|
|
61
|
+
GDPR_A_11_1_1_ACCESS_CONTROL_POLICY = "GDPR_A_11_1_1_ACCESS_CONTROL_POLICY",
|
|
62
|
+
GDPR_A_11_2_1_USER_REGISTRATION = "GDPR_A_11_2_1_USER_REGISTRATION",
|
|
63
|
+
GDPR_A_11_2_2_PRIVILEGE_MANAGEMENT = "GDPR_A_11_2_2_PRIVILEGE_MANAGEMENT",
|
|
64
|
+
GDPR_A_11_2_3_USER_PASSWORD_MANAGEMENT = "GDPR_A_11_2_3_USER_PASSWORD_MANAGEMENT",
|
|
65
|
+
GDPR_A_11_2_4_REVIEW_USER_ACCESS_RIGHTS = "GDPR_A_11_2_4_REVIEW_USER_ACCESS_RIGHTS",
|
|
66
|
+
GDPR_A_11_3_1_PASSWORD_USE = "GDPR_A_11_3_1_PASSWORD_USE",
|
|
67
|
+
GDPR_A_11_3_2_UNATTENDED_USER_EQUIPMENT = "GDPR_A_11_3_2_UNATTENDED_USER_EQUIPMENT",
|
|
68
|
+
GDPR_A_11_3_3_CLEAR_DESK_SCREEN_POLICY = "GDPR_A_11_3_3_CLEAR_DESK_SCREEN_POLICY",
|
|
69
|
+
GDPR_A_11_4_1_POLICY_USE_NETWORK_SERVICES = "GDPR_A_11_4_1_POLICY_USE_NETWORK_SERVICES",
|
|
70
|
+
GDPR_A_11_4_2_USER_AUTH_EXTERNAL_CONNECTIONS = "GDPR_A_11_4_2_USER_AUTH_EXTERNAL_CONNECTIONS",
|
|
71
|
+
GDPR_A_11_4_3_EQUIPMENT_IDENTIFICATION = "GDPR_A_11_4_3_EQUIPMENT_IDENTIFICATION",
|
|
72
|
+
GDPR_A_11_4_4_REMOTE_DIAGNOSTIC_PORT_PROTECTION = "GDPR_A_11_4_4_REMOTE_DIAGNOSTIC_PORT_PROTECTION",
|
|
73
|
+
GDPR_A_11_4_5_SEGREGATION_IN_NETWORKS = "GDPR_A_11_4_5_SEGREGATION_IN_NETWORKS",
|
|
74
|
+
GDPR_A_11_4_6_NETWORK_CONNECTION_CONTROL = "GDPR_A_11_4_6_NETWORK_CONNECTION_CONTROL",
|
|
75
|
+
GDPR_A_11_4_7_NETWORK_ROUTING_CONTROL = "GDPR_A_11_4_7_NETWORK_ROUTING_CONTROL",
|
|
76
|
+
GDPR_A_11_5_1_SECURE_LOG_ON = "GDPR_A_11_5_1_SECURE_LOG_ON",
|
|
77
|
+
GDPR_A_11_5_2_USER_ID_AND_AUTH = "GDPR_A_11_5_2_USER_ID_AND_AUTH",
|
|
78
|
+
GDPR_A_11_5_3_PASSWORD_MANAGEMENT_SYSTEM = "GDPR_A_11_5_3_PASSWORD_MANAGEMENT_SYSTEM",
|
|
79
|
+
GDPR_A_11_5_4_USE_OF_SYSTEM_UTILITIES = "GDPR_A_11_5_4_USE_OF_SYSTEM_UTILITIES",
|
|
80
|
+
GDPR_A_11_5_5_SESSION_TIMEOUT = "GDPR_A_11_5_5_SESSION_TIMEOUT",
|
|
81
|
+
GDPR_A_11_5_6_LIMITATION_CONNECTION_TIME = "GDPR_A_11_5_6_LIMITATION_CONNECTION_TIME",
|
|
82
|
+
GDPR_A_11_6_1_INFORMATION_ACCESS_RESTRICTION = "GDPR_A_11_6_1_INFORMATION_ACCESS_RESTRICTION",
|
|
83
|
+
GDPR_A_11_6_2_SENSITIVE_SYSTEM_ISOLATION = "GDPR_A_11_6_2_SENSITIVE_SYSTEM_ISOLATION",
|
|
84
|
+
GDPR_A_11_7_1_MOBILE_COMPUTING = "GDPR_A_11_7_1_MOBILE_COMPUTING",
|
|
85
|
+
GDPR_A_11_7_2_TELEWORKING = "GDPR_A_11_7_2_TELEWORKING",
|
|
86
|
+
GDPR_A_12_1_1_SECURITY_REQUIREMENTS_ANALYSIS = "GDPR_A_12_1_1_SECURITY_REQUIREMENTS_ANALYSIS",
|
|
87
|
+
GDPR_A_12_2_1_INPUT_DATA_VALIDATION = "GDPR_A_12_2_1_INPUT_DATA_VALIDATION",
|
|
88
|
+
GDPR_A_12_2_2_CONTROL_INTERNAL_PROCESSING = "GDPR_A_12_2_2_CONTROL_INTERNAL_PROCESSING",
|
|
89
|
+
GDPR_A_12_2_3_MESSAGE_INTEGRITY = "GDPR_A_12_2_3_MESSAGE_INTEGRITY",
|
|
90
|
+
GDPR_A_12_2_4_OUTPUT_DATA_VALIDATION = "GDPR_A_12_2_4_OUTPUT_DATA_VALIDATION",
|
|
91
|
+
GDPR_A_12_3_1_POLICY_CRYPTOGRAPHIC_CONTROLS = "GDPR_A_12_3_1_POLICY_CRYPTOGRAPHIC_CONTROLS",
|
|
92
|
+
GDPR_A_12_3_2_KEY_MANAGEMENT = "GDPR_A_12_3_2_KEY_MANAGEMENT",
|
|
93
|
+
GDPR_A_12_4_1_CONTROL_OPERATIONAL_SOFTWARE = "GDPR_A_12_4_1_CONTROL_OPERATIONAL_SOFTWARE",
|
|
94
|
+
GDPR_A_12_4_2_PROTECTION_SYSTEM_TEST_DATA = "GDPR_A_12_4_2_PROTECTION_SYSTEM_TEST_DATA",
|
|
95
|
+
GDPR_A_12_4_3_ACCESS_CONTROL_SOURCE_CODE = "GDPR_A_12_4_3_ACCESS_CONTROL_SOURCE_CODE",
|
|
96
|
+
GDPR_A_12_5_1_CHANGE_CONTROL_PROCEDURES = "GDPR_A_12_5_1_CHANGE_CONTROL_PROCEDURES",
|
|
97
|
+
GDPR_A_12_5_2_TECHNICAL_REVIEW_APPS = "GDPR_A_12_5_2_TECHNICAL_REVIEW_APPS",
|
|
98
|
+
GDPR_A_12_5_3_RESTRICTIONS_CHANGES_SOFTWARE = "GDPR_A_12_5_3_RESTRICTIONS_CHANGES_SOFTWARE",
|
|
99
|
+
GDPR_A_12_5_4_INFORMATION_LEAKAGE = "GDPR_A_12_5_4_INFORMATION_LEAKAGE",
|
|
100
|
+
GDPR_A_12_5_5_OUTSOURCED_SOFTWARE_DEV = "GDPR_A_12_5_5_OUTSOURCED_SOFTWARE_DEV",
|
|
101
|
+
GDPR_A_12_6_1_CONTROL_TECHNICAL_VULNERABILITIES = "GDPR_A_12_6_1_CONTROL_TECHNICAL_VULNERABILITIES",
|
|
102
|
+
PCI_REQ_1_INSTALL_FIREWALL = "PCI_REQ_1_INSTALL_FIREWALL",
|
|
103
|
+
PCI_REQ_2_1_CHANGE_DEFAULT_PASSWORDS = "PCI_REQ_2_1_CHANGE_DEFAULT_PASSWORDS",
|
|
104
|
+
PCI_REQ_2_2_1_ONE_PRIMARY_FUNCTION = "PCI_REQ_2_2_1_ONE_PRIMARY_FUNCTION",
|
|
105
|
+
PCI_REQ_2_2_2_ENABLE_NECESSARY_SERVICES = "PCI_REQ_2_2_2_ENABLE_NECESSARY_SERVICES",
|
|
106
|
+
PCI_REQ_2_2_3_SECURE_INSECURE_SERVICES = "PCI_REQ_2_2_3_SECURE_INSECURE_SERVICES",
|
|
107
|
+
PCI_REQ_2_2_4_CONFIGURE_SYSTEM_PARAMETERS = "PCI_REQ_2_2_4_CONFIGURE_SYSTEM_PARAMETERS",
|
|
108
|
+
PCI_REQ_2_2_5_STRENGTHEN_INSECURE_SERVICES = "PCI_REQ_2_2_5_STRENGTHEN_INSECURE_SERVICES",
|
|
109
|
+
PCI_REQ_2_3_ENCRYPT_NON_CONSOLE_ADMIN = "PCI_REQ_2_3_ENCRYPT_NON_CONSOLE_ADMIN",
|
|
110
|
+
PCI_REQ_A_1_1_ISOLATE_PROCESSES_CDE = "PCI_REQ_A_1_1_ISOLATE_PROCESSES_CDE",
|
|
111
|
+
PCI_REQ_A_1_2_RESTRICT_ENTITY_ACCESS = "PCI_REQ_A_1_2_RESTRICT_ENTITY_ACCESS",
|
|
112
|
+
PCI_REQ_A_1_3_ENABLE_UNIQUE_LOGGING = "PCI_REQ_A_1_3_ENABLE_UNIQUE_LOGGING",
|
|
113
|
+
PCI_REQ_A_1_4_ENABLE_FORENSIC_INVESTIGATION = "PCI_REQ_A_1_4_ENABLE_FORENSIC_INVESTIGATION",
|
|
114
|
+
PCI_REQ_3_1_MINIMIZE_DATA_STORAGE = "PCI_REQ_3_1_MINIMIZE_DATA_STORAGE",
|
|
115
|
+
PCI_REQ_3_2_1_NO_FULL_TRACK_DATA = "PCI_REQ_3_2_1_NO_FULL_TRACK_DATA",
|
|
116
|
+
PCI_REQ_3_2_2_NO_CVV_STORAGE = "PCI_REQ_3_2_2_NO_CVV_STORAGE",
|
|
117
|
+
PCI_REQ_3_2_3_NO_PIN_STORAGE = "PCI_REQ_3_2_3_NO_PIN_STORAGE",
|
|
118
|
+
PCI_REQ_3_3_MASK_PAN = "PCI_REQ_3_3_MASK_PAN",
|
|
119
|
+
PCI_REQ_3_4_RENDER_PAN_UNREADABLE = "PCI_REQ_3_4_RENDER_PAN_UNREADABLE",
|
|
120
|
+
PCI_REQ_3_5_PROTECT_ENCRYPTION_KEYS = "PCI_REQ_3_5_PROTECT_ENCRYPTION_KEYS",
|
|
121
|
+
PCI_REQ_3_6_KEY_MANAGEMENT_PROCESSES = "PCI_REQ_3_6_KEY_MANAGEMENT_PROCESSES",
|
|
122
|
+
PCI_REQ_3_7_DOCUMENT_POLICIES_STORED_DATA = "PCI_REQ_3_7_DOCUMENT_POLICIES_STORED_DATA",
|
|
123
|
+
PCI_REQ_4_1_STRONG_CRYPTO_TRANSMISSION = "PCI_REQ_4_1_STRONG_CRYPTO_TRANSMISSION",
|
|
124
|
+
PCI_REQ_4_2_NO_UNPROTECTED_PAN_MESSAGING = "PCI_REQ_4_2_NO_UNPROTECTED_PAN_MESSAGING",
|
|
125
|
+
PCI_REQ_4_3_ENCRYPTION_POLICIES_TRANSMISSION = "PCI_REQ_4_3_ENCRYPTION_POLICIES_TRANSMISSION",
|
|
126
|
+
PCI_REQ_5_PROTECT_MALWARE_ANTIVIRUS = "PCI_REQ_5_PROTECT_MALWARE_ANTIVIRUS",
|
|
127
|
+
PCI_REQ_6_1_IDENTIFY_RANK_VULNERABILITIES = "PCI_REQ_6_1_IDENTIFY_RANK_VULNERABILITIES",
|
|
128
|
+
PCI_REQ_6_2_INSTALL_SECURITY_PATCHES = "PCI_REQ_6_2_INSTALL_SECURITY_PATCHES",
|
|
129
|
+
PCI_REQ_6_3_1_SECURE_SOFTWARE_DEVELOPMENT = "PCI_REQ_6_3_1_SECURE_SOFTWARE_DEVELOPMENT",
|
|
130
|
+
PCI_REQ_6_3_2_CODE_REVIEW = "PCI_REQ_6_3_2_CODE_REVIEW",
|
|
131
|
+
PCI_REQ_6_4_1_SEPARATE_DEV_PROD = "PCI_REQ_6_4_1_SEPARATE_DEV_PROD",
|
|
132
|
+
PCI_REQ_6_4_2_SEPARATION_OF_DUTIES = "PCI_REQ_6_4_2_SEPARATION_OF_DUTIES",
|
|
133
|
+
PCI_REQ_6_4_3_NO_LIVE_DATA_TESTING = "PCI_REQ_6_4_3_NO_LIVE_DATA_TESTING",
|
|
134
|
+
PCI_REQ_6_4_4_REMOVE_TEST_DATA = "PCI_REQ_6_4_4_REMOVE_TEST_DATA",
|
|
135
|
+
PCI_REQ_6_5_1_PREVENT_INJECTION = "PCI_REQ_6_5_1_PREVENT_INJECTION",
|
|
136
|
+
PCI_REQ_6_5_2_PREVENT_BUFFER_OVERFLOW = "PCI_REQ_6_5_2_PREVENT_BUFFER_OVERFLOW",
|
|
137
|
+
PCI_REQ_6_5_3_SECURE_CRYPTOGRAPHIC_STORAGE = "PCI_REQ_6_5_3_SECURE_CRYPTOGRAPHIC_STORAGE",
|
|
138
|
+
PCI_REQ_6_5_4_SECURE_COMM_CHANNELS = "PCI_REQ_6_5_4_SECURE_COMM_CHANNELS",
|
|
139
|
+
PCI_REQ_6_5_5_PROPER_ERROR_HANDLING = "PCI_REQ_6_5_5_PROPER_ERROR_HANDLING",
|
|
140
|
+
PCI_REQ_6_5_6_ADDRESS_HIGH_RISK_VULNS = "PCI_REQ_6_5_6_ADDRESS_HIGH_RISK_VULNS",
|
|
141
|
+
PCI_REQ_6_5_7_PREVENT_XSS = "PCI_REQ_6_5_7_PREVENT_XSS",
|
|
142
|
+
PCI_REQ_6_5_8_PREVENT_ACCESS_CONTROL_VULNS = "PCI_REQ_6_5_8_PREVENT_ACCESS_CONTROL_VULNS",
|
|
143
|
+
PCI_REQ_6_5_9_PREVENT_CSRF = "PCI_REQ_6_5_9_PREVENT_CSRF",
|
|
144
|
+
PCI_REQ_6_5_10_PREVENT_BROKEN_AUTH = "PCI_REQ_6_5_10_PREVENT_BROKEN_AUTH",
|
|
145
|
+
PCI_REQ_6_6_PROTECT_PUBLIC_WEB_APPS = "PCI_REQ_6_6_PROTECT_PUBLIC_WEB_APPS",
|
|
146
|
+
PCI_REQ_6_7_DOCUMENT_POLICIES_SECURE_SYSTEMS = "PCI_REQ_6_7_DOCUMENT_POLICIES_SECURE_SYSTEMS",
|
|
147
|
+
PCI_REQ_7_RESTRICT_ACCESS_NEED_TO_KNOW = "PCI_REQ_7_RESTRICT_ACCESS_NEED_TO_KNOW",
|
|
148
|
+
PCI_REQ_7_1_1_DEFINE_ROLE_BASED_ACCESS = "PCI_REQ_7_1_1_DEFINE_ROLE_BASED_ACCESS",
|
|
149
|
+
PCI_REQ_7_1_2_RESTRICT_PRIVILEGED_USER = "PCI_REQ_7_1_2_RESTRICT_PRIVILEGED_USER",
|
|
150
|
+
PCI_REQ_7_1_3_ASSIGN_ACCESS_BY_ROLE = "PCI_REQ_7_1_3_ASSIGN_ACCESS_BY_ROLE",
|
|
151
|
+
PCI_REQ_7_1_4_DOCUMENTED_APPROVAL = "PCI_REQ_7_1_4_DOCUMENTED_APPROVAL",
|
|
152
|
+
PCI_REQ_7_2_ACCESS_CONTROL_NEED_TO_KNOW = "PCI_REQ_7_2_ACCESS_CONTROL_NEED_TO_KNOW",
|
|
153
|
+
PCI_REQ_7_3_DOCUMENT_POLICIES_CARDHOLDER_DATA = "PCI_REQ_7_3_DOCUMENT_POLICIES_CARDHOLDER_DATA",
|
|
154
|
+
PCI_REQ_8_1_1_ASSIGN_UNIQUE_IDS = "PCI_REQ_8_1_1_ASSIGN_UNIQUE_IDS",
|
|
155
|
+
PCI_REQ_8_1_2_CONTROL_USER_ID_MANAGEMENT = "PCI_REQ_8_1_2_CONTROL_USER_ID_MANAGEMENT",
|
|
156
|
+
PCI_REQ_8_1_3_REVOKE_TERMINATED_USERS = "PCI_REQ_8_1_3_REVOKE_TERMINATED_USERS",
|
|
157
|
+
PCI_REQ_8_1_4_REMOVE_INACTIVE_ACCOUNTS = "PCI_REQ_8_1_4_REMOVE_INACTIVE_ACCOUNTS",
|
|
158
|
+
PCI_REQ_8_1_5_MANAGE_THIRD_PARTY_IDS = "PCI_REQ_8_1_5_MANAGE_THIRD_PARTY_IDS",
|
|
159
|
+
PCI_REQ_8_1_6_LIMIT_REPEATED_ACCESS_ATTEMPTS = "PCI_REQ_8_1_6_LIMIT_REPEATED_ACCESS_ATTEMPTS",
|
|
160
|
+
PCI_REQ_8_1_7_ACCOUNT_LOCKOUT_DURATION = "PCI_REQ_8_1_7_ACCOUNT_LOCKOUT_DURATION",
|
|
161
|
+
PCI_REQ_8_1_8_SESSION_RE_AUTH_IDLE = "PCI_REQ_8_1_8_SESSION_RE_AUTH_IDLE",
|
|
162
|
+
PCI_REQ_8_2_1_ENCRYPT_CREDENTIALS = "PCI_REQ_8_2_1_ENCRYPT_CREDENTIALS",
|
|
163
|
+
PCI_REQ_8_2_2_VERIFY_IDENTITY_BEFORE_CHANGE = "PCI_REQ_8_2_2_VERIFY_IDENTITY_BEFORE_CHANGE",
|
|
164
|
+
PCI_REQ_8_2_3_PASSWORD_STRENGTH = "PCI_REQ_8_2_3_PASSWORD_STRENGTH",
|
|
165
|
+
PCI_REQ_8_2_4_PASSWORD_EXPIRATION = "PCI_REQ_8_2_4_PASSWORD_EXPIRATION",
|
|
166
|
+
PCI_REQ_8_2_5_PASSWORD_REUSE = "PCI_REQ_8_2_5_PASSWORD_REUSE",
|
|
167
|
+
PCI_REQ_8_2_6_UNIQUE_INITIAL_PASSWORD = "PCI_REQ_8_2_6_UNIQUE_INITIAL_PASSWORD",
|
|
168
|
+
PCI_REQ_8_3_SECURE_REMOTE_ACCESS_MFA = "PCI_REQ_8_3_SECURE_REMOTE_ACCESS_MFA",
|
|
169
|
+
PCI_REQ_8_4_DOCUMENT_AUTH_POLICIES = "PCI_REQ_8_4_DOCUMENT_AUTH_POLICIES",
|
|
170
|
+
PCI_REQ_8_5_1_UNIQUE_CREDS_SERVICE_PROVIDERS = "PCI_REQ_8_5_1_UNIQUE_CREDS_SERVICE_PROVIDERS",
|
|
171
|
+
PCI_REQ_8_6_AUTH_MECHANISMS_INDIVIDUAL = "PCI_REQ_8_6_AUTH_MECHANISMS_INDIVIDUAL",
|
|
172
|
+
PCI_REQ_8_7_RESTRICT_DB_ACCESS = "PCI_REQ_8_7_RESTRICT_DB_ACCESS",
|
|
173
|
+
PCI_REQ_8_8_DOCUMENT_AUTH_POLICIES_COMM = "PCI_REQ_8_8_DOCUMENT_AUTH_POLICIES_COMM",
|
|
174
|
+
PCI_REQ_9_RESTRICT_PHYSICAL_ACCESS = "PCI_REQ_9_RESTRICT_PHYSICAL_ACCESS",
|
|
175
|
+
PCI_REQ_10_4_SYNCHRONIZE_CLOCKS = "PCI_REQ_10_4_SYNCHRONIZE_CLOCKS",
|
|
176
|
+
PCI_REQ_10_5_SECURE_AUDIT_TRAILS = "PCI_REQ_10_5_SECURE_AUDIT_TRAILS",
|
|
177
|
+
PCI_REQ_10_6_REVIEW_LOGS = "PCI_REQ_10_6_REVIEW_LOGS",
|
|
178
|
+
PCI_REQ_10_7_RETAIN_AUDIT_TRAIL = "PCI_REQ_10_7_RETAIN_AUDIT_TRAIL",
|
|
179
|
+
PCI_REQ_10_9_DOCUMENT_ACCESS_MONITORING = "PCI_REQ_10_9_DOCUMENT_ACCESS_MONITORING",
|
|
180
|
+
PCI_REQ_11_REGULAR_TESTING = "PCI_REQ_11_REGULAR_TESTING",
|
|
181
|
+
PCI_REQ_12_INFO_SEC_POLICY = "PCI_REQ_12_INFO_SEC_POLICY",
|
|
182
|
+
SANS_TOP_25_CWE_79_XSS = "SANS_TOP_25_CWE_79_XSS",
|
|
183
|
+
SANS_TOP_25_CWE_787_OOB_WRITE = "SANS_TOP_25_CWE_787_OOB_WRITE",
|
|
184
|
+
SANS_TOP_25_CWE_89_SQLI = "SANS_TOP_25_CWE_89_SQLI",
|
|
185
|
+
SANS_TOP_25_CWE_352_CSRF = "SANS_TOP_25_CWE_352_CSRF",
|
|
186
|
+
SANS_TOP_25_CWE_22_PATH_TRAVERSAL = "SANS_TOP_25_CWE_22_PATH_TRAVERSAL",
|
|
187
|
+
SANS_TOP_25_CWE_125_OOB_READ = "SANS_TOP_25_CWE_125_OOB_READ",
|
|
188
|
+
SANS_TOP_25_CWE_78_OS_COMMAND_INJECTION = "SANS_TOP_25_CWE_78_OS_COMMAND_INJECTION",
|
|
189
|
+
SANS_TOP_25_CWE_416_USE_AFTER_FREE = "SANS_TOP_25_CWE_416_USE_AFTER_FREE",
|
|
190
|
+
SANS_TOP_25_CWE_862_MISSING_AUTHZ = "SANS_TOP_25_CWE_862_MISSING_AUTHZ",
|
|
191
|
+
SANS_TOP_25_CWE_434_UNRESTRICTED_UPLOAD = "SANS_TOP_25_CWE_434_UNRESTRICTED_UPLOAD",
|
|
192
|
+
SANS_TOP_25_CWE_94_CODE_INJECTION = "SANS_TOP_25_CWE_94_CODE_INJECTION",
|
|
193
|
+
SANS_TOP_25_CWE_20_INPUT_VALIDATION = "SANS_TOP_25_CWE_20_INPUT_VALIDATION",
|
|
194
|
+
SANS_TOP_25_CWE_77_COMMAND_INJECTION = "SANS_TOP_25_CWE_77_COMMAND_INJECTION",
|
|
195
|
+
SANS_TOP_25_CWE_287_IMPROPER_AUTH = "SANS_TOP_25_CWE_287_IMPROPER_AUTH",
|
|
196
|
+
SANS_TOP_25_CWE_269_PRIVILEGE_MGMT = "SANS_TOP_25_CWE_269_PRIVILEGE_MGMT",
|
|
197
|
+
SANS_TOP_25_CWE_502_UNTRUSTED_DESER = "SANS_TOP_25_CWE_502_UNTRUSTED_DESER",
|
|
198
|
+
SANS_TOP_25_CWE_200_INFO_EXPOSURE = "SANS_TOP_25_CWE_200_INFO_EXPOSURE",
|
|
199
|
+
SANS_TOP_25_CWE_863_INCORRECT_AUTHZ = "SANS_TOP_25_CWE_863_INCORRECT_AUTHZ",
|
|
200
|
+
SANS_TOP_25_CWE_918_SSRF = "SANS_TOP_25_CWE_918_SSRF",
|
|
201
|
+
SANS_TOP_25_CWE_119_MEMORY_BOUNDS = "SANS_TOP_25_CWE_119_MEMORY_BOUNDS",
|
|
202
|
+
SANS_TOP_25_CWE_476_NULL_DEREF = "SANS_TOP_25_CWE_476_NULL_DEREF",
|
|
203
|
+
SANS_TOP_25_CWE_798_HARDCODED_CREDS = "SANS_TOP_25_CWE_798_HARDCODED_CREDS",
|
|
204
|
+
SANS_TOP_25_CWE_190_INTEGER_OVERFLOW = "SANS_TOP_25_CWE_190_INTEGER_OVERFLOW",
|
|
205
|
+
SANS_TOP_25_CWE_400_RESOURCE_CONSUMPTION = "SANS_TOP_25_CWE_400_RESOURCE_CONSUMPTION",
|
|
206
|
+
SANS_TOP_25_CWE_306_MISSING_AUTH = "SANS_TOP_25_CWE_306_MISSING_AUTH"
|
|
207
|
+
}
|