mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}CVE PoC Hub{% endblock %}</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<div class="wrap">
|
|
<div class="brand">
|
|
<a href="/"><span class="dot">●</span> CVE PoC Hub</a>
|
|
</div>
|
|
<nav>
|
|
<a href="/search/">PoC Search</a>
|
|
<a href="/pocs/">Explorer</a>
|
|
<a href="/diffs/">New KEV</a>
|
|
<a href="/epss/">EPSS</a>
|
|
<a href="/kev/">KEV</a>
|
|
<a href="https://github.com/0xMarcio/cve" target="_blank" rel="noreferrer">GitHub</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main class="wrap">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<footer class="footer">
|
|
<div class="wrap footer-inner">
|
|
<div>PoC explorer with clean signals only.</div>
|
|
<div class="muted">API: <code>/api/v1/</code></div>
|
|
</div>
|
|
</footer>
|
|
<script src="/assets/app.js"></script>
|
|
</body>
|
|
</html>
|