-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
289 lines (284 loc) · 10.5 KB
/
Copy pathindex.html
File metadata and controls
289 lines (284 loc) · 10.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ShadowMap Enterprise Recon & Supply Chain Assurance</title>
<style>
:root {
color-scheme: light dark;
--bg: #0f172a;
--card: rgba(15, 23, 42, 0.72);
--card-border: rgba(148, 163, 184, 0.28);
--text: #e2e8f0;
--muted: #cbd5f5;
--accent: #38bdf8;
--accent-dark: #0284c7;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: radial-gradient(circle at top, #172554, #0f172a 60%);
color: var(--text);
min-height: 100vh;
}
a {
color: inherit;
}
.page {
width: min(1100px, 94vw);
margin: 0 auto;
padding: 3rem 0 4rem;
display: flex;
flex-direction: column;
gap: 3.5rem;
}
header {
display: grid;
gap: 1.75rem;
}
header h1 {
margin: 0;
font-size: clamp(2.4rem, 4vw, 3.3rem);
line-height: 1.1;
}
header p {
margin: 0;
max-width: 640px;
color: var(--muted);
font-size: 1.05rem;
line-height: 1.7;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.6rem;
padding: 0.4rem 0.85rem;
border-radius: 999px;
background: rgba(56, 189, 248, 0.16);
color: var(--accent);
font-weight: 600;
font-size: 0.78rem;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.cta-row {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.cta-row a {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.9rem 1.8rem;
border-radius: 0.9rem;
font-weight: 600;
text-decoration: none;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-primary {
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
color: #0f172a;
box-shadow: 0 18px 32px rgba(56, 189, 248, 0.35);
}
.cta-primary:hover {
transform: translateY(-1px);
}
.cta-secondary {
border: 1px solid var(--card-border);
background: transparent;
color: var(--text);
}
section {
display: grid;
gap: 1.2rem;
}
.section-title {
margin: 0;
font-size: clamp(1.9rem, 3vw, 2.4rem);
}
.section-subhead {
margin: 0;
max-width: 680px;
line-height: 1.7;
color: var(--muted);
}
.card-grid {
display: grid;
gap: 1.3rem;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
padding: 1.6rem;
border-radius: 1.05rem;
background: var(--card);
border: 1px solid var(--card-border);
backdrop-filter: blur(12px);
display: grid;
gap: 0.75rem;
}
.card h3 {
margin: 0;
font-size: 1.2rem;
}
.card p {
margin: 0;
color: var(--muted);
line-height: 1.6;
}
.metrics {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.metric {
padding: 1.4rem;
border-radius: 1rem;
border: 1px solid var(--card-border);
background: rgba(15, 23, 42, 0.55);
}
.metric strong {
display: block;
font-size: 2rem;
}
footer {
margin-top: 2rem;
font-size: 0.85rem;
color: rgba(226, 232, 240, 0.6);
text-align: center;
}
@media (prefers-color-scheme: light) {
body {
background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
color: #0f172a;
}
.card, .metric {
background: #ffffff;
color: #0f172a;
}
.section-subhead {
color: #475569;
}
.cta-primary {
color: #0f172a;
}
footer {
color: #475569;
}
}
</style>
</head>
<body>
<main class="page">
<header>
<span class="eyebrow">Enterprise supply chain integrity</span>
<h1>ShadowMap proves every release from commit to customer.</h1>
<p>
Automate attack surface discovery while shipping artifacts your security, compliance, and audit teams can trust.
Our reproducible SLSA-ready pipeline delivers cryptographic provenance, double-built binaries, and transparent
verification for every tagged release.
</p>
<div class="cta-row">
<a class="cta-primary" href="https://github.com/YOUR-ORG/ShadowMap/releases">Download secure release</a>
<a class="cta-secondary" href="https://github.com/YOUR-ORG/ShadowMap/blob/main/docs/security/slsa-whitepaper.md">Read the supply chain whitepaper</a>
</div>
</header>
<section>
<h2 class="section-title">Enterprise-grade assurances</h2>
<p class="section-subhead">Designed for regulated environments that must show evidence of integrity, provenance, and governance.</p>
<div class="card-grid">
<article class="card">
<h3>Deterministic double build</h3>
<p>Hermetic runners rebuild every release twice, diffing checksums before any asset is published.</p>
</article>
<article class="card">
<h3>Signed SLSA provenance</h3>
<p>Keyless cosign signatures and DSSE attestations anchor every artifact in the Rekor transparency log.</p>
</article>
<article class="card">
<h3>Full SBOM disclosure</h3>
<p>Syft-generated SBOMs and automated verification scripts keep dependency risk transparent for auditors.</p>
</article>
<article class="card">
<h3>Operational playbooks</h3>
<p>Documentation and runbooks guide release managers through verification, incident response, and regulatory reporting.</p>
</article>
</div>
</section>
<section>
<h2 class="section-title">Provenance pipeline at a glance</h2>
<p class="section-subhead">Five steps ensure build integrity from source to release.</p>
<div class="card-grid">
<article class="card">
<h3>1. Immutable inputs</h3>
<p>Pinned toolchains, locked dependencies, and reproducible workflows remove hidden drift.</p>
</article>
<article class="card">
<h3>2. Hermetic execution</h3>
<p>Network egress is sealed once dependencies resolve, preserving a trusted build context.</p>
</article>
<article class="card">
<h3>3. Deterministic output</h3>
<p>Independent rebuilds must match byte-for-byte. Any deviation fails the release.</p>
</article>
<article class="card">
<h3>4. Transparent attestations</h3>
<p>SLSA provenance captures commit, workflow, and artifact digests in DSSE format.</p>
</article>
<article class="card">
<h3>5. Continuous verification</h3>
<p>Verification scripts, SBOM checks, and Rekor entries give customers confidence on every download.</p>
</article>
</div>
</section>
<section>
<h2 class="section-title">Key integrity metrics</h2>
<p class="section-subhead">Track performance of the supply chain controls in every release cycle.</p>
<div class="metrics">
<div class="metric">
<strong>100%</strong>
<span>Tagged releases with signed provenance</span>
</div>
<div class="metric">
<strong>≥95%</strong>
<span>Byte-identical rebuild success target</span>
</div>
<div class="metric">
<strong>≤30%</strong>
<span>Secure CI overhead vs. fast lane</span>
</div>
<div class="metric">
<strong>0</strong>
<span>Verification failures tolerated</span>
</div>
</div>
</section>
<section>
<h2 class="section-title">Deploy in minutes</h2>
<p class="section-subhead">ShadowMap is a single binary with a reproducible release pipeline. Deploy the landing page as static HTML on any host.</p>
<div class="card-grid">
<article class="card">
<h3>Static first</h3>
<p>No build tools required. Serve <code>landing-page/index.html</code> from an S3 bucket, GitHub Pages, or any CDN.</p>
</article>
<article class="card">
<h3>Secure defaults</h3>
<p>Releases ship with checksums, SBOM, provenance, and signatures ready for enterprise intake.</p>
</article>
<article class="card">
<h3>Modern governance</h3>
<p>Integrate verification logs into SIEM, GRC, or change-management systems via the provided scripts.</p>
</article>
</div>
</section>
<footer>
ShadowMap — enterprise reconnaissance with verifiable supply chain integrity.
</footer>
</main>
</body>
</html>