mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 22:53:11 +00:00
68 lines
2.1 KiB
HTML
68 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Search utility for CVE PoCs">
|
|
<link rel="stylesheet" href="/style.css">
|
|
<title>CVE PoC Hub - Search</title>
|
|
</head>
|
|
<body class="color-no-search">
|
|
<header class="site-header">
|
|
<div class="wrap">
|
|
<div class="brand"><a href="/">CVE PoC Hub</a></div>
|
|
<nav>
|
|
<a href="/search/">PoC Search</a>
|
|
<a href="/kev/">KEV</a>
|
|
<a href="/epss/">EPSS</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main class="wrap">
|
|
<section class="hero" data-search-root>
|
|
<p class="eyebrow">CVE PoC search</p>
|
|
<h1>Find exploit writeups and PoCs instantly</h1>
|
|
<p class="lede">Search by CVE id, vendor, product, or keyword. Results are powered by the nightly CVE_list.json feed and link directly to PoC references.</p>
|
|
<div class="pill-row tight">
|
|
<span class="pill">Linked PoCs</span>
|
|
<span class="pill">MITRE CVE pages</span>
|
|
<span class="pill">Vendor / product filters</span>
|
|
<span class="pill">Supports negative terms (e.g. <strong>-windows</strong>)</span>
|
|
</div>
|
|
<form class="searchForm" action="#">
|
|
<input type="text" class="search" placeholder="Search CVE, vendor, product, or keyword" autocomplete="off">
|
|
</form>
|
|
<div class="search-results" data-results style="display:none">
|
|
<div class="header">
|
|
<h2>Results</h2>
|
|
<span class="muted">Up to 10k rows</span>
|
|
</div>
|
|
<div class="noResults">No results yet.</div>
|
|
<div class="results-table hide">
|
|
<table class="results">
|
|
<thead>
|
|
<tr>
|
|
<td width="18%">
|
|
CVE
|
|
</td>
|
|
<td>
|
|
Description / PoC links
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="results"></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<footer class="site-footer">
|
|
<div class="wrap">
|
|
<span>© 0xMarcio 2025</span>
|
|
<span>Found a bug? <a href="https://github.com/0xMarcio/cve/issues" target="_blank">File it on GitHub</a></span>
|
|
</div>
|
|
</footer>
|
|
<script src="/logic.js"></script>
|
|
</body>
|
|
</html>
|