dradis-calculator_cvss 4.11.0 → 4.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -0
  3. data/app/assets/javascripts/dradis/plugins/calculators/cvss/cvss.js +32 -0
  4. data/app/assets/javascripts/dradis/plugins/calculators/cvss/manifests/application.js +16 -5
  5. data/app/assets/javascripts/dradis/plugins/calculators/cvss/manifests/tylium.js +16 -5
  6. data/app/assets/javascripts/dradis/plugins/calculators/cvss/{calculator.js.coffee → v3/calculator.js.coffee} +10 -32
  7. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/calculator.js +168 -0
  8. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/app.js +435 -0
  9. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/cvss_config.js +858 -0
  10. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/cvss_details.js +18 -0
  11. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/cvss_lookup.js +275 -0
  12. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/max_composed.js +35 -0
  13. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/max_severity.js +30 -0
  14. data/app/assets/javascripts/dradis/plugins/calculators/cvss/v4/vendor/metrics.js +42 -0
  15. data/app/assets/stylesheets/dradis/plugins/calculators/cvss/manifests/application.css.scss +2 -1
  16. data/app/assets/stylesheets/dradis/plugins/calculators/cvss/manifests/tylium.scss +1 -2
  17. data/app/controllers/dradis/plugins/calculators/cvss/base_controller.rb +3 -1
  18. data/app/controllers/dradis/plugins/calculators/cvss/issues_controller.rb +35 -9
  19. data/app/models/dradis/plugins/calculators/cvss/v4.rb +89 -0
  20. data/app/views/dradis/plugins/calculators/cvss/_version_menu.html.erb +8 -0
  21. data/app/views/dradis/plugins/calculators/cvss/base/index.html.erb +9 -70
  22. data/app/views/dradis/plugins/calculators/cvss/base/v3/_base.html.erb +123 -0
  23. data/app/views/dradis/plugins/calculators/cvss/base/v3/_environmental.html.erb +192 -0
  24. data/app/views/dradis/plugins/calculators/cvss/base/v3/_index.html.erb +69 -0
  25. data/app/views/dradis/plugins/calculators/cvss/base/v3/_temporal.html.erb +67 -0
  26. data/app/views/dradis/plugins/calculators/cvss/base/v4/_base.html.erb +143 -0
  27. data/app/views/dradis/plugins/calculators/cvss/base/v4/_environmental.html.erb +220 -0
  28. data/app/views/dradis/plugins/calculators/cvss/base/v4/_index.html.erb +82 -0
  29. data/app/views/dradis/plugins/calculators/cvss/base/v4/_supplemental.html.erb +85 -0
  30. data/app/views/dradis/plugins/calculators/cvss/base/v4/_threat.html.erb +19 -0
  31. data/app/views/dradis/plugins/calculators/cvss/issues/_show-content.html.erb +21 -7
  32. data/app/views/dradis/plugins/calculators/cvss/issues/edit/_v3.html.erb +91 -0
  33. data/app/views/dradis/plugins/calculators/cvss/issues/edit/_v4.html.erb +103 -0
  34. data/app/views/dradis/plugins/calculators/cvss/issues/edit.html.erb +3 -93
  35. data/lib/dradis/plugins/calculators/cvss/gem_version.rb +1 -1
  36. metadata +30 -13
  37. data/app/assets/stylesheets/dradis/plugins/calculators/cvss/_version_switch.scss +0 -26
  38. data/app/views/dradis/plugins/calculators/cvss/_version_switch.html.erb +0 -10
  39. data/app/views/dradis/plugins/calculators/cvss/base/_base.html.erb +0 -123
  40. data/app/views/dradis/plugins/calculators/cvss/base/_environmental.html.erb +0 -192
  41. data/app/views/dradis/plugins/calculators/cvss/base/_temporal.html.erb +0 -67
  42. /data/app/assets/javascripts/dradis/plugins/calculators/cvss/{vendor → v3/vendor}/cvsscalc30.js +0 -0
  43. /data/app/assets/javascripts/dradis/plugins/calculators/cvss/{vendor → v3/vendor}/cvsscalc30_helptext.js +0 -0
  44. /data/app/assets/javascripts/dradis/plugins/calculators/cvss/{vendor → v3/vendor}/cvsscalc31.js +0 -0
  45. /data/app/assets/javascripts/dradis/plugins/calculators/cvss/{vendor → v3/vendor}/cvsscalc31_helptext.js +0 -0
@@ -0,0 +1,858 @@
1
+ // Copyright FIRST, Red Hat, and contributors
2
+ // SPDX-License-Identifier: BSD-2-Clause
3
+
4
+ cvss40Config = {
5
+ 'Base Metrics': {
6
+ fill: 'supplier',
7
+ metric_groups: {
8
+ 'Exploitability Metrics': {
9
+ 'Attack Vector (AV)': {
10
+ tooltip:
11
+ 'This metric reflects the context by which vulnerability exploitation is possible. This metric value (and consequently the resulting severity) will be larger the more remote (logically, and physically) an attacker can be in order to exploit the vulnerable system. The assumption is that the number of potential attackers for a vulnerability that could be exploited from across a network is larger than the number of potential attackers that could exploit a vulnerability requiring physical access to a device, and therefore warrants a greater severity.',
12
+ short: 'AV',
13
+ options: {
14
+ 'Network (N)': {
15
+ tooltip:
16
+ 'The vulnerable system is bound to the network stack and the set of possible attackers extends beyond the other options listed below, up to and including the entire Internet. Such a vulnerability is often termed “remotely exploitable” and can be thought of as an attack being exploitable at the protocol level one or more network hops away (e.g., across one or more routers).',
17
+ value: 'N',
18
+ },
19
+ 'Adjacent (A)': {
20
+ tooltip:
21
+ 'The vulnerable system is bound to a protocol stack, but the attack is limited at the protocol level to a logically adjacent topology. This can mean an attack must be launched from the same shared proximity (e.g., Bluetooth, NFC, or IEEE 802.11) or logical network (e.g., local IP subnet), or from within a secure or otherwise limited administrative domain (e.g., MPLS, secure VPN within an administrative network zone).',
22
+ value: 'A',
23
+ },
24
+ 'Local (L)': {
25
+ tooltip:
26
+ 'The vulnerable system is not bound to the network stack and the attacker’s path is via read/write/execute capabilities. Either the attacker exploits the vulnerability by accessing the target system locally (e.g., keyboard, console), or through terminal emulation (e.g., SSH); or the attacker relies on User Interaction by another person to perform actions required to exploit the vulnerability (e.g., using social engineering techniques to trick a legitimate user into opening a malicious document).',
27
+ value: 'L',
28
+ },
29
+ 'Physical (P)': {
30
+ tooltip:
31
+ 'The attack requires the attacker to physically touch or manipulate the vulnerable system. Physical interaction may be brief (e.g., evil maid attack) or persistent.',
32
+ value: 'P',
33
+ },
34
+ },
35
+ selected: 'N',
36
+ },
37
+ 'Attack Complexity (AC)': {
38
+ tooltip:
39
+ 'This metric captures measurable actions that must be taken by the attacker to actively evade or circumvent existing built-in security-enhancing conditions in order to obtain a working exploit. These are conditions whose primary purpose is to increase security and/or increase exploit engineering complexity. A vulnerability exploitable without a target-specific variable has a lower complexity than a vulnerability that would require non-trivial customization. This metric is meant to capture security mechanisms utilized by the vulnerable system.',
40
+ short: 'AC',
41
+ options: {
42
+ 'Low (L)': {
43
+ tooltip:
44
+ 'The attacker must take no measurable action to exploit the vulnerability. The attack requires no target-specific circumvention to exploit the vulnerability. An attacker can expect repeatable success against the vulnerable system.',
45
+ value: 'L',
46
+ },
47
+ 'High (H)': {
48
+ tooltip:
49
+ 'The successful attack depends on the evasion or circumvention of security-enhancing techniques in place that would otherwise hinder the attack. These include: Evasion of exploit mitigation techniques, for example, circumvention of address space randomization (ASLR) or data execution prevention (DEP) must be performed for the attack to be successful; Obtaining target-specific secrets. The attacker must gather some target-specific secret before the attack can be successful. A secret is any piece of information that cannot be obtained through any amount of reconnaissance. To obtain the secret the attacker must perform additional attacks or break otherwise secure measures (e.g. knowledge of a secret key may be needed to break a crypto channel). This operation must be performed for each attacked target.',
50
+ value: 'H',
51
+ },
52
+ },
53
+ selected: 'L',
54
+ },
55
+ 'Attack Requirements (AT)': {
56
+ tooltip:
57
+ 'This metric captures the prerequisite deployment and execution conditions or variables of the vulnerable system that enable the attack. These differ from security-enhancing techniques/technologies (ref Attack Complexity) as the primary purpose of these conditions is not to explicitly mitigate attacks, but rather, emerge naturally as a consequence of the deployment and execution of the vulnerable system.',
58
+ short: 'AT',
59
+ options: {
60
+ 'None (N)': {
61
+ tooltip:
62
+ 'The successful attack does not depend on the deployment and execution conditions of the vulnerable system. The attacker can expect to be able to reach the vulnerability and execute the exploit under all or most instances of the vulnerability.',
63
+ value: 'N',
64
+ },
65
+ 'Present (P)': {
66
+ tooltip:
67
+ 'The successful attack depends on the presence of specific deployment and execution conditions of the vulnerable system that enable the attack. These include: a race condition must be won to successfully exploit the vulnerability (the successfulness of the attack is conditioned on execution conditions that are not under full control of the attacker, or the attack may need to be launched multiple times against a single target before being successful); the attacker must inject themselves into the logical network path between the target and the resource requested by the victim (e.g. vulnerabilities requiring an on-path attacker).',
68
+ value: 'P',
69
+ },
70
+ },
71
+ selected: 'N',
72
+ },
73
+ 'Privileges Required (PR)': {
74
+ tooltip:
75
+ 'This metric describes the level of privileges an attacker must possess prior to successfully exploiting the vulnerability. The method by which the attacker obtains privileged credentials prior to the attack (e.g., free trial accounts), is outside the scope of this metric. Generally, self-service provisioned accounts do not constitute a privilege requirement if the attacker can grant themselves privileges as part of the attack.',
76
+ short: 'PR',
77
+ options: {
78
+ 'None (N)': {
79
+ tooltip:
80
+ 'The attacker is unauthorized prior to attack, and therefore does not require any access to settings or files of the vulnerable system to carry out an attack.',
81
+ value: 'N',
82
+ },
83
+ 'Low (L)': {
84
+ tooltip:
85
+ 'The attacker requires privileges that provide basic capabilities that are typically limited to settings and resources owned by a single low-privileged user. Alternatively, an attacker with Low privileges has the ability to access only non-sensitive resources.',
86
+ value: 'L',
87
+ },
88
+ 'High (H)': {
89
+ tooltip:
90
+ 'The attacker requires privileges that provide significant (e.g., administrative) control over the vulnerable system allowing full access to the vulnerable system’s settings and files.',
91
+ value: 'H',
92
+ },
93
+ },
94
+ selected: 'N',
95
+ },
96
+ 'User Interaction (UI)': {
97
+ tooltip:
98
+ 'This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable system. This metric determines whether the vulnerability can be exploited solely at the will of the attacker, or whether a separate user (or user-initiated process) must participate in some manner.',
99
+ short: 'UI',
100
+ options: {
101
+ 'None (N)': {
102
+ tooltip:
103
+ 'The vulnerable system can be exploited without interaction from any human user, other than the attacker.',
104
+ value: 'N',
105
+ },
106
+ 'Passive (P)': {
107
+ tooltip:
108
+ 'Successful exploitation of this vulnerability requires limited interaction by the targeted user with the vulnerable system and the attacker’s payload. These interactions would be considered involuntary and do not require that the user actively subvert protections built into the vulnerable system.',
109
+ value: 'P',
110
+ },
111
+ 'Active (A)': {
112
+ tooltip:
113
+ 'Successful exploitation of this vulnerability requires a targeted user to perform specific, conscious interactions with the vulnerable system and the attacker’s payload, or the user’s interactions would actively subvert protection mechanisms which would lead to exploitation of the vulnerability.',
114
+ value: 'A',
115
+ },
116
+ },
117
+ selected: 'N',
118
+ },
119
+ },
120
+ 'Vulnerable System Impact Metrics': {
121
+ 'Confidentiality (VC)': {
122
+ tooltip:
123
+ 'This metric measures the impact to the confidentiality of the information managed by the VULNERABLE SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.',
124
+ short: 'VC',
125
+ options: {
126
+ 'High (H)': {
127
+ tooltip:
128
+ "There is a total loss of confidentiality, resulting in all information within the Vulnerable System being divulged to the attacker. Alternatively, access to only some restricted information is obtained, but the disclosed information presents a direct, serious impact. For example, an attacker steals the administrator's password, or private encryption keys of a web server.",
129
+ value: 'H',
130
+ },
131
+ 'Low (L)': {
132
+ tooltip:
133
+ 'There is some loss of confidentiality. Access to some restricted information is obtained, but the attacker does not have control over what information is obtained, or the amount or kind of loss is limited. The information disclosure does not cause a direct, serious loss to the Vulnerable System.',
134
+ value: 'L',
135
+ },
136
+ 'None (N)': {
137
+ tooltip:
138
+ 'There is no loss of confidentiality within the Vulnerable System.',
139
+ value: 'N',
140
+ },
141
+ },
142
+ selected: 'N',
143
+ },
144
+ 'Integrity (VI)': {
145
+ tooltip:
146
+ 'This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the VULNERABLE SYSTEM is impacted when an attacker makes unauthorized modification of system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).',
147
+ short: 'VI',
148
+ options: {
149
+ 'High (H)': {
150
+ tooltip:
151
+ 'There is a total loss of integrity, or a complete loss of protection. For example, the attacker is able to modify any/all files protected by the vulnerable system. Alternatively, only some files can be modified, but malicious modification would present a direct, serious consequence to the vulnerable system.',
152
+ value: 'H',
153
+ },
154
+ 'Low (L)': {
155
+ tooltip:
156
+ 'Modification of data is possible, but the attacker does not have control over the consequence of a modification, or the amount of modification is limited. The data modification does not have a direct, serious impact to the Vulnerable System.',
157
+ value: 'L',
158
+ },
159
+ 'None (N)': {
160
+ tooltip:
161
+ 'There is no loss of integrity within the Vulnerable System.',
162
+ value: 'N',
163
+ },
164
+ },
165
+ selected: 'N',
166
+ },
167
+ 'Availability (VA)': {
168
+ tooltip:
169
+ 'This metric measures the impact to the availability of the VULNERABLE SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.',
170
+ short: 'VA',
171
+ options: {
172
+ 'High (H)': {
173
+ tooltip:
174
+ 'There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the Vulnerable System; this loss is either sustained (while the attacker continues to deliver the attack) or persistent (the condition persists even after the attack has completed). Alternatively, the attacker has the ability to deny some availability, but the loss of availability presents a direct, serious consequence to the Vulnerable System (e.g., the attacker cannot disrupt existing connections, but can prevent new connections; the attacker can repeatedly exploit a vulnerability that, in each instance of a successful attack, leaks a only small amount of memory, but after repeated exploitation causes a service to become completely unavailable).',
175
+ value: 'H',
176
+ },
177
+ 'Low (L)': {
178
+ tooltip:
179
+ 'Performance is reduced or there are interruptions in resource availability. Even if repeated exploitation of the vulnerability is possible, the attacker does not have the ability to completely deny service to legitimate users. The resources in the Vulnerable System are either partially available all of the time, or fully available only some of the time, but overall there is no direct, serious consequence to the Vulnerable System.',
180
+ value: 'L',
181
+ },
182
+ 'None (N)': {
183
+ tooltip:
184
+ 'There is no impact to availability within the Vulnerable System.',
185
+ value: 'N',
186
+ },
187
+ },
188
+ selected: 'N',
189
+ },
190
+ },
191
+ 'Subsequent System Impact Metrics': {
192
+ 'Confidentiality (SC)': {
193
+ tooltip:
194
+ 'This metric measures the impact to the confidentiality of the information managed by the SUBSEQUENT SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.',
195
+ short: 'SC',
196
+ options: {
197
+ 'High (H)': {
198
+ tooltip:
199
+ "There is a total loss of confidentiality, resulting in all resources within the Subsequent System being divulged to the attacker. Alternatively, access to only some restricted information is obtained, but the disclosed information presents a direct, serious impact. For example, an attacker steals the administrator's password, or private encryption keys of a web server.",
200
+ value: 'H',
201
+ },
202
+ 'Low (L)': {
203
+ tooltip:
204
+ 'There is some loss of confidentiality. Access to some restricted information is obtained, but the attacker does not have control over what information is obtained, or the amount or kind of loss is limited. The information disclosure does not cause a direct, serious loss to the Subsequent System.',
205
+ value: 'L',
206
+ },
207
+ 'None (N)': {
208
+ tooltip:
209
+ 'There is no loss of confidentiality within the Subsequent System or all confidentiality impact is constrained to the Vulnerable System.',
210
+ value: 'N',
211
+ },
212
+ },
213
+ selected: 'N',
214
+ },
215
+ 'Integrity (SI)': {
216
+ tooltip:
217
+ 'This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the SUBSEQUENT SYSTEM is impacted when an attacker makes unauthorized modification of system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).',
218
+ short: 'SI',
219
+ options: {
220
+ 'High (H)': {
221
+ tooltip:
222
+ 'There is a total loss of integrity, or a complete loss of protection. For example, the attacker is able to modify any/all files protected by the Subsequent System. Alternatively, only some files can be modified, but malicious modification would present a direct, serious consequence to the Subsequent System.',
223
+ value: 'H',
224
+ },
225
+ 'Low (L)': {
226
+ tooltip:
227
+ 'Modification of data is possible, but the attacker does not have control over the consequence of a modification, or the amount of modification is limited. The data modification does not have a direct, serious impact to the Subsequent System.',
228
+ value: 'L',
229
+ },
230
+ 'None (N)': {
231
+ tooltip:
232
+ 'There is no loss of integrity within the Subsequent System or all integrity impact is constrained to the Vulnerable System.',
233
+ value: 'N',
234
+ },
235
+ },
236
+ selected: 'N',
237
+ },
238
+ 'Availability (SA)': {
239
+ tooltip:
240
+ 'This metric measures the impact to the availability of the SUBSEQUENT SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.',
241
+ short: 'SA',
242
+ options: {
243
+ 'High (H)': {
244
+ tooltip:
245
+ 'There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the Subsequent System; this loss is either sustained (while the attacker continues to deliver the attack) or persistent (the condition persists even after the attack has completed). Alternatively, the attacker has the ability to deny some availability, but the loss of availability presents a direct, serious consequence to the Subsequent System (e.g., the attacker cannot disrupt existing connections, but can prevent new connections; the attacker can repeatedly exploit a vulnerability that, in each instance of a successful attack, leaks a only small amount of memory, but after repeated exploitation causes a service to become completely unavailable).',
246
+ value: 'H',
247
+ },
248
+ 'Low (L)': {
249
+ tooltip:
250
+ 'Performance is reduced or there are interruptions in resource availability. Even if repeated exploitation of the vulnerability is possible, the attacker does not have the ability to completely deny service to legitimate users. The resources in the Subsequent System are either partially available all of the time, or fully available only some of the time, but overall there is no direct, serious consequence to the Subsequent System.',
251
+ value: 'L',
252
+ },
253
+ 'None (N)': {
254
+ tooltip:
255
+ 'There is no impact to availability within the Subsequent System or all availability impact is constrained to the Vulnerable System.',
256
+ value: 'N',
257
+ },
258
+ },
259
+ selected: 'N',
260
+ },
261
+ },
262
+ },
263
+ },
264
+ 'Supplemental Metrics': {
265
+ fill: 'supplier',
266
+ metric_groups: {
267
+ none: {
268
+ 'Safety (S)': {
269
+ tooltip:
270
+ 'When a system does have an intended use or fitness of purpose aligned to safety, it is possible that exploiting a vulnerability within that system may have Safety impact which can be represented in the Supplemental Metrics group. Lack of a Safety metric value being supplied does NOT mean that there may not be any Safety-related impacts.',
271
+ short: 'S',
272
+ options: {
273
+ 'Not Defined (X)': {
274
+ tooltip: 'The metric has not been evaluated.',
275
+ value: 'X',
276
+ },
277
+ 'Negligible (N)': {
278
+ tooltip:
279
+ 'Consequences of the vulnerability meet definition of IEC 61508 consequence category "negligible."',
280
+ value: 'N',
281
+ },
282
+ 'Present (P)': {
283
+ tooltip:
284
+ 'Consequences of the vulnerability meet definition of IEC 61508 consequence categories of "marginal," "critical," or "catastrophic."',
285
+ value: 'P',
286
+ },
287
+ },
288
+ selected: 'X',
289
+ },
290
+ 'Automatable (AU)': {
291
+ tooltip:
292
+ 'The “ The “Automatable” metric captures the answer to the question ”Can an attacker automate exploitation events for this vulnerability across multiple targets?” based on steps 1-4 of the kill chain [Hutchins et al., 2011]. These steps are reconnaissance, weaponization, delivery, and exploitation.',
293
+ short: 'AU',
294
+ options: {
295
+ 'Not Defined (X)': {
296
+ tooltip: 'The metric has not been evaluated.',
297
+ value: 'X',
298
+ },
299
+ 'No (N)': {
300
+ tooltip:
301
+ 'Attackers cannot reliably automate all 4 steps of the kill chain for this vulnerability for some reason. These steps are reconnaissance, weaponization, delivery, and exploitation.',
302
+ value: 'N',
303
+ },
304
+ 'Yes (Y)': {
305
+ tooltip:
306
+ 'Attackers can reliably automate all 4 steps of the kill chain. These steps are reconnaissance, weaponization, delivery, and exploitation (e.g., the vulnerability is “wormable”).',
307
+ value: 'Y',
308
+ },
309
+ },
310
+ selected: 'X',
311
+ },
312
+ 'Recovery (R)': {
313
+ tooltip:
314
+ 'Recovery describes the resilience of a system to recover services, in terms of performance and availability, after an attack has been performed.',
315
+ short: 'R',
316
+ options: {
317
+ 'Not Defined (X)': {
318
+ tooltip: 'The metric has not been evaluated.',
319
+ value: 'X',
320
+ },
321
+ 'Automatic (A)': {
322
+ tooltip:
323
+ 'The system recovers services automatically after an attack has been performed.',
324
+ value: 'A',
325
+ },
326
+ 'User (U)': {
327
+ tooltip:
328
+ 'The system requires manual intervention by the user to recover services, after an attack has been performed.',
329
+ value: 'U',
330
+ },
331
+ 'Irrecoverable (I)': {
332
+ tooltip:
333
+ 'The system services are irrecoverable by the user, after an attack has been performed.',
334
+ value: 'I',
335
+ },
336
+ },
337
+ selected: 'X',
338
+ },
339
+ 'Value Density (V)': {
340
+ tooltip:
341
+ 'Value Density describes the resources that the attacker will gain control over with a single exploitation event.',
342
+ short: 'V',
343
+ options: {
344
+ 'Not Defined (X)': {
345
+ tooltip: 'The metric has not been evaluated.',
346
+ value: 'X',
347
+ },
348
+ 'Diffuse (D)': {
349
+ tooltip:
350
+ 'The vulnerable system has limited resources. That is, the resources that the attacker will gain control over with a single exploitation event are relatively small. An example of Diffuse (think: limited) Value Density would be an attack on a single email client vulnerability.',
351
+ value: 'D',
352
+ },
353
+ 'Concentrated (C)': {
354
+ tooltip:
355
+ 'The vulnerable system is rich in resources. Heuristically, such systems are often the direct responsibility of “system operators” rather than users. An example of Concentrated (think: broad) Value Density would be an attack on a central email server.',
356
+ value: 'C',
357
+ },
358
+ },
359
+ selected: 'X',
360
+ },
361
+ 'Vulnerability Response Effort (RE)': {
362
+ tooltip:
363
+ 'The intention of the Vulnerability Response Effort metric is to provide supplemental information on how difficult it is for consumers to provide an initial response to the impact of vulnerabilities for deployed products and services in their infrastructure. The consumer can then take this additional information on effort required into consideration when applying mitigations and/or scheduling remediation.',
364
+ short: 'RE',
365
+ options: {
366
+ 'Not Defined (X)': {
367
+ tooltip: 'The metric has not been evaluated.',
368
+ value: 'X',
369
+ },
370
+ 'Low (L)': {
371
+ tooltip:
372
+ 'The effort required to respond to a vulnerability is low/trivial. Examples include: communication on better documentation, configuration workarounds, or guidance from the vendor that does not require an immediate update, upgrade, or replacement by the consuming entity, such as firewall filter configuration.',
373
+ value: 'L',
374
+ },
375
+ 'Moderate (M)': {
376
+ tooltip:
377
+ 'The actions required to respond to a vulnerability require some effort on behalf of the consumer and could cause minimal service impact to implement. Examples include: simple remote update, disabling of a subsystem, or a low-touch software upgrade such as a driver update.',
378
+ value: 'M',
379
+ },
380
+ 'High (H)': {
381
+ tooltip:
382
+ 'The actions required to respond to a vulnerability are significant and/or difficult, and may possibly lead to an extended, scheduled service impact. This would need to be considered for scheduling purposes including honoring any embargo on deployment of the selected response. Alternatively, response to the vulnerability in the field is not possible remotely. The only resolution to the vulnerability involves physical replacement (e.g. units deployed would have to be recalled for a depot level repair or replacement). Examples include: a highly privileged driver update, microcode or UEFI BIOS updates, or software upgrades requiring careful analysis and understanding of any potential infrastructure impact before implementation. A UEFI BIOS update that impacts Trusted Platform Module (TPM) attestation without impacting disk encryption software such as Bit locker is a good recent example. Irreparable failures such as non-bootable flash subsystems, failed disks or solid-state drives (SSD), bad memory modules, network devices, or other non-recoverable under warranty hardware, should also be scored as having a High effort.',
383
+ value: 'H',
384
+ },
385
+ },
386
+ selected: 'X',
387
+ },
388
+ 'Provider Urgency (U)': {
389
+ tooltip:
390
+ 'To facilitate a standardized method to incorporate additional provider-supplied assessment, an optional “pass-through” Supplemental Metric called Provider Urgency is available. Note: While any assessment provider along the product supply chain may provide a Provider Urgency rating. The Penultimate Product Provider (PPP) is best positioned to provide a direct assessment of Provider Urgency.',
391
+ short: 'U',
392
+ options: {
393
+ 'Not Defined (X)': {
394
+ tooltip: 'The metric has not been evaluated.',
395
+ value: 'X',
396
+ },
397
+ Clear: {
398
+ tooltip:
399
+ 'Provider has assessed the impact of this vulnerability as having no urgency (Informational).',
400
+ value: 'Clear',
401
+ },
402
+ Green: {
403
+ tooltip:
404
+ 'Provider has assessed the impact of this vulnerability as having a reduced urgency.',
405
+ value: 'Green',
406
+ },
407
+ Amber: {
408
+ tooltip:
409
+ 'Provider has assessed the impact of this vulnerability as having a moderate urgency.',
410
+ value: 'Amber',
411
+ },
412
+ Red: {
413
+ tooltip:
414
+ 'Provider has assessed the impact of this vulnerability as having the highest urgency.',
415
+ value: 'Red',
416
+ },
417
+ },
418
+ selected: 'X',
419
+ },
420
+ },
421
+ },
422
+ },
423
+ 'Environmental (Modified Base Metrics)': {
424
+ fill: 'consumer',
425
+ metric_groups: {
426
+ 'Exploitability Metrics': {
427
+ 'Attack Vector (MAV)': {
428
+ tooltip:
429
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric reflects the context by which vulnerability exploitation is possible. This metric value (and consequently the resulting severity) will be larger the more remote (logically, and physically) an attacker can be in order to exploit the vulnerable system. The assumption is that the number of potential attackers for a vulnerability that could be exploited from across a network is larger than the number of potential attackers that could exploit a vulnerability requiring physical access to a device, and therefore warrants a greater severity.',
430
+ short: 'MAV',
431
+ options: {
432
+ 'Not Defined (X)': {
433
+ tooltip: 'The metric has not been evaluated.',
434
+ value: 'X',
435
+ },
436
+ 'Network (N)': {
437
+ tooltip:
438
+ 'This metric values has the same definition as the Base Metric value defined above.',
439
+ value: 'N',
440
+ },
441
+ 'Adjacent (A)': {
442
+ tooltip:
443
+ 'This metric values has the same definition as the Base Metric value defined above.',
444
+ value: 'A',
445
+ },
446
+ 'Local (L)': {
447
+ tooltip:
448
+ 'This metric values has the same definition as the Base Metric value defined above.',
449
+ value: 'L',
450
+ },
451
+ 'Physical (P)': {
452
+ tooltip:
453
+ 'This metric values has the same definition as the Base Metric value defined above.',
454
+ value: 'P',
455
+ },
456
+ },
457
+ selected: 'X',
458
+ },
459
+ 'Attack Complexity (MAC)': {
460
+ tooltip:
461
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric captures measurable actions that must be taken by the attacker to actively evade or circumvent existing built-in security-enhancing conditions in order to obtain a working exploit. These are conditions whose primary purpose is to increase security and/or increase exploit engineering complexity. A vulnerability exploitable without a target-specific variable has a lower complexity than a vulnerability that would require non-trivial customization. This metric is meant to capture security mechanisms utilized by the vulnerable system.',
462
+ short: 'MAC',
463
+ options: {
464
+ 'Not Defined (X)': {
465
+ tooltip: 'The metric has not been evaluated.',
466
+ value: 'X',
467
+ },
468
+ 'Low (L)': {
469
+ tooltip:
470
+ 'This metric values has the same definition as the Base Metric value defined above.',
471
+ value: 'L',
472
+ },
473
+ 'High (H)': {
474
+ tooltip:
475
+ 'This metric values has the same definition as the Base Metric value defined above.',
476
+ value: 'H',
477
+ },
478
+ },
479
+ selected: 'X',
480
+ },
481
+ 'Attack Requirements (MAT)': {
482
+ tooltip:
483
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric captures the prerequisite deployment and execution conditions or variables of the vulnerable system that enable the attack. These differ from security-enhancing techniques/technologies (ref Attack Complexity) as the primary purpose of these conditions is not to explicitly mitigate attacks, but rather, emerge naturally as a consequence of the deployment and execution of the vulnerable system.',
484
+ short: 'MAT',
485
+ options: {
486
+ 'Not Defined (X)': {
487
+ tooltip: 'The metric has not been evaluated.',
488
+ value: 'X',
489
+ },
490
+ 'None (N)': {
491
+ tooltip:
492
+ 'This metric values has the same definition as the Base Metric value defined above.',
493
+ value: 'N',
494
+ },
495
+ 'Present (P)': {
496
+ tooltip:
497
+ 'This metric values has the same definition as the Base Metric value defined above.',
498
+ value: 'P',
499
+ },
500
+ },
501
+ selected: 'X',
502
+ },
503
+ 'Privileges Required (MPR)': {
504
+ tooltip:
505
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric describes the level of privileges an attacker must possess prior to successfully exploiting the vulnerability. The method by which the attacker obtains privileged credentials prior to the attack (e.g., free trial accounts), is outside the scope of this metric. Generally, self-service provisioned accounts do not constitute a privilege requirement if the attacker can grant themselves privileges as part of the attack.',
506
+ short: 'MPR',
507
+ options: {
508
+ 'Not Defined (X)': {
509
+ tooltip: 'The metric has not been evaluated.',
510
+ value: 'X',
511
+ },
512
+ 'None (N)': {
513
+ tooltip:
514
+ 'This metric values has the same definition as the Base Metric value defined above.',
515
+ value: 'N',
516
+ },
517
+ 'Low (L)': {
518
+ tooltip:
519
+ 'This metric values has the same definition as the Base Metric value defined above.',
520
+ value: 'L',
521
+ },
522
+ 'High (H)': {
523
+ tooltip:
524
+ 'This metric values has the same definition as the Base Metric value defined above.',
525
+ value: 'H',
526
+ },
527
+ },
528
+ selected: 'X',
529
+ },
530
+ 'User Interaction (MUI)': {
531
+ tooltip:
532
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable system. This metric determines whether the vulnerability can be exploited solely at the will of the attacker, or whether a separate user (or user-initiated process) must participate in some manner.',
533
+ short: 'MUI',
534
+ options: {
535
+ 'Not Defined (X)': {
536
+ tooltip: 'The metric has not been evaluated.',
537
+ value: 'X',
538
+ },
539
+ 'None (N)': {
540
+ tooltip:
541
+ 'This metric values has the same definition as the Base Metric value defined above.',
542
+ value: 'N',
543
+ },
544
+ 'Passive (P)': {
545
+ tooltip:
546
+ 'This metric values has the same definition as the Base Metric value defined above.',
547
+ value: 'P',
548
+ },
549
+ 'Active (A)': {
550
+ tooltip:
551
+ 'This metric values has the same definition as the Base Metric value defined above.',
552
+ value: 'A',
553
+ },
554
+ },
555
+ selected: 'X',
556
+ },
557
+ },
558
+ 'Vulnerable System Impact Metrics': {
559
+ 'Confidentiality (MVC)': {
560
+ tooltip:
561
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric measures the impact to the confidentiality of the information managed by the VULNERABLE SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.',
562
+ short: 'MVC',
563
+ options: {
564
+ 'Not Defined (X)': {
565
+ tooltip: 'The metric has not been evaluated.',
566
+ value: 'X',
567
+ },
568
+ 'High (H)': {
569
+ tooltip:
570
+ 'This metric values has the same definition as the Base Metric value defined above.',
571
+ value: 'H',
572
+ },
573
+ 'Low (L)': {
574
+ tooltip:
575
+ 'This metric values has the same definition as the Base Metric value defined above.',
576
+ value: 'L',
577
+ },
578
+ 'None (N)': {
579
+ tooltip:
580
+ 'This metric values has the same definition as the Base Metric value defined above.',
581
+ value: 'N',
582
+ },
583
+ },
584
+ selected: 'X',
585
+ },
586
+ 'Integrity (MVI)': {
587
+ tooltip:
588
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the VULNERABLE SYSTEM is impacted when an attacker makes unauthorized modification of system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).',
589
+ short: 'MVI',
590
+ options: {
591
+ 'Not Defined (X)': {
592
+ tooltip: 'The metric has not been evaluated.',
593
+ value: 'X',
594
+ },
595
+ 'High (H)': {
596
+ tooltip:
597
+ 'This metric values has the same definition as the Base Metric value defined above.',
598
+ value: 'H',
599
+ },
600
+ 'Low (L)': {
601
+ tooltip:
602
+ 'This metric values has the same definition as the Base Metric value defined above.',
603
+ value: 'L',
604
+ },
605
+ 'None (N)': {
606
+ tooltip:
607
+ 'This metric values has the same definition as the Base Metric value defined above.',
608
+ value: 'N',
609
+ },
610
+ },
611
+ selected: 'X',
612
+ },
613
+ 'Availability (MVA)': {
614
+ tooltip:
615
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric measures the impact to the availability of the VULNERABLE SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.',
616
+ short: 'MVA',
617
+ options: {
618
+ 'Not Defined (X)': {
619
+ tooltip: 'The metric has not been evaluated.',
620
+ value: 'X',
621
+ },
622
+ 'High (H)': {
623
+ tooltip:
624
+ 'This metric values has the same definition as the Base Metric value defined above.',
625
+ value: 'H',
626
+ },
627
+ 'Low (L)': {
628
+ tooltip:
629
+ 'This metric values has the same definition as the Base Metric value defined above.',
630
+ value: 'L',
631
+ },
632
+ 'None (N)': {
633
+ tooltip:
634
+ 'This metric values has the same definition as the Base Metric value defined above.',
635
+ value: 'N',
636
+ },
637
+ },
638
+ selected: 'X',
639
+ },
640
+ },
641
+ 'Subsequent System Impact Metrics': {
642
+ 'Confidentiality (MSC)': {
643
+ tooltip:
644
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric measures the impact to the confidentiality of the information managed by the SUBSEQUENT SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.',
645
+ short: 'MSC',
646
+ options: {
647
+ 'Not Defined (X)': {
648
+ tooltip: 'The metric has not been evaluated.',
649
+ value: 'X',
650
+ },
651
+ '': {},
652
+ 'High (H)': {
653
+ tooltip:
654
+ 'This metric values has the same definition as the Base Metric value defined above.',
655
+ value: 'H',
656
+ },
657
+ 'Low (L)': {
658
+ tooltip:
659
+ 'This metric values has the same definition as the Base Metric value defined above.',
660
+ value: 'L',
661
+ },
662
+ 'Negligible (N)': {
663
+ tooltip:
664
+ 'This metric values has the same definition as the Base Metric value defined above.',
665
+ value: 'N',
666
+ },
667
+ },
668
+ selected: 'X',
669
+ },
670
+ 'Integrity (MSI)': {
671
+ tooltip:
672
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the SUBSEQUENT SYSTEM is impacted when an attacker makes unauthorized modification of system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging). In addition to the logical systems defined for System of Interest, Subsequent Systems can also include impacts to humans.',
673
+ short: 'MSI',
674
+ options: {
675
+ 'Not Defined (X)': {
676
+ tooltip: 'The metric has not been evaluated.',
677
+ value: 'X',
678
+ },
679
+ 'Safety (S)': {
680
+ tooltip:
681
+ 'The exploited vulnerability will result in integrity impacts that could cause serious injury or worse (categories of "Marginal" or worse as described in IEC 61508) to a human actor or participant.',
682
+ value: 'S',
683
+ },
684
+ 'High (H)': {
685
+ tooltip:
686
+ 'This metric values has the same definition as the Base Metric value defined above.',
687
+ value: 'H',
688
+ },
689
+ 'Low (L)': {
690
+ tooltip:
691
+ 'This metric values has the same definition as the Base Metric value defined above.',
692
+ value: 'L',
693
+ },
694
+ 'Negligible (N)': {
695
+ tooltip:
696
+ 'This metric values has the same definition as the Base Metric value defined above.',
697
+ value: 'N',
698
+ },
699
+ },
700
+ selected: 'X',
701
+ },
702
+ 'Availability (MSA)': {
703
+ tooltip:
704
+ 'These metrics enable the consumer analyst to override individual Base metric values based on specific characteristics of a user’s environment. This metric measures the impact to the availability of the SUBSEQUENT SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system. In addition to the logical systems defined for System of Interest, Subsequent Systems can also include impacts to humans.',
705
+ short: 'MSA',
706
+ options: {
707
+ 'Not Defined (X)': {
708
+ tooltip: 'The metric has not been evaluated.',
709
+ value: 'X',
710
+ },
711
+ 'Safety (S)': {
712
+ tooltip:
713
+ 'The exploited vulnerability will result in availability impacts that could cause serious injury or worse (categories of "Marginal" or worse as described in IEC 61508) to a human actor or participant.',
714
+ value: 'S',
715
+ },
716
+ 'High (H)': {
717
+ tooltip:
718
+ 'This metric values has the same definition as the Base Metric value defined above.',
719
+ value: 'H',
720
+ },
721
+ 'Low (L)': {
722
+ tooltip:
723
+ 'This metric values has the same definition as the Base Metric value defined above.',
724
+ value: 'L',
725
+ },
726
+ 'Negligible (N)': {
727
+ tooltip:
728
+ 'This metric values has the same definition as the Base Metric value defined above.',
729
+ value: 'N',
730
+ },
731
+ },
732
+ selected: 'X',
733
+ },
734
+ },
735
+ 'Environmental (Security Requirements)': {
736
+ 'Confidentiality Requirements (CR)': {
737
+ tooltip:
738
+ 'This metric enables the consumer to customize the assessment depending on the importance of the affected IT asset to the analyst’s organization, measured in terms of Confidentiality. That is, if an IT asset supports a business function for which Confidentiality is most important, the analyst can assign a greater value to Confidentiality metrics relative to Integrity and Availability.',
739
+ short: 'CR',
740
+ options: {
741
+ 'Not Defined (X)': {
742
+ tooltip:
743
+ 'Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Environmental Score',
744
+ value: 'X',
745
+ },
746
+ 'High (H)': {
747
+ tooltip:
748
+ 'Loss of Confidentiality is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization.',
749
+ value: 'H',
750
+ },
751
+ 'Medium (M)': {
752
+ tooltip:
753
+ 'Loss of Confidentiality is likely to have a serious adverse effect on the organization or individuals associated with the organization.',
754
+ value: 'M',
755
+ },
756
+ 'Low (L)': {
757
+ tooltip:
758
+ 'Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization.',
759
+ value: 'L',
760
+ },
761
+ },
762
+ selected: 'X',
763
+ },
764
+ 'Integrity Requirements (IR)': {
765
+ tooltip:
766
+ 'This metric enables the consumer to customize the assessment depending on the importance of the affected IT asset to the analyst’s organization, measured in terms of Integrity. That is, if an IT asset supports a business function for which Integrity is most important, the analyst can assign a greater value to Integrity metrics relative to Confidentiality and Availability.',
767
+ short: 'IR',
768
+ options: {
769
+ 'Not Defined (X)': {
770
+ tooltip:
771
+ 'Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Environmental Score',
772
+ value: 'X',
773
+ },
774
+ 'High (H)': {
775
+ tooltip:
776
+ 'Loss of Integrity is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization.',
777
+ value: 'H',
778
+ },
779
+ 'Medium (M)': {
780
+ tooltip:
781
+ 'Loss of Integrity is likely to have a serious adverse effect on the organization or individuals associated with the organization.',
782
+ value: 'M',
783
+ },
784
+ 'Low (L)': {
785
+ tooltip:
786
+ 'Loss of Integrity is likely to have only a limited adverse effect on the organization or individuals associated with the organization.',
787
+ value: 'L',
788
+ },
789
+ },
790
+ selected: 'X',
791
+ },
792
+ 'Availability Requirements (AR)': {
793
+ tooltip:
794
+ 'This metric enables the consumer to customize the assessment depending on the importance of the affected IT asset to the analyst’s organization, measured in terms of Availability. That is, if an IT asset supports a business function for which Availability is most important, the analyst can assign a greater value to Availability metrics relative to Confidentiality and Integrity.',
795
+ short: 'AR',
796
+ options: {
797
+ 'Not Defined (X)': {
798
+ tooltip:
799
+ 'Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Environmental Score',
800
+ value: 'X',
801
+ },
802
+ 'High (H)': {
803
+ tooltip:
804
+ 'Loss of Availability is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization.',
805
+ value: 'H',
806
+ },
807
+ 'Medium (M)': {
808
+ tooltip:
809
+ 'Loss of Availability is likely to have a serious adverse effect on the organization or individuals associated with the organization.',
810
+ value: 'M',
811
+ },
812
+ 'Low (L)': {
813
+ tooltip:
814
+ 'Loss of Availability is likely to have only a limited adverse effect on the organization or individuals associated with the organization.',
815
+ value: 'L',
816
+ },
817
+ },
818
+ selected: 'X',
819
+ },
820
+ },
821
+ },
822
+ },
823
+ 'Threat Metrics': {
824
+ fill: 'consumer',
825
+ metric_groups: {
826
+ none: {
827
+ 'Exploit Maturity (E)': {
828
+ tooltip:
829
+ 'This metric measures the likelihood of the vulnerability being attacked, and is typically based on the current state of exploit techniques, exploit code availability, or active, "in-the-wild" exploitation. It is the responsibility of the CVSS consumer to populate the values of Exploit Maturity (E) based on information regarding the availability of exploitation code/processes and the state of exploitation techniques. This information will be referred to as "threat intelligence".',
830
+ short: 'E',
831
+ options: {
832
+ 'Not Defined (X)': {
833
+ tooltip:
834
+ 'The Exploit Maturity metric is not being used. Reliable threat intelligence is not available to determine Exploit Maturity characteristics.',
835
+ value: 'X',
836
+ },
837
+ 'Attacked (A)': {
838
+ tooltip:
839
+ 'Based on threat intelligence sources either of the following must apply:\n· Attacks targeting this vulnerability (attempted or successful) have been reported\n· Solutions to simplify attempts to exploit the vulnerability are publicly or privately available (such as exploit toolkits)',
840
+ value: 'A',
841
+ },
842
+ 'POC (P)': {
843
+ tooltip:
844
+ 'Based on threat intelligence sources each of the following must apply:\n· Proof-of-concept is publicly available\n· No knowledge of reported attempts to exploit this vulnerability\n· No knowledge of publicly available solutions used to simplify attempts to exploit the vulnerability',
845
+ value: 'P',
846
+ },
847
+ 'Unreported (U)': {
848
+ tooltip:
849
+ 'Based on threat intelligence sources each of the following must apply:\n· No knowledge of publicly available proof-of-concept\n· No knowledge of reported attempts to exploit this vulnerability\n· No knowledge of publicly available solutions used to simplify attempts to exploit the vulnerability',
850
+ value: 'U',
851
+ },
852
+ },
853
+ selected: 'X',
854
+ },
855
+ },
856
+ },
857
+ },
858
+ };