mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
27 lines
976 B
HTML
27 lines
976 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="section-header">
|
|
<h1>EPSS highlights</h1>
|
|
<span class="muted">High-probability CVEs that are not in KEV.</span>
|
|
</div>
|
|
<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><th>Summary</th></tr></thead>
|
|
<tbody>
|
|
{% for row in epss %}
|
|
<tr>
|
|
<td class="cve-cell"><a href="/cve/?id={{ row.cve }}">{{ 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>
|
|
<td class="mono">{{ row.summary or 'No public description yet.' }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|