Complete the code to identify the base metric group in CVSS.
cvss_metrics = ['[1]', 'Temporal', 'Environmental']
The Base metric group in CVSS represents the intrinsic characteristics of a vulnerability that are constant over time and user environments.
Complete the code to calculate the CVSS score using the base score formula.
cvss_score = round(([1] + 0.1) * 10) / 10
The base score calculation in CVSS primarily uses the impact score, which reflects the effect of a vulnerability on confidentiality, integrity, and availability.
Fix the error in the CVSS vector string parsing code.
vector_parts = cvss_vector.split('[1]')
CVSS vector strings use semicolons ';' to separate metric components.
Fill both blanks to complete the CVSS severity rating classification.
if score >= [1]: severity = 'Critical' elif score >= [2]: severity = 'High'
CVSS classifies scores 9.0 and above as Critical, and scores 7.0 and above as High.
Fill all three blanks to complete the dictionary comprehension for CVSS metrics filtering.
filtered_metrics = {k: v for k, v in metrics.items() if v [1] [2] and k != '[3]'}This comprehension filters metrics with values greater or equal to 7.0 and excludes the 'Base' metric key.