mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="section-header">
|
|
<h1>KEV catalog</h1>
|
|
<span class="muted">Filter by CVE, vendor, or product.</span>
|
|
</div>
|
|
<input type="search" placeholder="Filter CVE, vendor, product" data-filter-table="kev-table" class="filter" />
|
|
<div class="table-responsive">
|
|
<table class="list" id="kev-table">
|
|
<thead>
|
|
<tr><th>CVE</th><th>Vendor</th><th>Product</th><th>EPSS</th><th>Percentile</th><th>Date Added</th><th>Due</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in kev %}
|
|
<tr>
|
|
<td class="cve-cell"><a href="/cve/?id={{ row.cve }}">{{ row.cve }}</a></td>
|
|
<td>{{ row.vendor }}</td>
|
|
<td>{{ row.product }}</td>
|
|
<td>{{ '%.3f'|format(row.epss or 0) }}</td>
|
|
<td>{{ '%2.0f'|format((row.percentile or 0)*100) }}th</td>
|
|
<td>{{ row.date_added }}</td>
|
|
<td>{{ row.due_date or '—' }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|