You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
traverse_ (\t -> t metrics) [validateUnique, validateKnown, validateRequired]
332
+
traverse_ (\t -> t metrics) [validateUnique, validateKnown cvss31, validateRequired cvss31]
333
+
pure metrics
334
+
335
+
cvss20::CVSSDB
336
+
cvss20 =
337
+
CVSSDB
338
+
[ MetricGroup"Base" baseMetrics
339
+
]
340
+
where
341
+
baseMetrics =
342
+
[ MetricInfo
343
+
"Access Vector"
344
+
"AV"
345
+
True
346
+
[ MetricValue"Local" (C'L') 0.395Nothing"A vulnerability exploitable with only local access requires the attacker to have either physical access to the vulnerable system or a local (shell) account."
347
+
, MetricValue"Adjacent Network" (C'A') 0.646Nothing"A vulnerability exploitable with adjacent network access requires the attacker to have access to either the broadcast or collision domain of the vulnerable software."
348
+
, MetricValue"Network" (C'N') 1.0Nothing"A vulnerability exploitable with network access means the vulnerable software is bound to the network stack and the attacker does not require local network access or local access."
, MetricValue"Medium" (C'M') 0.61Nothing"The access conditions are somewhat specialized."
356
+
, MetricValue"Low" (C'L') 0.71Nothing"Specialized access conditions or extenuating circumstances do not exist."
357
+
]
358
+
, MetricInfo
359
+
"Authentication"
360
+
"Au"
361
+
True
362
+
[ MetricValue"Multiple" (C'M') 0.45Nothing"Exploiting the vulnerability requires that the attacker authenticate two or more times, even if the same credentials are used each time."
363
+
, MetricValue"Single" (C'S') 0.56Nothing"The vulnerability requires an attacker to be logged into the system (such as at a command line or via a desktop session or web interface)."
364
+
, MetricValue"None" (C'N') 0.704Nothing"Authentication is not required to exploit the vulnerability."
365
+
]
366
+
, MetricInfo
367
+
"Confidentiality Impact"
368
+
"C"
369
+
True
370
+
[ mkNone "There is no impact to the confidentiality of the system."
371
+
, mkPartial "There is considerable informational disclosure."
372
+
, mkComplete "There is total information disclosure, resulting in all system files being revealed."
373
+
]
374
+
, MetricInfo
375
+
"Integrity Impact"
376
+
"I"
377
+
True
378
+
[ mkNone "There is no impact to the integrity of the system."
379
+
, mkPartial "Modification of some system files or information is possible, but the attacker does not have control over what can be modified, or the scope of what the attacker can affect is limited."
380
+
, mkComplete "There is a total compromise of system integrity."
381
+
]
382
+
, MetricInfo
383
+
"Availability Impact"
384
+
"A"
385
+
True
386
+
[ mkNone "There is no impact to the availability of the system."
387
+
, mkPartial "There is reduced performance or interruptions in resource availability."
388
+
, mkComplete "There is a total shutdown of the affected resource."
0 commit comments