mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>CVE PoC Hub</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body class="color-no-search">
|
|
<main class="wrap">
|
|
<section class="hero" data-search-root>
|
|
<h1>Find exploit writeups and PoCs instantly</h1>
|
|
<p class="lede">Search by CVE id, vendor, product, or keyword.</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>
|
|
</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>
|
|
|
|
<section class="section" data-trending-section>
|
|
<h2>Latest PoC examples</h2>
|
|
<div class="table-wrap" data-trending>
|
|
<table>
|
|
<thead><tr><th>Stars</th><th>Updated</th><th>Name</th><th>Description</th></tr></thead>
|
|
<tbody id="trending-body">
|
|
<tr><td colspan="4">No recent PoCs.</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<script src="/logic.js"></script>
|
|
</body>
|
|
</html>
|