diff --git a/frontend/src/components/WaiverConfigSelect.tsx b/frontend/src/components/WaiverConfigSelect.tsx
index 366f8b8..52525de 100644
--- a/frontend/src/components/WaiverConfigSelect.tsx
+++ b/frontend/src/components/WaiverConfigSelect.tsx
@@ -1,11 +1,12 @@
import React from "react";
-import { Button, Stack } from "@mui/material";
+import { Button, Stack, Tooltip } from "@mui/material";
+import localization from "../utilities/localization";
export interface Props {
/**
* Texts displayed on the buttons
*/
- scoreMetricValues: string[];
+ scoreMetricValues: {title: string, tooltip: string}[];
/**
* The useState Hook to transfer the choice
*/
@@ -27,12 +28,14 @@ export default function WaiverConfigSelect(props: Props) {
return (
{props.scoreMetricValues.map((value) => (
-
+
+
+
))}
);
diff --git a/frontend/src/utilities/ScoreMetricCategoriesData.tsx b/frontend/src/utilities/ScoreMetricCategoriesData.tsx
index fdab2e3..bc557eb 100644
--- a/frontend/src/utilities/ScoreMetricCategoriesData.tsx
+++ b/frontend/src/utilities/ScoreMetricCategoriesData.tsx
@@ -3,7 +3,7 @@ import localization from "./localization";
interface ScoreMetric {
scoreMetricLabel: string;
- scoreMetricValues: string[];
+ scoreMetricValues: {title: string, tooltip: string}[];
selectedScoreMetricValue: {
value: string;
setValue: React.Dispatch>;
@@ -45,17 +45,17 @@ export const getScoreMetricCategoriesData = (
scoreMetrics: [
{
scoreMetricLabel: scoreMetricLabels.exploitCodeMaturity,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.exploitCodeMaturity.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.remediationLevel,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.remediationLevel.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.reportConfidence,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.reportConfidence.notDefined,
comment: "",
}
]
@@ -65,17 +65,17 @@ export const getScoreMetricCategoriesData = (
scoreMetrics: [
{
scoreMetricLabel: scoreMetricLabels.confidentialityRequirement,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.confidentialityRequirement.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.integrityRequirement,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.integrityRequirement.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.availabilityRequirement,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.availabilityRequirement.notDefined,
comment: "",
},
]
@@ -85,42 +85,42 @@ export const getScoreMetricCategoriesData = (
scoreMetrics: [
{
scoreMetricLabel: scoreMetricLabels.modifiedAttackVector,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedAttackVector.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedAttackComplexity,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedAttackComplexity.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedPrivilegesRequired,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedPrivilegesRequired.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedUserInteraction,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedUserInteraction.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedScope,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedScope.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedConfidentiality,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedConfidentiality.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedIntegrity,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedIntegrity.notDefined,
comment: "",
},
{
scoreMetricLabel: scoreMetricLabels.modifiedAvailability,
- selectedScoreMetricValue: scoreMetricValueLabels.notDefined,
+ selectedScoreMetricValue: scoreMetricValueLabels.modifiedAvailability.notDefined,
comment: "",
},
]
@@ -155,84 +155,108 @@ export const getScoreMetricCategoriesData = (
return scoreMetricCategories;
};
-const getScoreMetricValues = (scoreMetricLabel: string): string[] => {
+const getScoreMetricValues = (scoreMetricLabel: string): {title: string, tooltip: string}[] => {
const scoreMetricLabels = localization.ReportDetailPage.waiverConfig.main.scoreMetrics;
const scoreMetricValueLabels = localization.ReportDetailPage.waiverConfig.main.scoreMetricValues;
switch (scoreMetricLabel) {
case scoreMetricLabels.exploitCodeMaturity:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.unproven,
- scoreMetricValueLabels.proofOfConcept,
- scoreMetricValueLabels.functional,
- scoreMetricValueLabels.high,
+ scoreMetricValueLabels.exploitCodeMaturity.notDefined,
+ scoreMetricValueLabels.exploitCodeMaturity.unproven,
+ scoreMetricValueLabels.exploitCodeMaturity.proofOfConcept,
+ scoreMetricValueLabels.exploitCodeMaturity.functional,
+ scoreMetricValueLabels.exploitCodeMaturity.high,
];
case scoreMetricLabels.remediationLevel:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.officialFix,
- scoreMetricValueLabels.temporaryFix,
- scoreMetricValueLabels.workaround,
- scoreMetricValueLabels.unavailable,
+ scoreMetricValueLabels.remediationLevel.notDefined,
+ scoreMetricValueLabels.remediationLevel.officialFix,
+ scoreMetricValueLabels.remediationLevel.temporaryFix,
+ scoreMetricValueLabels.remediationLevel.workaround,
+ scoreMetricValueLabels.remediationLevel.unavailable,
];
case scoreMetricLabels.reportConfidence:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.unknown,
- scoreMetricValueLabels.reasonable,
- scoreMetricValueLabels.confirmed,
+ scoreMetricValueLabels.reportConfidence.notDefined,
+ scoreMetricValueLabels.reportConfidence.unknown,
+ scoreMetricValueLabels.reportConfidence.reasonable,
+ scoreMetricValueLabels.reportConfidence.confirmed,
];
case scoreMetricLabels.confidentialityRequirement:
+ return [
+ scoreMetricValueLabels.confidentialityRequirement.notDefined,
+ scoreMetricValueLabels.confidentialityRequirement.low,
+ scoreMetricValueLabels.confidentialityRequirement.medium,
+ scoreMetricValueLabels.confidentialityRequirement.high,
+ ];
case scoreMetricLabels.integrityRequirement:
+ return [
+ scoreMetricValueLabels.integrityRequirement.notDefined,
+ scoreMetricValueLabels.integrityRequirement.low,
+ scoreMetricValueLabels.integrityRequirement.medium,
+ scoreMetricValueLabels.integrityRequirement.high,
+ ];
case scoreMetricLabels.availabilityRequirement:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.low,
- scoreMetricValueLabels.medium,
- scoreMetricValueLabels.high,
+ scoreMetricValueLabels.availabilityRequirement.notDefined,
+ scoreMetricValueLabels.availabilityRequirement.low,
+ scoreMetricValueLabels.availabilityRequirement.medium,
+ scoreMetricValueLabels.availabilityRequirement.high,
];
case scoreMetricLabels.modifiedAttackVector:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.network,
- scoreMetricValueLabels.adjacent,
- scoreMetricValueLabels.local,
- scoreMetricValueLabels.physical,
+ scoreMetricValueLabels.modifiedAttackVector.notDefined,
+ scoreMetricValueLabels.modifiedAttackVector.network,
+ scoreMetricValueLabels.modifiedAttackVector.adjacent,
+ scoreMetricValueLabels.modifiedAttackVector.local,
+ scoreMetricValueLabels.modifiedAttackVector.physical,
];
case scoreMetricLabels.modifiedAttackComplexity:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.low,
- scoreMetricValueLabels.high,
+ scoreMetricValueLabels.modifiedAttackComplexity.notDefined,
+ scoreMetricValueLabels.modifiedAttackComplexity.low,
+ scoreMetricValueLabels.modifiedAttackComplexity.high,
];
case scoreMetricLabels.modifiedPrivilegesRequired:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.none,
- scoreMetricValueLabels.low,
- scoreMetricValueLabels.high,
+ scoreMetricValueLabels.modifiedPrivilegesRequired.notDefined,
+ scoreMetricValueLabels.modifiedPrivilegesRequired.none,
+ scoreMetricValueLabels.modifiedPrivilegesRequired.low,
+ scoreMetricValueLabels.modifiedPrivilegesRequired.high,
];
case scoreMetricLabels.modifiedUserInteraction:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.none,
- scoreMetricValueLabels.required,
+ scoreMetricValueLabels.modifiedUserInteraction.notDefined,
+ scoreMetricValueLabels.modifiedUserInteraction.none,
+ scoreMetricValueLabels.modifiedUserInteraction.required,
];
case scoreMetricLabels.modifiedScope:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.unchanged,
- scoreMetricValueLabels.changed,
+ scoreMetricValueLabels.modifiedScope.notDefined,
+ scoreMetricValueLabels.modifiedScope.unchanged,
+ scoreMetricValueLabels.modifiedScope.changed,
];
case scoreMetricLabels.modifiedConfidentiality:
+ return [
+ scoreMetricValueLabels.modifiedConfidentiality.notDefined,
+ scoreMetricValueLabels.modifiedConfidentiality.none,
+ scoreMetricValueLabels.modifiedConfidentiality.low,
+ scoreMetricValueLabels.modifiedConfidentiality.high,
+ ];
case scoreMetricLabels.modifiedIntegrity:
+ return [
+ scoreMetricValueLabels.modifiedIntegrity.notDefined,
+ scoreMetricValueLabels.modifiedIntegrity.none,
+ scoreMetricValueLabels.modifiedIntegrity.low,
+ scoreMetricValueLabels.modifiedIntegrity.high,
+ ];
case scoreMetricLabels.modifiedAvailability:
return [
- scoreMetricValueLabels.notDefined,
- scoreMetricValueLabels.none,
- scoreMetricValueLabels.low,
- scoreMetricValueLabels.high,
+ scoreMetricValueLabels.modifiedAvailability.notDefined,
+ scoreMetricValueLabels.modifiedAvailability.none,
+ scoreMetricValueLabels.modifiedAvailability.low,
+ scoreMetricValueLabels.modifiedAvailability.high,
];
default:
return [scoreMetricValueLabels.notDefined];
@@ -251,84 +275,84 @@ const setOriginalScoreMetricValue = (scoreMetricLabel: string, vulnerabilityVect
case scoreMetricLabels.modifiedAttackVector: {
const originalValue = vulnerabilityVectorValues.attackVector.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.NETWORK.toUpperCase()) {
- output = scoreMetricValueLabels.network;
+ output = scoreMetricValueLabels.modifiedAttackVector.network.title;
} else if (originalValue === environmentalScoreMetricsLink.ADJACENT.toUpperCase()) {
- output = scoreMetricValueLabels.adjacent;
+ output = scoreMetricValueLabels.modifiedAttackVector.adjacent.title;
} else if (originalValue === environmentalScoreMetricsLink.LOCAL.toUpperCase()) {
- output = scoreMetricValueLabels.local;
+ output = scoreMetricValueLabels.modifiedAttackVector.local.title;
} else if (originalValue === environmentalScoreMetricsLink.PHYSICAL.toUpperCase()) {
- output = scoreMetricValueLabels.physical;
+ output = scoreMetricValueLabels.modifiedAttackVector.physical.title;
}
break;
}
case scoreMetricLabels.modifiedAttackComplexity: {
const originalValue = vulnerabilityVectorValues.attackComplexity.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.LOW.toUpperCase()) {
- output = scoreMetricValueLabels.low;
+ output = scoreMetricValueLabels.modifiedAttackComplexity.low.title;
} else if (originalValue === environmentalScoreMetricsLink.HIGH.toUpperCase()) {
- output = scoreMetricValueLabels.high;
+ output = scoreMetricValueLabels.modifiedAttackComplexity.high.title;
}
break;
}
case scoreMetricLabels.modifiedPrivilegesRequired: {
const originalValue = vulnerabilityVectorValues.privilegesRequired.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.NONE.toUpperCase()) {
- output = scoreMetricValueLabels.none;
+ output = scoreMetricValueLabels.modifiedPrivilegesRequired.none.title;
} else if (originalValue === environmentalScoreMetricsLink.LOW.toUpperCase()) {
- output = scoreMetricValueLabels.low;
+ output = scoreMetricValueLabels.modifiedPrivilegesRequired.low.title;
} else if (originalValue === environmentalScoreMetricsLink.HIGH.toUpperCase()) {
- output = scoreMetricValueLabels.high;
+ output = scoreMetricValueLabels.modifiedPrivilegesRequired.high.title;
}
break;
}
case scoreMetricLabels.modifiedUserInteraction: {
const originalValue = vulnerabilityVectorValues.userInteraction.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.NONE.toUpperCase()) {
- output = scoreMetricValueLabels.none;
+ output = scoreMetricValueLabels.modifiedUserInteraction.none.title;
} else if (originalValue === environmentalScoreMetricsLink.REQUIRED.toUpperCase()) {
- output = scoreMetricValueLabels.required;
+ output = scoreMetricValueLabels.modifiedUserInteraction.required.title;
}
break;
}
case scoreMetricLabels.modifiedScope: {
const originalValue = vulnerabilityVectorValues.scope.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.UNCHANGED.toUpperCase()) {
- output = scoreMetricValueLabels.unchanged;
+ output = scoreMetricValueLabels.modifiedScope.unchanged.title;
} else if (originalValue === environmentalScoreMetricsLink.CHANGED.toUpperCase()) {
- output = scoreMetricValueLabels.changed;
+ output = scoreMetricValueLabels.modifiedScope.changed.title;
}
break;
}
case scoreMetricLabels.modifiedConfidentiality: {
const originalValue = vulnerabilityVectorValues.confidentialityImpact.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.NONE.toUpperCase()) {
- output = scoreMetricValueLabels.none;
+ output = scoreMetricValueLabels.modifiedConfidentiality.none.title;
} else if (originalValue === environmentalScoreMetricsLink.LOW.toUpperCase()) {
- output = scoreMetricValueLabels.low;
+ output = scoreMetricValueLabels.modifiedConfidentiality.low.title;
} else if (originalValue === environmentalScoreMetricsLink.HIGH.toUpperCase()) {
- output = scoreMetricValueLabels.high;
+ output = scoreMetricValueLabels.modifiedConfidentiality.high.title;
}
break;
}
case scoreMetricLabels.modifiedIntegrity: {
const originalValue = vulnerabilityVectorValues.integrityImpact.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.NONE.toUpperCase()) {
- output = scoreMetricValueLabels.none;
+ output = scoreMetricValueLabels.modifiedIntegrity.none.title;
} else if (originalValue === environmentalScoreMetricsLink.LOW.toUpperCase()) {
- output = scoreMetricValueLabels.low;
+ output = scoreMetricValueLabels.modifiedIntegrity.low.title;
} else if (originalValue === environmentalScoreMetricsLink.HIGH.toUpperCase()) {
- output = scoreMetricValueLabels.high;
+ output = scoreMetricValueLabels.modifiedIntegrity.high.title;
}
break;
}
case scoreMetricLabels.modifiedAvailability: {
const originalValue = vulnerabilityVectorValues.availabilityImpact.toUpperCase();
if (originalValue === environmentalScoreMetricsLink.NONE.toUpperCase()) {
- output = scoreMetricValueLabels.none;
+ output = scoreMetricValueLabels.modifiedAvailability.none.title;
} else if (originalValue === environmentalScoreMetricsLink.LOW.toUpperCase()) {
- output = scoreMetricValueLabels.low;
+ output = scoreMetricValueLabels.modifiedAvailability.low.title;
} else if (originalValue === environmentalScoreMetricsLink.HIGH.toUpperCase()) {
- output = scoreMetricValueLabels.high;
+ output = scoreMetricValueLabels.modifiedAvailability.high.title;
}
break;
}
diff --git a/frontend/src/utilities/localization.tsx b/frontend/src/utilities/localization.tsx
index cec5165..6fe8f44 100644
--- a/frontend/src/utilities/localization.tsx
+++ b/frontend/src/utilities/localization.tsx
@@ -1,4 +1,12 @@
+import { nodeGroup } from "framer-motion/types/projection/node/group";
+const NOT_DEFINED = "Not Defined";
+const NOT_DEFINED_REQ = "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Environmental Score, i.e., it has the same effect on scoring as assigning Medium.";
+const LOW = "Low";
+const MEDIUM = "Medium";
+const HIGH = "High";
+const NONE = "None";
+const NOT_DEFINED_DEF = "The default value.";
const language = {
de: {
breadCrumbMap: {
@@ -184,28 +192,90 @@ const language = {
availabilityRequirement: "Availability Requirement",
},
scoreMetricValues: {
- notDefined: "Not Defined",
- unproven: "Unproven",
- proofOfConcept: "Proof-of-Concept",
- functional: "Functional",
- high: "High",
- officialFix: "Official fix",
- temporaryFix: "Temporary fix",
- workaround: "Workaround",
- unavailable: "Unavailable",
- unknown: "Unknown",
- reasonable: "Reasonable",
- confirmed: "Confirmed",
- network: "Network",
- adjacent: "Adjacent",
- local: "Local",
- physical: "Physical",
- low: "Low",
- medium: "Medium",
- none: "None",
- required: "Required",
- unchanged: "Unchanged",
- changed: "Changed",
+ exploitCodeMaturity: {
+ notDefined: {title: NOT_DEFINED, tooltip: "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Temporal Score, i.e., it has the same effect on scoring as assigning High."},
+ unproven: {title: "Unproven", tooltip: "No exploit code is available, or an exploit is theoretical."},
+ proofOfConcept: {title: "Proof-of-Concept", tooltip: "Proof-of-concept exploit code is available, or an attack demonstration is not practical for most systems. The code or technique is not functional in all situations and may require substantial modification by a skilled attacker."},
+ functional: {title: "Functional", tooltip: "Functional exploit code is available. The code works in most situations where the vulnerability exists."},
+ high: {title: "High", tooltip: "Functional autonomous code exists, or no exploit is required (manual trigger) and details are widely available. Exploit code works in every situation, or is actively being delivered via an autonomous agent (such as a worm or virus). Network-connected systems are likely to encounter scanning or exploitation attempts. Exploit development has reached the level of reliable, widely available, easy-to-use automated tools."}
+ },
+ remediationLevel: {
+ notDefined: {title: NOT_DEFINED, tooltip: "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Temporal Score, i.e., it has the same effect on scoring as assigning Unavailable."},
+ officialFix: {title: "Official fix", tooltip: "A complete vendor solution is available. Either the vendor has issued an official patch, or an upgrade is available."},
+ temporaryFix: {title: "Temporary fix", tooltip: "There is an official but temporary fix available. This includes instances where the vendor issues a temporary hotfix, tool, or workaround."},
+ workaround: {title: "Workaround", tooltip: "There is an unofficial, non-vendor solution available. In some cases, users of the affected technology will create a patch of their own or provide steps to work around or otherwise mitigate the vulnerability."},
+ unavailable: {title: "Unavailable", tooltip: "There is either no solution available or it is impossible to apply."},
+ },
+ reportConfidence: {
+ notDefined: {title: NOT_DEFINED, tooltip: "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Temporal Score, i.e., it has the same effect on scoring as assigning Confirmed."},
+ unknown: {title: "Unknown", tooltip: "There are reports of impacts that indicate a vulnerability is present. The reports indicate that the cause of the vulnerability is unknown, or reports may differ on the cause or impacts of the vulnerability. Reporters are uncertain of the true nature of the vulnerability, and there is little confidence in the validity of the reports or whether a static Base Score can be applied given the differences described. An example is a bug report which notes that an intermittent but non-reproducible crash occurs, with evidence of memory corruption suggesting that denial of service, or possible more serious impacts, may result."},
+ reasonable: {title: "Reasonable", tooltip: "Significant details are published, but researchers either do not have full confidence in the root cause, or do not have access to source code to fully confirm all of the interactions that may lead to the result. Reasonable confidence exists, however, that the bug is reproducible and at least one impact is able to be verified (proof-of-concept exploits may provide this). An example is a detailed write-up of research into a vulnerability with an explanation (possibly obfuscated or “left as an exercise to the reader”) that gives assurances on how to reproduce the results."},
+ confirmed: {title: "Confirmed", tooltip: "Detailed reports exist, or functional reproduction is possible (functional exploits may provide this). Source code is available to independently verify the assertions of the research, or the author or vendor of the affected code has confirmed the presence of the vulnerability."}
+ },
+ confidentialityRequirement: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_REQ},
+ low: {title: LOW, tooltip: "Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ medium: {title: MEDIUM, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a serious adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ high: {title: HIGH, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."}
+ },
+ integrityRequirement: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_REQ},
+ low: {title: LOW, tooltip: "Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ medium: {title: MEDIUM, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a serious adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ high: {title: HIGH, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."}
+ },
+ availabilityRequirement: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_REQ},
+ low: {title: LOW, tooltip: "Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ medium: {title: MEDIUM, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a serious adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ high: {title: HIGH, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."}
+ },
+ modifiedAttackVector: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ network: {title: "Network", tooltip: "The vulnerable component 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). An example of a network attack is an attacker causing a denial of service (DoS) by sending a specially crafted TCP packet across a wide area network (e.g., CVE‑2004‑0230)."},
+ adjacent: {title: "Adjacent", tooltip: "The vulnerable component is bound to the network 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 physical (e.g., Bluetooth or IEEE 802.11) or logical (e.g., local IP subnet) network, or from within a secure or otherwise limited administrative domain (e.g., MPLS, secure VPN to an administrative network zone). One example of an Adjacent attack would be an ARP (IPv4) or neighbor discovery (IPv6) flood leading to a denial of service on the local LAN segment (e.g., CVE‑2013‑6014)."},
+ local: {title: "Local", tooltip: "The vulnerable component 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 remotely (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)."},
+ physical: {title: "Physical", tooltip: "The attack requires the attacker to physically touch or manipulate the vulnerable component. Physical interaction may be brief (e.g., evil maid attack1) or persistent. An example of such an attack is a cold boot attack in which an attacker gains access to disk encryption keys after physically accessing the target system. Other examples include peripheral attacks via FireWire/USB Direct Memory Access (DMA)."}
+ },
+ modifiedAttackComplexity: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ low: {title: LOW, tooltip: "Specialized access conditions or extenuating circumstances do not exist. An attacker can expect repeatable success when attacking the vulnerable component."},
+ high: {title: HIGH, tooltip: "A successful attack depends on conditions beyond the attacker's control. That is, a successful attack cannot be accomplished at will, but requires the attacker to invest in some measurable amount of effort in preparation or execution against the vulnerable component before a successful attack can be expected.2 For example, a successful attack may depend on an attacker overcoming any of the following conditions: The attacker must gather knowledge about the environment in which the vulnerable target/component exists. For example, a requirement to collect details on target configuration settings, sequence numbers, or shared secrets. or The attacker must prepare the target environment to improve exploit reliability. For example, repeated exploitation to win a race condition, or overcoming advanced exploit mitigation techniques. or The attacker must inject themselves into the logical network path between the target and the resource requested by the victim in order to read and/or modify network communications (e.g., a man in the middle attack)."}
+ },
+ modifiedPrivilegesRequired: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "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."},
+ low: {title: LOW, tooltip: "The attacker requires privileges that provide basic user capabilities that could normally affect only settings and files owned by a user. Alternatively, an attacker with Low privileges has the ability to access only non-sensitive resources."},
+ high: {title: HIGH, tooltip: "The attacker requires privileges that provide significant (e.g., administrative) control over the vulnerable component allowing access to component-wide settings and files."}
+ },
+ modifiedUserInteraction: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "The vulnerable system can be exploited without interaction from any user."},
+ required: {title: "Required", tooltip: "Successful exploitation of this vulnerability requires a user to take some action before the vulnerability can be exploited. For example, a successful exploit may only be possible during the installation of an application by a system administrator."}
+ },
+ modifiedScope: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ unchanged: {title: "Unchanged", tooltip: "An exploited vulnerability can only affect resources managed by the same security authority. In this case, the vulnerable component and the impacted component are either the same, or both are managed by the same security authority."},
+ changed: {title: "Changed", tooltip: "An exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component. In this case, the vulnerable component and the impacted component are different and managed by different security authorities."}
+ },
+ modifiedConfidentiality: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "There is no loss of confidentiality within the impacted component."},
+ low: {title: LOW, tooltip: "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 impacted component."},
+ high: {title: HIGH, tooltip: "There is a total loss of confidentiality, resulting in all resources within the impacted component 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."}
+ },
+ modifiedIntegrity: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "There is no loss of integrity within the impacted component."},
+ low: {title: LOW, tooltip: "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 on the impacted component."},
+ high: {title: HIGH, tooltip: "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 impacted component. Alternatively, only some files can be modified, but malicious modification would present a direct, serious consequence to the impacted component."}
+ },
+ modifiedAvailability: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "There is no impact to availability within the impacted component."},
+ low: {title: LOW, tooltip: "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 impacted component 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 impacted component."},
+ high: {title: HIGH, tooltip: "There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the impacted component; 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 impacted component (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)."}
+ }
},
},
sidebar:{
@@ -497,28 +567,90 @@ const language = {
availabilityRequirement: "Availability Requirement",
},
scoreMetricValues: {
- notDefined: "Not Defined",
- unproven: "Unproven",
- proofOfConcept: "Proof-of-Concept",
- functional: "Functional",
- high: "High",
- officialFix: "Official fix",
- temporaryFix: "Temporary fix",
- workaround: "Workaround",
- unavailable: "Unavailable",
- unknown: "Unknown",
- reasonable: "Reasonable",
- confirmed: "Confirmed",
- network: "Network",
- adjacent: "Adjacent",
- local: "Local",
- physical: "Physical",
- low: "Low",
- medium: "Medium",
- none: "None",
- required: "Required",
- unchanged: "Unchanged",
- changed: "Changed",
+ exploitCodeMaturity: {
+ notDefined: {title: NOT_DEFINED, tooltip: "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Temporal Score, i.e., it has the same effect on scoring as assigning High."},
+ unproven: {title: "Unproven", tooltip: "No exploit code is available, or an exploit is theoretical."},
+ proofOfConcept: {title: "Proof-of-Concept", tooltip: "Proof-of-concept exploit code is available, or an attack demonstration is not practical for most systems. The code or technique is not functional in all situations and may require substantial modification by a skilled attacker."},
+ functional: {title: "Functional", tooltip: "Functional exploit code is available. The code works in most situations where the vulnerability exists."},
+ high: {title: "High", tooltip: "Functional autonomous code exists, or no exploit is required (manual trigger) and details are widely available. Exploit code works in every situation, or is actively being delivered via an autonomous agent (such as a worm or virus). Network-connected systems are likely to encounter scanning or exploitation attempts. Exploit development has reached the level of reliable, widely available, easy-to-use automated tools."}
+ },
+ remediationLevel: {
+ notDefined: {title: NOT_DEFINED, tooltip: "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Temporal Score, i.e., it has the same effect on scoring as assigning Unavailable."},
+ officialFix: {title: "Official fix", tooltip: "A complete vendor solution is available. Either the vendor has issued an official patch, or an upgrade is available."},
+ temporaryFix: {title: "Temporary fix", tooltip: "There is an official but temporary fix available. This includes instances where the vendor issues a temporary hotfix, tool, or workaround."},
+ workaround: {title: "Workaround", tooltip: "There is an unofficial, non-vendor solution available. In some cases, users of the affected technology will create a patch of their own or provide steps to work around or otherwise mitigate the vulnerability."},
+ unavailable: {title: "Unavailable", tooltip: "There is either no solution available or it is impossible to apply."},
+ },
+ reportConfidence: {
+ notDefined: {title: NOT_DEFINED, tooltip: "Assigning this value indicates there is insufficient information to choose one of the other values, and has no impact on the overall Temporal Score, i.e., it has the same effect on scoring as assigning Confirmed."},
+ unknown: {title: "Unknown", tooltip: "There are reports of impacts that indicate a vulnerability is present. The reports indicate that the cause of the vulnerability is unknown, or reports may differ on the cause or impacts of the vulnerability. Reporters are uncertain of the true nature of the vulnerability, and there is little confidence in the validity of the reports or whether a static Base Score can be applied given the differences described. An example is a bug report which notes that an intermittent but non-reproducible crash occurs, with evidence of memory corruption suggesting that denial of service, or possible more serious impacts, may result."},
+ reasonable: {title: "Reasonable", tooltip: "Significant details are published, but researchers either do not have full confidence in the root cause, or do not have access to source code to fully confirm all of the interactions that may lead to the result. Reasonable confidence exists, however, that the bug is reproducible and at least one impact is able to be verified (proof-of-concept exploits may provide this). An example is a detailed write-up of research into a vulnerability with an explanation (possibly obfuscated or “left as an exercise to the reader”) that gives assurances on how to reproduce the results."},
+ confirmed: {title: "Confirmed", tooltip: "Detailed reports exist, or functional reproduction is possible (functional exploits may provide this). Source code is available to independently verify the assertions of the research, or the author or vendor of the affected code has confirmed the presence of the vulnerability."}
+ },
+ confidentialityRequirement: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_REQ},
+ low: {title: LOW, tooltip: "Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ medium: {title: MEDIUM, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a serious adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ high: {title: HIGH, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."}
+ },
+ integrityRequirement: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_REQ},
+ low: {title: LOW, tooltip: "Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ medium: {title: MEDIUM, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a serious adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ high: {title: HIGH, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."}
+ },
+ availabilityRequirement: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_REQ},
+ low: {title: LOW, tooltip: "Loss of Confidentiality is likely to have only a limited adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ medium: {title: MEDIUM, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a serious adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."},
+ high: {title: HIGH, tooltip: "Loss of [Confidentiality | Integrity | Availability] is likely to have a catastrophic adverse effect on the organization or individuals associated with the organization (e.g., employees, customers)."}
+ },
+ modifiedAttackVector: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ network: {title: "Network", tooltip: "The vulnerable component 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). An example of a network attack is an attacker causing a denial of service (DoS) by sending a specially crafted TCP packet across a wide area network (e.g., CVE‑2004‑0230)."},
+ adjacent: {title: "Adjacent", tooltip: "The vulnerable component is bound to the network 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 physical (e.g., Bluetooth or IEEE 802.11) or logical (e.g., local IP subnet) network, or from within a secure or otherwise limited administrative domain (e.g., MPLS, secure VPN to an administrative network zone). One example of an Adjacent attack would be an ARP (IPv4) or neighbor discovery (IPv6) flood leading to a denial of service on the local LAN segment (e.g., CVE‑2013‑6014)."},
+ local: {title: "Local", tooltip: "The vulnerable component 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 remotely (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)."},
+ physical: {title: "Physical", tooltip: "The attack requires the attacker to physically touch or manipulate the vulnerable component. Physical interaction may be brief (e.g., evil maid attack1) or persistent. An example of such an attack is a cold boot attack in which an attacker gains access to disk encryption keys after physically accessing the target system. Other examples include peripheral attacks via FireWire/USB Direct Memory Access (DMA)."}
+ },
+ modifiedAttackComplexity: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ low: {title: LOW, tooltip: "Specialized access conditions or extenuating circumstances do not exist. An attacker can expect repeatable success when attacking the vulnerable component."},
+ high: {title: HIGH, tooltip: "A successful attack depends on conditions beyond the attacker's control. That is, a successful attack cannot be accomplished at will, but requires the attacker to invest in some measurable amount of effort in preparation or execution against the vulnerable component before a successful attack can be expected.2 For example, a successful attack may depend on an attacker overcoming any of the following conditions: The attacker must gather knowledge about the environment in which the vulnerable target/component exists. For example, a requirement to collect details on target configuration settings, sequence numbers, or shared secrets. or The attacker must prepare the target environment to improve exploit reliability. For example, repeated exploitation to win a race condition, or overcoming advanced exploit mitigation techniques. or The attacker must inject themselves into the logical network path between the target and the resource requested by the victim in order to read and/or modify network communications (e.g., a man in the middle attack)."}
+ },
+ modifiedPrivilegesRequired: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "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."},
+ low: {title: LOW, tooltip: "The attacker requires privileges that provide basic user capabilities that could normally affect only settings and files owned by a user. Alternatively, an attacker with Low privileges has the ability to access only non-sensitive resources."},
+ high: {title: HIGH, tooltip: "The attacker requires privileges that provide significant (e.g., administrative) control over the vulnerable component allowing access to component-wide settings and files."}
+ },
+ modifiedUserInteraction: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "The vulnerable system can be exploited without interaction from any user."},
+ required: {title: "Required", tooltip: "Successful exploitation of this vulnerability requires a user to take some action before the vulnerability can be exploited. For example, a successful exploit may only be possible during the installation of an application by a system administrator."}
+ },
+ modifiedScope: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ unchanged: {title: "Unchanged", tooltip: "An exploited vulnerability can only affect resources managed by the same security authority. In this case, the vulnerable component and the impacted component are either the same, or both are managed by the same security authority."},
+ changed: {title: "Changed", tooltip: "An exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component. In this case, the vulnerable component and the impacted component are different and managed by different security authorities."}
+ },
+ modifiedConfidentiality: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "There is no loss of confidentiality within the impacted component."},
+ low: {title: LOW, tooltip: "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 impacted component."},
+ high: {title: HIGH, tooltip: "There is a total loss of confidentiality, resulting in all resources within the impacted component 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."}
+ },
+ modifiedIntegrity: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "There is no loss of integrity within the impacted component."},
+ low: {title: LOW, tooltip: "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 on the impacted component."},
+ high: {title: HIGH, tooltip: "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 impacted component. Alternatively, only some files can be modified, but malicious modification would present a direct, serious consequence to the impacted component."}
+ },
+ modifiedAvailability: {
+ notDefined: {title: NOT_DEFINED, tooltip: NOT_DEFINED_DEF},
+ none: {title: NONE, tooltip: "There is no impact to availability within the impacted component."},
+ low: {title: LOW, tooltip: "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 impacted component 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 impacted component."},
+ high: {title: HIGH, tooltip: "There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the impacted component; 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 impacted component (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)."}
+ }
},
},
sidebar:{