-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcves.html
More file actions
41 lines (41 loc) · 1.16 KB
/
cves.html
File metadata and controls
41 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CVEs | EOL-CHIP</title>
<link rel="stylesheet" href="./src/style.css?v=3">
</head>
<body>
<nav id="nav"></nav>
<main class="main-content">
<div class="page-header">
<h1>Hardware CVEs <span class="count-pill" id="cve-count">0</span></h1>
<p class="subtitle">Hardware, firmware and embedded system vulnerabilities from NIST NVD.</p>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>CVE ID</th>
<th>Description</th>
<th>Severity</th>
<th>CVSS</th>
<th>CWE</th>
<th>Published</th>
</tr>
</thead>
<tbody id="cve-body"></tbody>
</table>
</div>
</main>
<footer class="site-footer">
EOL-CHIP — Data from
<a href="https://nvd.nist.gov/">NVD</a>,
<a href="https://www.exploit-db.com/">Exploit-DB</a>,
<a href="https://www.fcc.gov/">FCC</a>.
Updated weekly.
</footer>
<script type="module" src="./src/page-cves.js?v=3"></script>
</body>
</html>