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

21 lines
681 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Top EPSS (not in KEV)</h1>
<input type="search" placeholder="Filter CVE" data-filter-table="epss-table" class="filter" />
<div class="table-responsive">
<table class="list" id="epss-table">
<thead><tr><th>CVE</th><th>EPSS</th><th>Percentile</th><th>PoCs</th></tr></thead>
<tbody>
{% for row in epss %}
<tr>
<td><a href="/cve/{{ row.cve }}.html">{{ row.cve }}</a></td>
<td>{{ '%.3f'|format(row.epss or 0) }}</td>
<td>{{ '%2.0f'|format((row.percentile or 0)*100) }}th</td>
<td>{{ row.poc_count }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}