|
47 | 47 | </span>
|
48 | 48 | </a>
|
49 | 49 | </li>
|
| 50 | + <li data-tab="severities-vectors"> |
| 51 | + <a> |
| 52 | + <span> |
| 53 | + Severity details ({{ severity_vectors|length }}) |
| 54 | + </span> |
| 55 | + </a> |
| 56 | + </li> |
50 | 57 |
|
51 | 58 | {% if vulnerability.exploits %}
|
52 | 59 | <li data-tab="exploits">
|
|
398 | 405 | </tr>
|
399 | 406 | {% endfor %}
|
400 | 407 | </div>
|
| 408 | + |
| 409 | + <div class="tab-div content" data-content="severities-vectors"> |
| 410 | + {% for severity_vector in severity_vectors %} |
| 411 | + {% if severity_vector.version == '2.0' %} |
| 412 | + Vector: {{ severity_vector.vectorString }} |
| 413 | + <table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth gray-header-border"> |
| 414 | + <tr> |
| 415 | + <th>Exploitability (E)</th> |
| 416 | + <th>Access Vector (AV)</th> |
| 417 | + <th>Access Complexity (AC)</th> |
| 418 | + <th>Authentication (Au)</th> |
| 419 | + <th>Confidentiality Impact (C)</th> |
| 420 | + <th>Integrity Impact (I)</th> |
| 421 | + <th>Availability Impact (A)</th> |
| 422 | + </tr> |
| 423 | + <tr> |
| 424 | + <td>{{ severity_vector.exploitability|cvss_printer:"high,functional,unproven,proof_of_concept,not_defined" }}</td> |
| 425 | + <td>{{ severity_vector.accessVector|cvss_printer:"local,adjacent_network,network" }}</td> |
| 426 | + <td>{{ severity_vector.accessComplexity|cvss_printer:"high,medium,low" }}</td> |
| 427 | + <td>{{ severity_vector.authentication|cvss_printer:"multiple,single,none" }}</td> |
| 428 | + <td>{{ severity_vector.confidentialityImpact|cvss_printer:"none,partial,complete" }}</td> |
| 429 | + <td>{{ severity_vector.integrityImpact|cvss_printer:"none,partial,complete" }}</td> |
| 430 | + <td>{{ severity_vector.availabilityImpact|cvss_printer:"none,partial,complete" }}</td> |
| 431 | + </tr> |
| 432 | + </table> |
| 433 | + {% elif severity_vector.version == '3.1' or severity_vector.version == '3.0'%} |
| 434 | + Vector: {{ severity_vector.vectorString }} |
| 435 | + <table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth gray-header-border"> |
| 436 | + <tr> |
| 437 | + <th>Attack Vector (AV)</th> |
| 438 | + <th>Attack Complexity (AC)</th> |
| 439 | + <th>Privileges Required (PR)</th> |
| 440 | + <th>User Interaction (UI)</th> |
| 441 | + <th>Scope (S)</th> |
| 442 | + <th>Confidentiality Impact (C)</th> |
| 443 | + <th>Integrity Impact (I)</th> |
| 444 | + <th>Availability Impact (A)</th> |
| 445 | + </tr> |
| 446 | + <tr> |
| 447 | + <td>{{ severity_vector.attackVector|cvss_printer:"network,adjacent_network,local,physical"}}</td> |
| 448 | + <td>{{ severity_vector.attackComplexity|cvss_printer:"low,high" }}</td> |
| 449 | + <td>{{ severity_vector.privilegesRequired|cvss_printer:"none,low,high" }}</td> |
| 450 | + <td>{{ severity_vector.userInteraction|cvss_printer:"none,required"}}</td> |
| 451 | + <td>{{ severity_vector.scope|cvss_printer:"unchanged,changed" }}</td> |
| 452 | + <td>{{ severity_vector.confidentialityImpact|cvss_printer:"high,low,none" }}</td> |
| 453 | + <td>{{ severity_vector.integrityImpact|cvss_printer:"high,low,none" }}</td> |
| 454 | + <td>{{ severity_vector.availabilityImpact|cvss_printer:"high,low,none" }}</td> |
| 455 | + </tr> |
| 456 | + </table> |
| 457 | + {% elif severity_vector.version == '4' %} |
| 458 | + Vector: {{ severity_vector.vectorString }} |
| 459 | + <table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth gray-header-border"> |
| 460 | + <tr> |
| 461 | + <th>Attack Vector (AV)</th> |
| 462 | + <th>Attack Complexity (AC)</th> |
| 463 | + <th>Attack Requirements (AT)</th> |
| 464 | + <th>Privileges Required (PR)</th> |
| 465 | + <th>User Interaction (UI)</th> |
| 466 | + |
| 467 | + <th>Vulnerable System Impact Confidentiality (VC)</th> |
| 468 | + <th>Vulnerable System Impact Integrity (VI)</th> |
| 469 | + <th>Vulnerable System Impact Availability (VA)</th> |
| 470 | + |
| 471 | + <th>Subsequent System Impact Confidentiality (SC)</th> |
| 472 | + <th>Subsequent System Impact Integrity (SI)</th> |
| 473 | + <th>Subsequent System Impact Availability (SA)</th> |
| 474 | + </tr> |
| 475 | + <tr> |
| 476 | + <td>{{ severity_vector.attackVector|cvss_printer:"network,adjacent,local,physical"}}</td> |
| 477 | + <td>{{ severity_vector.attackComplexity|cvss_printer:"low,high" }}</td> |
| 478 | + <td>{{ severity_vector.attackRequirement|cvss_printer:"none,present" }}</td> |
| 479 | + <td>{{ severity_vector.privilegesRequired|cvss_printer:"none,low,high" }}</td> |
| 480 | + <td>{{ severity_vector.userInteraction|cvss_printer:"none,passive,active"}}</td> |
| 481 | + |
| 482 | + <td>{{ severity_vector.vulnerableSystemImpactConfidentiality|cvss_printer:"high,low,none" }}</td> |
| 483 | + <td>{{ severity_vector.vulnerableSystemImpactIntegrity|cvss_printer:"high,low,none" }}</td> |
| 484 | + <td>{{ severity_vector.vulnerableSystemImpactAvailability|cvss_printer:"high,low,none" }}</td> |
| 485 | + |
| 486 | + <td>{{ severity_vector.subsequentSystemImpactConfidentiality|cvss_printer:"high,low,none" }}</td> |
| 487 | + <td>{{ severity_vector.subsequentSystemImpactIntegrity|cvss_printer:"high,low,none" }}</td> |
| 488 | + <td>{{ severity_vector.subsequentSystemImpactAvailability|cvss_printer:"high,low,none" }}</td> |
| 489 | + </tr> |
| 490 | + </table> |
| 491 | + {% elif severity_vector.version == 'ssvc' %} |
| 492 | + <hr/> |
| 493 | + Vector: {{ severity_vector.vectorString }} |
| 494 | + <hr/> |
| 495 | + {% endif %} |
| 496 | + {% empty %} |
| 497 | + <tr> |
| 498 | + <td> |
| 499 | + There are no known vectors. |
| 500 | + </td> |
| 501 | + </tr> |
| 502 | + {% endfor %} |
| 503 | + </div> |
401 | 504 |
|
402 | 505 |
|
403 | 506 | <div class="tab-div content" data-content="epss">
|
|
0 commit comments