mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
21 lines
643 B
HTML
21 lines
643 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>{{ vendor.vendor }}</h1>
|
|
<p>{{ cves|length }} CVEs</p>
|
|
<div class="table-responsive">
|
|
<table class="list">
|
|
<thead><tr><th>CVE</th><th>EPSS</th><th>KEV</th><th>PoCs</th></tr></thead>
|
|
<tbody>
|
|
{% for detail in cves %}
|
|
<tr>
|
|
<td><a href="/cve/{{ detail.cve }}.html">{{ detail.cve }}</a></td>
|
|
<td>{% if detail.epss is not none %}{{ '%.3f'|format(detail.epss) }}{% else %}—{% endif %}</td>
|
|
<td>{{ 'Yes' if detail.kev else 'No' }}</td>
|
|
<td>{{ detail.poc_count }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|