|
1 | 1 | {% load i18n %} |
| 2 | +<dl class="row mb-3"> |
| 3 | + <dt class="col-sm-1 text-end pe-0"> |
| 4 | + <span class="help_text" data-bs-placement="right" data-bs-toggle="tooltip" data-bs-title="Risk score between 0.0 and 10.0, where higher values indicate greater vulnerability risk for the package."> |
| 5 | + Risk score |
| 6 | + </span> |
| 7 | + </dt> |
| 8 | + <dd class="col-sm-11 fs-110pct"> |
| 9 | + {% include 'vulnerabilities/includes/risk_score_badge.html' with risk_score=package.risk_score only %} |
| 10 | + </dd> |
| 11 | +</dl> |
2 | 12 | <table class="table table-bordered table-hover table-md text-break"> |
3 | 13 | <thead> |
4 | 14 | <tr> |
|
7 | 17 | {% trans 'Affected by' %} |
8 | 18 | </span> |
9 | 19 | </th> |
10 | | - <th style="width: 210px;"> |
11 | | - <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="A list of aliases for this vulnerability."> |
12 | | - {% trans 'Aliases' %} |
| 20 | + <th style="width: 300px;"> |
| 21 | + <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="Summary of the vulnerability."> |
| 22 | + {% trans 'Summary' %} |
13 | 23 | </span> |
14 | 24 | </th> |
15 | | - <th style="width: 90px;"> |
16 | | - <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="Severity score range."> |
17 | | - {% trans 'Score' %} |
| 25 | + <th style="min-width: 130px;"> |
| 26 | + <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="Exploitability indicates the likelihood that a vulnerability in a software package could be used by malicious actors to compromise systems, applications, or networks. This metric is determined automatically based on the discovery of known exploits"> |
| 27 | + {% trans 'Exploitability' %} |
18 | 28 | </span> |
19 | 29 | </th> |
20 | | - <th> |
21 | | - <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="Summary of the vulnerability."> |
22 | | - {% trans 'Summary' %} |
| 30 | + <th style="min-width: 100px;"> |
| 31 | + <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="Weighted severity is the highest value calculated by multiplying each severity by its corresponding weight, divided by 10."> |
| 32 | + {% trans 'Severity' %} |
| 33 | + </span> |
| 34 | + </th> |
| 35 | + <th style="min-width: 90px;"> |
| 36 | + <span class="help_text" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-title="Risk score from 0.0 to 10.0, with higher values indicating greater vulnerability risk. This score is the maximum of the weighted severity multiplied by exploitability, capped at 10."> |
| 37 | + {% trans 'Risk' %} |
23 | 38 | </span> |
24 | 39 | </th> |
25 | 40 | <th style="min-width: 320px;"> |
|
43 | 58 | {{ vulnerability.vulnerability_id }} |
44 | 59 | {% endif %} |
45 | 60 | </strong> |
46 | | - </td> |
47 | | - <td> |
48 | | - {% include 'component_catalog/includes/vulnerability_aliases.html' with aliases=vulnerability.aliases only %} |
49 | | - </td> |
50 | | - <td> |
51 | | - {% if vulnerability.min_score %} |
52 | | - {{ vulnerability.min_score }} - |
53 | | - {% endif %} |
54 | | - {% if vulnerability.max_score %} |
55 | | - <strong> |
56 | | - {{ vulnerability.max_score }} |
57 | | - </strong> |
58 | | - {% endif %} |
| 61 | + <div class="mt-2"> |
| 62 | + {% include 'component_catalog/includes/vulnerability_aliases.html' with aliases=vulnerability.aliases only %} |
| 63 | + </div> |
59 | 64 | </td> |
60 | 65 | <td> |
61 | 66 | {% if vulnerability.summary %} |
|
69 | 74 | {% endif %} |
70 | 75 | {% endif %} |
71 | 76 | </td> |
| 77 | + <td> |
| 78 | + {% include 'vulnerabilities/includes/exploitability.html' with instance=vulnerability only %} |
| 79 | + </td> |
| 80 | + <td> |
| 81 | + {{ vulnerability.weighted_severity|default_if_none:"" }} |
| 82 | + </td> |
| 83 | + <td class="fs-110pct"> |
| 84 | + {% include 'vulnerabilities/includes/risk_score_badge.html' with risk_score=vulnerability.risk_score only %} |
| 85 | + </td> |
72 | 86 | <td> |
73 | 87 | {% if vulnerability.fixed_packages_html %} |
74 | 88 | {{ vulnerability.fixed_packages_html }} |
|
0 commit comments