Files
CVEs-PoC/templates/vendor.html
2025-12-17 13:59:41 +01:00

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 %}