mirror of
https://github.com/JGoyd/JGoyd.git
synced 2026-06-25 06:20:03 +02:00
134 lines
3.8 KiB
HTML
134 lines
3.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Canonical Anchor Index</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: dark;
|
|
--bg: #090c0f;
|
|
--panel: #10161b;
|
|
--ink: #e7ece8;
|
|
--muted: #9aa7a0;
|
|
--line: #2a343a;
|
|
--green: #5aa36a;
|
|
--blue: #6aa6d8;
|
|
--amber: #c79a45;
|
|
}
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
margin: 0;
|
|
background:
|
|
linear-gradient(90deg, rgba(231,236,232,.035) 1px, transparent 1px),
|
|
linear-gradient(0deg, rgba(231,236,232,.025) 1px, transparent 1px),
|
|
var(--bg);
|
|
background-size: 30px 30px;
|
|
color: var(--ink);
|
|
font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
|
|
line-height: 1.5;
|
|
}
|
|
a { color: var(--blue); }
|
|
.wrap {
|
|
max-width: 1040px;
|
|
margin: 0 auto;
|
|
padding: 30px 20px;
|
|
}
|
|
header {
|
|
border-bottom: 1px solid var(--line);
|
|
background: rgba(9,12,15,.92);
|
|
}
|
|
.eyebrow {
|
|
margin: 0 0 10px;
|
|
color: var(--blue);
|
|
font-size: .76rem;
|
|
font-weight: 850;
|
|
letter-spacing: .11em;
|
|
text-transform: uppercase;
|
|
}
|
|
h1 {
|
|
margin: 0;
|
|
font-size: clamp(2rem, 5vw, 4rem);
|
|
line-height: 1;
|
|
letter-spacing: 0;
|
|
}
|
|
p { color: var(--muted); }
|
|
.grid {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-top: 20px;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
}
|
|
.card {
|
|
border: 1px solid var(--line);
|
|
background: var(--panel);
|
|
padding: 14px;
|
|
}
|
|
h2 {
|
|
margin: 0 0 8px;
|
|
font-size: 1rem;
|
|
}
|
|
.chip {
|
|
display: inline-flex;
|
|
margin-bottom: 10px;
|
|
padding: 3px 7px;
|
|
background: var(--green);
|
|
color: #07100b;
|
|
font-size: .72rem;
|
|
font-weight: 850;
|
|
text-transform: uppercase;
|
|
}
|
|
.amber { background: var(--amber); }
|
|
.blue { background: var(--blue); }
|
|
.back {
|
|
display: inline-block;
|
|
margin-top: 22px;
|
|
border: 1px solid var(--line);
|
|
padding: 8px 12px;
|
|
text-decoration: none;
|
|
color: var(--ink);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="wrap">
|
|
<p class="eyebrow">Canonical Anchor Index</p>
|
|
<h1>Primary proof paths.</h1>
|
|
<p>Short path into the strongest public records. The complete activity chronology remains in the running ledger.</p>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div class="wrap">
|
|
<div class="grid">
|
|
<article class="card">
|
|
<span class="chip">Certificate</span>
|
|
<h2>CNVD-2025-06744</h2>
|
|
<p>CNVD/CNCERT certificate record naming Joseph Goydish as contributor for an Apple iOS / iPadOS buffer-overflow record.</p>
|
|
<a href="./cnvd-2025-06744/">Open anchor</a>
|
|
</article>
|
|
<article class="card">
|
|
<span class="chip">Certificate</span>
|
|
<h2>CNVD-2025-07885</h2>
|
|
<p>CNVD/CNCERT certificate record naming Joseph Goydish as contributor for an Apple memory-reuse record.</p>
|
|
<a href="./cnvd-2025-07885/">Open anchor</a>
|
|
</article>
|
|
<article class="card">
|
|
<span class="chip blue">Public record</span>
|
|
<h2>CISA / NVD rescore trail</h2>
|
|
<p>Five Apple CVEs on public CISA/NVD scoring-history trail, with direct NVD and history API links.</p>
|
|
<a href="./cisa-nvd-vulnrichment-rescore/">Open anchor</a>
|
|
</article>
|
|
<article class="card">
|
|
<span class="chip amber">Chronology</span>
|
|
<h2>CERT/CC VINCE trail</h2>
|
|
<p>VINCE timing for VU#395558 and VRF#25-01-MPVDT / gen-41698 relative to later Apple advisories.</p>
|
|
<a href="./certcc-vince-chronology/">Open anchor</a>
|
|
</article>
|
|
</div>
|
|
<a class="back" href="../index.html">Back to canonical record</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|