@blamejs/exceptd-skills 0.13.0 → 0.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/data/_indexes/_meta.json +9 -9
- package/data/_indexes/activity-feed.json +2 -2
- package/data/_indexes/catalog-summaries.json +2 -2
- package/data/_indexes/chains.json +494 -10
- package/data/atlas-ttps.json +1 -0
- package/data/attack-techniques.json +13 -4
- package/data/cve-catalog.json +177 -3
- package/data/cwe-catalog.json +7 -3
- package/data/framework-control-gaps.json +19 -7
- package/data/zeroday-lessons.json +178 -0
- package/lib/refresh-external.js +7 -0
- package/lib/source-advisories.js +281 -0
- package/manifest.json +44 -44
- package/orchestrator/index.js +175 -0
- package/package.json +1 -1
- package/sbom.cdx.json +29 -18
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* lib/source-advisories.js — primary-source advisory-feed polling.
|
|
5
|
+
*
|
|
6
|
+
* Why this exists. The post-mortem on CVE-2026-46333 (ssh-keysign-pwn,
|
|
7
|
+
* disclosed 2026-05-14, missed by the toolkit at T+0 through T+3) found
|
|
8
|
+
* that the existing source set (kev, epss, nvd, rfc, pins, ghsa, osv)
|
|
9
|
+
* sits at the END of the disclosure pipeline. Qualys → kernel.org commit
|
|
10
|
+
* → distro advisory → NVD enrichment is sequential; the existing pollers
|
|
11
|
+
* only see the last step, which lags by 3-14 days.
|
|
12
|
+
*
|
|
13
|
+
* The 4 feeds below sit much earlier in the pipeline:
|
|
14
|
+
*
|
|
15
|
+
* Qualys TRU RSS — Qualys-disclosed CVEs at T+0 (the originator of
|
|
16
|
+
* the ssh-keysign-pwn class of disclosure)
|
|
17
|
+
* Red Hat RHSA RSS — RHEL security advisories at T+1, often before NVD
|
|
18
|
+
* Ubuntu USN RSS — Ubuntu security notices at T+1, often before NVD
|
|
19
|
+
* ZDI advisories — Zero Day Initiative + Pwn2Own disclosures at T+0
|
|
20
|
+
*
|
|
21
|
+
* Behaviour. Each call returns a structured REPORT — not a catalog mutation.
|
|
22
|
+
* Operators consume the report via `exceptd refresh --check-advisories` and
|
|
23
|
+
* decide which advisories warrant a `refresh --advisory <CVE-ID>` auto-import
|
|
24
|
+
* to seed a draft entry. The report is informational; nothing is auto-written
|
|
25
|
+
* to the catalog. This is the conservative-by-default contract: primary-source
|
|
26
|
+
* surfacing must not silently mutate the catalog without operator triage.
|
|
27
|
+
*
|
|
28
|
+
* Output shape:
|
|
29
|
+
* {
|
|
30
|
+
* status: 'ok' | 'partial' | 'unreachable',
|
|
31
|
+
* diffs: [
|
|
32
|
+
* { id: 'CVE-2026-46333', source: 'qualys', advisory_url: '...',
|
|
33
|
+
* disclosed_at: '2026-05-14', title: '...', in_catalog: false }
|
|
34
|
+
* ],
|
|
35
|
+
* summary: '4/4 feeds reachable; 3 new CVE references found'
|
|
36
|
+
* }
|
|
37
|
+
*
|
|
38
|
+
* Each diff is read-only — there is no `applyDiff` that writes the catalog.
|
|
39
|
+
* That's by design: a fresh advisory from a primary source has insufficient
|
|
40
|
+
* fields to satisfy Hard Rule #1 (CVSS / KEV / PoC / AI-discovery /
|
|
41
|
+
* active-exploitation / patch-availability). The operator routes the
|
|
42
|
+
* promising ones through `refresh --advisory <CVE-ID>` which goes through
|
|
43
|
+
* the existing GHSA / OSV / NVD enrichment path (those pollers are mature).
|
|
44
|
+
*
|
|
45
|
+
* Cache mode (--from-cache <dir>): expected cache layout is
|
|
46
|
+
* <dir>/advisories/<feed>.xml — caller passes `ctx.cacheDir`.
|
|
47
|
+
* Fixture mode: `ctx.fixtures.advisories = { qualys: '<xml>', ... }`.
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
const path = require('path');
|
|
51
|
+
const fs = require('fs');
|
|
52
|
+
|
|
53
|
+
const TODAY = new Date().toISOString().slice(0, 10);
|
|
54
|
+
|
|
55
|
+
// Feed registry. Each entry has a kind (rss | json), a URL, and a parser.
|
|
56
|
+
// Parsers return [{ cve_ids: [...], title, link, published }, ...].
|
|
57
|
+
const FEEDS = [
|
|
58
|
+
{
|
|
59
|
+
name: 'qualys',
|
|
60
|
+
url: 'https://blog.qualys.com/category/vulnerability-research/feed',
|
|
61
|
+
kind: 'rss',
|
|
62
|
+
description: 'Qualys Threat Research Unit blog — originator of high-impact disclosures (ssh-keysign-pwn class)',
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: 'rhsa',
|
|
66
|
+
url: 'https://access.redhat.com/security/data/csaf/v2/advisories/2026/index.txt',
|
|
67
|
+
kind: 'csaf-index',
|
|
68
|
+
description: 'Red Hat CSAF v2 advisory index — RHEL security advisories with NVD-class enrichment at T+1',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'usn',
|
|
72
|
+
url: 'https://ubuntu.com/security/notices/rss.xml',
|
|
73
|
+
kind: 'rss',
|
|
74
|
+
description: 'Ubuntu USN RSS — Ubuntu security notices, typically published 1-2 days post-disclosure',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: 'zdi',
|
|
78
|
+
url: 'https://www.zerodayinitiative.com/rss/published/',
|
|
79
|
+
kind: 'rss',
|
|
80
|
+
description: 'Zero Day Initiative — vendor-acknowledged advisories from ZDI + Pwn2Own pipeline',
|
|
81
|
+
},
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
// Permissive CVE-ID matcher. The official format is CVE-YYYY-NNNN+ but
|
|
85
|
+
// some feeds embed CVEs in arbitrary surrounding markup AND occasionally
|
|
86
|
+
// emit lowercase "cve-yyyy-nnnn" in URLs or filenames. Case-insensitive
|
|
87
|
+
// match, then uppercase + dedupe in extractCveIds().
|
|
88
|
+
const CVE_RE = /CVE-(?:19|20)\d{2}-\d{4,7}/gi;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Extract CVE IDs from a string blob. De-duplicates within the blob.
|
|
92
|
+
*/
|
|
93
|
+
function extractCveIds(text) {
|
|
94
|
+
if (typeof text !== 'string' || text.length === 0) return [];
|
|
95
|
+
const matches = text.match(CVE_RE);
|
|
96
|
+
if (!matches) return [];
|
|
97
|
+
return [...new Set(matches.map((s) => s.toUpperCase()))];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Lightweight RSS / Atom parser. Avoids pulling in a dependency for what
|
|
102
|
+
* is effectively `<item>` / `<entry>` extraction + `<title>` / `<link>` /
|
|
103
|
+
* `<pubDate>` / `<published>` / `<description>` / `<content>` text grabs.
|
|
104
|
+
*
|
|
105
|
+
* Returns [{ title, link, published, body }, ...].
|
|
106
|
+
*/
|
|
107
|
+
function parseRssAtom(xml) {
|
|
108
|
+
if (typeof xml !== 'string') return [];
|
|
109
|
+
const items = [];
|
|
110
|
+
// Try Atom <entry>...</entry> first.
|
|
111
|
+
const atomEntryRe = /<entry\b[\s\S]*?<\/entry>/g;
|
|
112
|
+
const rssItemRe = /<item\b[\s\S]*?<\/item>/g;
|
|
113
|
+
const blocks = (xml.match(atomEntryRe) || xml.match(rssItemRe) || []);
|
|
114
|
+
for (const block of blocks) {
|
|
115
|
+
const title = matchInner(block, 'title') || '';
|
|
116
|
+
const link = matchInner(block, 'link') || matchAttr(block, 'link', 'href') || '';
|
|
117
|
+
const published = matchInner(block, 'pubDate') || matchInner(block, 'published') || matchInner(block, 'updated') || '';
|
|
118
|
+
const description = matchInner(block, 'description') || matchInner(block, 'content') || matchInner(block, 'summary') || '';
|
|
119
|
+
items.push({ title: stripCdata(title), link: stripCdata(link), published: stripCdata(published), body: stripCdata(description) });
|
|
120
|
+
}
|
|
121
|
+
return items;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function matchInner(block, tag) {
|
|
125
|
+
const re = new RegExp(`<${tag}[^>]*>([\\s\\S]*?)<\\/${tag}>`, 'i');
|
|
126
|
+
const m = block.match(re);
|
|
127
|
+
return m ? m[1].trim() : null;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
function matchAttr(block, tag, attr) {
|
|
131
|
+
const re = new RegExp(`<${tag}[^>]*\\b${attr}=["']([^"']+)["']`, 'i');
|
|
132
|
+
const m = block.match(re);
|
|
133
|
+
return m ? m[1] : null;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function stripCdata(s) {
|
|
137
|
+
if (typeof s !== 'string') return '';
|
|
138
|
+
return s.replace(/<!\[CDATA\[([\s\S]*?)\]\]>/g, '$1').replace(/<[^>]+>/g, ' ').replace(/\s+/g, ' ').trim();
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* CSAF index parser — Red Hat ships a plain-text index of advisory JSON
|
|
143
|
+
* files under data/csaf/v2/advisories/YYYY/index.txt. Each line is a
|
|
144
|
+
* relative filename. We don't fetch the per-advisory JSON in v0.13.1
|
|
145
|
+
* (would blow the polling budget); we surface the advisory IDs that
|
|
146
|
+
* mention CVE-YYYY-NNNN inline.
|
|
147
|
+
*/
|
|
148
|
+
function parseCsafIndex(text) {
|
|
149
|
+
if (typeof text !== 'string') return [];
|
|
150
|
+
const lines = text.split(/\r?\n/).filter((l) => l.trim().length > 0);
|
|
151
|
+
return lines.map((line) => {
|
|
152
|
+
const cves = extractCveIds(line);
|
|
153
|
+
return { title: line.trim(), link: '', published: '', body: '', cves_from_filename: cves };
|
|
154
|
+
});
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Fetch a feed body. In fixture / cache modes, read from disk.
|
|
159
|
+
*/
|
|
160
|
+
async function fetchFeed(feed, ctx) {
|
|
161
|
+
if (ctx.fixtures && ctx.fixtures.advisories && ctx.fixtures.advisories[feed.name]) {
|
|
162
|
+
return { ok: true, body: ctx.fixtures.advisories[feed.name] };
|
|
163
|
+
}
|
|
164
|
+
if (ctx.cacheDir) {
|
|
165
|
+
const ext = feed.kind === 'csaf-index' ? '.txt' : '.xml';
|
|
166
|
+
const p = path.join(ctx.cacheDir, 'advisories', `${feed.name}${ext}`);
|
|
167
|
+
if (!fs.existsSync(p)) return { ok: false, error: `cache miss: ${p}` };
|
|
168
|
+
return { ok: true, body: fs.readFileSync(p, 'utf8') };
|
|
169
|
+
}
|
|
170
|
+
if (typeof fetch !== 'function') return { ok: false, error: 'fetch() not available — Node 18+ required' };
|
|
171
|
+
try {
|
|
172
|
+
const ac = new AbortController();
|
|
173
|
+
const timer = setTimeout(() => ac.abort(), 8000);
|
|
174
|
+
const r = await fetch(feed.url, { signal: ac.signal, headers: { 'User-Agent': 'exceptd-advisories-poller/0.13.1 (+https://exceptd.com)' } });
|
|
175
|
+
clearTimeout(timer);
|
|
176
|
+
if (!r.ok) return { ok: false, error: `HTTP ${r.status}` };
|
|
177
|
+
return { ok: true, body: await r.text() };
|
|
178
|
+
} catch (e) {
|
|
179
|
+
return { ok: false, error: e.message || String(e) };
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Walk one feed: fetch, parse, extract CVE IDs, compare to local catalog.
|
|
185
|
+
* Returns { diffs, errors, status }.
|
|
186
|
+
*/
|
|
187
|
+
async function checkFeed(feed, ctx) {
|
|
188
|
+
const res = await fetchFeed(feed, ctx);
|
|
189
|
+
if (!res.ok) return { diffs: [], errors: 1, status: 'unreachable', _why: res.error };
|
|
190
|
+
let items;
|
|
191
|
+
if (feed.kind === 'csaf-index') {
|
|
192
|
+
items = parseCsafIndex(res.body);
|
|
193
|
+
// Flatten cves_from_filename onto cve_ids field uniformly.
|
|
194
|
+
items = items.map((it) => ({ ...it, cve_ids: it.cves_from_filename || [] }));
|
|
195
|
+
} else {
|
|
196
|
+
items = parseRssAtom(res.body);
|
|
197
|
+
items = items.map((it) => ({ ...it, cve_ids: extractCveIds(`${it.title} ${it.body} ${it.link}`) }));
|
|
198
|
+
}
|
|
199
|
+
const diffs = [];
|
|
200
|
+
for (const it of items) {
|
|
201
|
+
for (const cveId of it.cve_ids) {
|
|
202
|
+
const inCatalog = !!ctx.cveCatalog[cveId];
|
|
203
|
+
if (!inCatalog) {
|
|
204
|
+
diffs.push({
|
|
205
|
+
id: cveId,
|
|
206
|
+
source: feed.name,
|
|
207
|
+
advisory_url: it.link || feed.url,
|
|
208
|
+
disclosed_at: it.published || null,
|
|
209
|
+
title: it.title.slice(0, 200),
|
|
210
|
+
in_catalog: false,
|
|
211
|
+
});
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
return { diffs, errors: 0, status: 'ok' };
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* The exported SOURCE definition, matching the shape ALL_SOURCES expects.
|
|
220
|
+
*/
|
|
221
|
+
const ADVISORIES_SOURCE = {
|
|
222
|
+
name: 'advisories',
|
|
223
|
+
description: 'Primary-source advisory feeds (Qualys TRU, Red Hat RHSA, Ubuntu USN, Zero Day Initiative / ZDI) — surfaces CVE IDs disclosed at T+0 to T+1 that lag NVD enrichment. Report-only — does not auto-write the catalog.',
|
|
224
|
+
applies_to: 'data/cve-catalog.json',
|
|
225
|
+
async fetchDiff(ctx) {
|
|
226
|
+
const results = await Promise.all(FEEDS.map((feed) => checkFeed(feed, ctx)));
|
|
227
|
+
const allDiffs = [];
|
|
228
|
+
let unreachable = 0;
|
|
229
|
+
for (const r of results) {
|
|
230
|
+
allDiffs.push(...r.diffs);
|
|
231
|
+
if (r.status === 'unreachable') unreachable++;
|
|
232
|
+
}
|
|
233
|
+
// Deduplicate by CVE-ID across feeds — multiple advisories for the
|
|
234
|
+
// same CVE collapse to one entry with sources[] array of contributing
|
|
235
|
+
// feed names.
|
|
236
|
+
const byCve = new Map();
|
|
237
|
+
for (const d of allDiffs) {
|
|
238
|
+
if (!byCve.has(d.id)) {
|
|
239
|
+
byCve.set(d.id, { ...d, sources: [d.source], advisory_urls: [d.advisory_url] });
|
|
240
|
+
} else {
|
|
241
|
+
const existing = byCve.get(d.id);
|
|
242
|
+
if (!existing.sources.includes(d.source)) existing.sources.push(d.source);
|
|
243
|
+
if (!existing.advisory_urls.includes(d.advisory_url)) existing.advisory_urls.push(d.advisory_url);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
const diffs = Array.from(byCve.values()).map((d) => {
|
|
247
|
+
delete d.source;
|
|
248
|
+
delete d.advisory_url;
|
|
249
|
+
return d;
|
|
250
|
+
});
|
|
251
|
+
const status =
|
|
252
|
+
unreachable === 0 ? 'ok' :
|
|
253
|
+
unreachable === FEEDS.length ? 'unreachable' : 'partial';
|
|
254
|
+
return {
|
|
255
|
+
status,
|
|
256
|
+
diffs,
|
|
257
|
+
errors: unreachable,
|
|
258
|
+
summary: `${FEEDS.length - unreachable}/${FEEDS.length} feeds reachable; ${diffs.length} new CVE references found across primary advisory sources`,
|
|
259
|
+
};
|
|
260
|
+
},
|
|
261
|
+
// Report-only: no applyDiff. Operators route promising CVE IDs through
|
|
262
|
+
// `exceptd refresh --advisory <CVE-ID>` (GHSA / OSV / NVD enrichment).
|
|
263
|
+
applyDiff(_ctx, _diffs) {
|
|
264
|
+
return {
|
|
265
|
+
updated: 0,
|
|
266
|
+
added: 0,
|
|
267
|
+
drift_updated: 0,
|
|
268
|
+
errors: [],
|
|
269
|
+
note: 'ADVISORIES_SOURCE is report-only. Route promising IDs through `exceptd refresh --advisory <CVE-ID>` to auto-import a draft via the GHSA / OSV / NVD enrichment pipeline.',
|
|
270
|
+
};
|
|
271
|
+
},
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
module.exports = {
|
|
275
|
+
ADVISORIES_SOURCE,
|
|
276
|
+
// Exposed for tests + future schedule-agent reuse:
|
|
277
|
+
FEEDS,
|
|
278
|
+
extractCveIds,
|
|
279
|
+
parseRssAtom,
|
|
280
|
+
parseCsafIndex,
|
|
281
|
+
};
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceptd-security",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation",
|
|
5
5
|
"homepage": "https://exceptd.com",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"last_threat_review": "2026-05-01",
|
|
55
55
|
"signature": "ZS8UdA+c6vWovG2EsBP2X2xd43uSC33/LPq6SZtYEEQto4zuzLNH+pcL74oE2V5mie03r+5YdisQYtV5g+ANCQ==",
|
|
56
|
-
"signed_at": "2026-05-
|
|
56
|
+
"signed_at": "2026-05-18T01:03:36.899Z",
|
|
57
57
|
"cwe_refs": [
|
|
58
58
|
"CWE-125",
|
|
59
59
|
"CWE-362",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
],
|
|
118
118
|
"last_threat_review": "2026-05-01",
|
|
119
119
|
"signature": "l5PS3EMYS5+e4EBeYOaWTeKLcmeWDuqxRjDQFD4m7n1uRdCPziTEkHkEAVxSuBp1aKhbOvShTFpXXtTgZ0nhBg==",
|
|
120
|
-
"signed_at": "2026-05-
|
|
120
|
+
"signed_at": "2026-05-18T01:03:36.901Z",
|
|
121
121
|
"cwe_refs": [
|
|
122
122
|
"CWE-1039",
|
|
123
123
|
"CWE-1426",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
],
|
|
181
181
|
"last_threat_review": "2026-05-01",
|
|
182
182
|
"signature": "KXUDBx+nPn+85iFh7+zMIllAdkjUWbhgXpaot5/yliZwKzVmFFPjQF/xZm8gdZLFkskyO5M0MS/MqjowPvAHBw==",
|
|
183
|
-
"signed_at": "2026-05-
|
|
183
|
+
"signed_at": "2026-05-18T01:03:36.901Z",
|
|
184
184
|
"cwe_refs": [
|
|
185
185
|
"CWE-22",
|
|
186
186
|
"CWE-345",
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
"framework_gaps": [],
|
|
227
227
|
"last_threat_review": "2026-05-01",
|
|
228
228
|
"signature": "Jn4HdauaKGzLGB4lmqgS7ntrrkKykfHrths/mlJegHgjoRsauVK/+S3VN82YxRcnTa1gOYd08hMUV7FnKRs6Cg==",
|
|
229
|
-
"signed_at": "2026-05-
|
|
229
|
+
"signed_at": "2026-05-18T01:03:36.902Z"
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
232
|
"name": "compliance-theater",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
],
|
|
258
258
|
"last_threat_review": "2026-05-01",
|
|
259
259
|
"signature": "byFyQfZFeQ9mhH4+DxNWyM2lBVDcZiEx+vDPSJpjmblb61T3KIK70PWb9KhUKO//9RBwnb7Bz9KbltruhaB3DA==",
|
|
260
|
-
"signed_at": "2026-05-
|
|
260
|
+
"signed_at": "2026-05-18T01:03:36.902Z"
|
|
261
261
|
},
|
|
262
262
|
{
|
|
263
263
|
"name": "exploit-scoring",
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
],
|
|
287
287
|
"last_threat_review": "2026-05-01",
|
|
288
288
|
"signature": "6nar8a3phaFK55Xpgw0XEBz3k4WrtRfW79JfKjgeKRc1FqljMaqmNxb3ftOCFy0CgMEu/lULuubGXFqp0DpcDA==",
|
|
289
|
-
"signed_at": "2026-05-
|
|
289
|
+
"signed_at": "2026-05-18T01:03:36.903Z"
|
|
290
290
|
},
|
|
291
291
|
{
|
|
292
292
|
"name": "rag-pipeline-security",
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
],
|
|
324
324
|
"last_threat_review": "2026-05-01",
|
|
325
325
|
"signature": "8BOfZgS2fm9KeEYZwwUc4JUSVxnLAgQ3UrViUcGlrA1NMcJz92mw7QGGhTx+PUn4yoPTGelxGz6MF5mEqpfDAQ==",
|
|
326
|
-
"signed_at": "2026-05-
|
|
326
|
+
"signed_at": "2026-05-18T01:03:36.903Z",
|
|
327
327
|
"cwe_refs": [
|
|
328
328
|
"CWE-1395",
|
|
329
329
|
"CWE-1426"
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
],
|
|
381
381
|
"last_threat_review": "2026-05-01",
|
|
382
382
|
"signature": "o5CamxRHrwbM+R7lQzEoKxHBTFbo76C3Uf8/Qx3cbLlrXczvI6K9a1KfWIoOq/8UoTuQy7dB6lZge0H+94gbBw==",
|
|
383
|
-
"signed_at": "2026-05-
|
|
383
|
+
"signed_at": "2026-05-18T01:03:36.904Z",
|
|
384
384
|
"d3fend_refs": [
|
|
385
385
|
"D3-CA",
|
|
386
386
|
"D3-CSPP",
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
"framework_gaps": [],
|
|
416
416
|
"last_threat_review": "2026-05-01",
|
|
417
417
|
"signature": "02UBMUa3Wox2vXhKVr+2m0Lq5+sY3azliVeAyNSM2p8tw7Fj/HzKQwsgBVAfTM+5yqDzaIMCmup9UAgn4FYbAw==",
|
|
418
|
-
"signed_at": "2026-05-
|
|
418
|
+
"signed_at": "2026-05-18T01:03:36.904Z",
|
|
419
419
|
"cwe_refs": [
|
|
420
420
|
"CWE-1188"
|
|
421
421
|
]
|
|
@@ -443,7 +443,7 @@
|
|
|
443
443
|
"framework_gaps": [],
|
|
444
444
|
"last_threat_review": "2026-05-01",
|
|
445
445
|
"signature": "3CYvOmOyXGspSkyorxV22yH+LFn0WikZrHggdqB+ZxObq27MA0meOxUFkUKOu47z1tEF99BrmOBKOmE+qXGkCA==",
|
|
446
|
-
"signed_at": "2026-05-
|
|
446
|
+
"signed_at": "2026-05-18T01:03:36.905Z"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"name": "global-grc",
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
"framework_gaps": [],
|
|
476
476
|
"last_threat_review": "2026-05-01",
|
|
477
477
|
"signature": "VcWZd1hN1fxw3BmLqcNP1giz9yiAQEDI928Y9ECOV1bPQvt/zZpONoLg4K7f13HyfoO192mssEcAOTQgnGxQDA==",
|
|
478
|
-
"signed_at": "2026-05-
|
|
478
|
+
"signed_at": "2026-05-18T01:03:36.905Z"
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
481
|
"name": "zeroday-gap-learn",
|
|
@@ -502,7 +502,7 @@
|
|
|
502
502
|
"framework_gaps": [],
|
|
503
503
|
"last_threat_review": "2026-05-01",
|
|
504
504
|
"signature": "iwosQ4gcFZc+6QSmxUOhHB3jse8tHxd3XsXl155mU4K5UgbctHNhOUKMmF7WnUVfOUQ7PafHiMzZIbevvenNBA==",
|
|
505
|
-
"signed_at": "2026-05-
|
|
505
|
+
"signed_at": "2026-05-18T01:03:36.905Z"
|
|
506
506
|
},
|
|
507
507
|
{
|
|
508
508
|
"name": "pqc-first",
|
|
@@ -554,7 +554,7 @@
|
|
|
554
554
|
],
|
|
555
555
|
"last_threat_review": "2026-05-01",
|
|
556
556
|
"signature": "BoFVxwiopgnmDY8AJ0j5KzRkwQQOzdizisTsZOLHBE2BUixr/B6FV8S3AIN3rvS9YixL48rbt8rdAz0j0HDCAw==",
|
|
557
|
-
"signed_at": "2026-05-
|
|
557
|
+
"signed_at": "2026-05-18T01:03:36.906Z",
|
|
558
558
|
"cwe_refs": [
|
|
559
559
|
"CWE-327"
|
|
560
560
|
],
|
|
@@ -601,7 +601,7 @@
|
|
|
601
601
|
],
|
|
602
602
|
"last_threat_review": "2026-05-01",
|
|
603
603
|
"signature": "jPMVYXqS0oy6Ay+mp4FBcc+njppBgO8xZcGrpUBAUOnZikaAkUfG5E4xXYulNIZG2CVPOdTOGhh3/gwUH/s0Ag==",
|
|
604
|
-
"signed_at": "2026-05-
|
|
604
|
+
"signed_at": "2026-05-18T01:03:36.906Z"
|
|
605
605
|
},
|
|
606
606
|
{
|
|
607
607
|
"name": "security-maturity-tiers",
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
],
|
|
639
639
|
"last_threat_review": "2026-05-01",
|
|
640
640
|
"signature": "nZNIznYPxcs2mAjruwejfH2HrlW0SVDQ2Q2Ethh35uJBZkK7twgCDSJKVPbvR5ftaVdslDrq5o6Xhcwf7rWJDw==",
|
|
641
|
-
"signed_at": "2026-05-
|
|
641
|
+
"signed_at": "2026-05-18T01:03:36.906Z",
|
|
642
642
|
"cwe_refs": [
|
|
643
643
|
"CWE-1188"
|
|
644
644
|
]
|
|
@@ -673,7 +673,7 @@
|
|
|
673
673
|
"framework_gaps": [],
|
|
674
674
|
"last_threat_review": "2026-05-11",
|
|
675
675
|
"signature": "ZDo/m8ddmu5J8+uA7sHM85KUyxdSwzZu+BNNAOoOLijjWIaxoGWZ62Tw7ahyyg3pEFcZteDWY53HlSxNysGkBQ==",
|
|
676
|
-
"signed_at": "2026-05-
|
|
676
|
+
"signed_at": "2026-05-18T01:03:36.906Z"
|
|
677
677
|
},
|
|
678
678
|
{
|
|
679
679
|
"name": "attack-surface-pentest",
|
|
@@ -744,7 +744,7 @@
|
|
|
744
744
|
"PTES revision incorporating AI-surface enumeration"
|
|
745
745
|
],
|
|
746
746
|
"signature": "/p8RImZYTSneXWjgwqMbuJN4XKROGWxzVzz3fwldev/qEhUZi3ptW/nZ/OZF0hgrO/04Xbm9p5fHzOshNYCODQ==",
|
|
747
|
-
"signed_at": "2026-05-
|
|
747
|
+
"signed_at": "2026-05-18T01:03:36.907Z"
|
|
748
748
|
},
|
|
749
749
|
{
|
|
750
750
|
"name": "fuzz-testing-strategy",
|
|
@@ -804,7 +804,7 @@
|
|
|
804
804
|
"OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
|
|
805
805
|
],
|
|
806
806
|
"signature": "Kd0vMiFxg48sN0kkmiNzlJe1fFN5chp5KW2rzy534wW4VKdQrXbgoJlb0G5UoDtuABOTP5bXtJpFu3CKvMvRCg==",
|
|
807
|
-
"signed_at": "2026-05-
|
|
807
|
+
"signed_at": "2026-05-18T01:03:36.907Z"
|
|
808
808
|
},
|
|
809
809
|
{
|
|
810
810
|
"name": "dlp-gap-analysis",
|
|
@@ -879,7 +879,7 @@
|
|
|
879
879
|
"Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
|
|
880
880
|
],
|
|
881
881
|
"signature": "lXBKwsA1ouEI8CLFW9AQMwTaR2HTtz/tZC3qEs13XL8IOBpl6OwZj6GkDCWuT1SK4enOgpmKHypaNGJ/vtGQBg==",
|
|
882
|
-
"signed_at": "2026-05-
|
|
882
|
+
"signed_at": "2026-05-18T01:03:36.907Z"
|
|
883
883
|
},
|
|
884
884
|
{
|
|
885
885
|
"name": "supply-chain-integrity",
|
|
@@ -956,7 +956,7 @@
|
|
|
956
956
|
"OpenSSF model-signing — emerging Sigstore-based signing standard for ML model weights; track for production adoption"
|
|
957
957
|
],
|
|
958
958
|
"signature": "6r0zv9/tNfZd/NKSc8z1+4p/6R80EwbelY+mr5zLrwEc/ViD0E8G9SbE2dLuWg4V0EoIMLrWJ/b9RQGSaOYvBQ==",
|
|
959
|
-
"signed_at": "2026-05-
|
|
959
|
+
"signed_at": "2026-05-18T01:03:36.908Z"
|
|
960
960
|
},
|
|
961
961
|
{
|
|
962
962
|
"name": "defensive-countermeasure-mapping",
|
|
@@ -1013,7 +1013,7 @@
|
|
|
1013
1013
|
],
|
|
1014
1014
|
"last_threat_review": "2026-05-11",
|
|
1015
1015
|
"signature": "XZigwq8X/csfrdG10O6Q1V5q0zUqSQGd3QrjRKkZ4fkaodG4mZahYuIQqxc8rU9jjtGAm9LtBXYB+I5csqj9Bw==",
|
|
1016
|
-
"signed_at": "2026-05-
|
|
1016
|
+
"signed_at": "2026-05-18T01:03:36.908Z"
|
|
1017
1017
|
},
|
|
1018
1018
|
{
|
|
1019
1019
|
"name": "identity-assurance",
|
|
@@ -1080,7 +1080,7 @@
|
|
|
1080
1080
|
"d3fend_refs": [],
|
|
1081
1081
|
"last_threat_review": "2026-05-11",
|
|
1082
1082
|
"signature": "zx3uucOcICwlEUJytEMnHsfqTpOSK+Zsv4/Z3hX6AUtUvh5Bi6pgAQYkX45Y6fk5K+QEGR5Vkiecv/9R+UakCw==",
|
|
1083
|
-
"signed_at": "2026-05-
|
|
1083
|
+
"signed_at": "2026-05-18T01:03:36.908Z"
|
|
1084
1084
|
},
|
|
1085
1085
|
{
|
|
1086
1086
|
"name": "ot-ics-security",
|
|
@@ -1136,7 +1136,7 @@
|
|
|
1136
1136
|
"d3fend_refs": [],
|
|
1137
1137
|
"last_threat_review": "2026-05-11",
|
|
1138
1138
|
"signature": "jReqaDZGyzeCmKqO79yMvHszOFjAuKa1iqPBMW4/TD8KGkh0Wd7r6gjQMdk050e/+03K0h/kga4n3QPqdQwbBA==",
|
|
1139
|
-
"signed_at": "2026-05-
|
|
1139
|
+
"signed_at": "2026-05-18T01:03:36.908Z"
|
|
1140
1140
|
},
|
|
1141
1141
|
{
|
|
1142
1142
|
"name": "coordinated-vuln-disclosure",
|
|
@@ -1188,7 +1188,7 @@
|
|
|
1188
1188
|
"NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
|
|
1189
1189
|
],
|
|
1190
1190
|
"signature": "f1w8AOT3bw+IeaAkg+vubUf7+Gx+/zTuQyIKOxQTbF9m1HGIE/SJQlWZST9ALtlH1BN4gJK5WPRmloX6LzQYBw==",
|
|
1191
|
-
"signed_at": "2026-05-
|
|
1191
|
+
"signed_at": "2026-05-18T01:03:36.909Z"
|
|
1192
1192
|
},
|
|
1193
1193
|
{
|
|
1194
1194
|
"name": "threat-modeling-methodology",
|
|
@@ -1238,7 +1238,7 @@
|
|
|
1238
1238
|
"PASTA v2 updates incorporating AI/ML application threats"
|
|
1239
1239
|
],
|
|
1240
1240
|
"signature": "sjSMkSm8L5AuXTmG7SWcnEVsyWo7iEncR3eAXpPU9GIu29AZGnfwmsTBAimbafFT3V4jMix4QHcnZ/HNwwWYCw==",
|
|
1241
|
-
"signed_at": "2026-05-
|
|
1241
|
+
"signed_at": "2026-05-18T01:03:36.909Z"
|
|
1242
1242
|
},
|
|
1243
1243
|
{
|
|
1244
1244
|
"name": "webapp-security",
|
|
@@ -1312,7 +1312,7 @@
|
|
|
1312
1312
|
"d3fend_refs": [],
|
|
1313
1313
|
"last_threat_review": "2026-05-11",
|
|
1314
1314
|
"signature": "5zF3M+0ic8dj2bgl25q5XK4Ha4Mf1Xeu+MJN0zyOmTSZf2iG7tMgqtEfXfiES+N9qiL392eN1c0fzScqc94ZAw==",
|
|
1315
|
-
"signed_at": "2026-05-
|
|
1315
|
+
"signed_at": "2026-05-18T01:03:36.909Z"
|
|
1316
1316
|
},
|
|
1317
1317
|
{
|
|
1318
1318
|
"name": "ai-risk-management",
|
|
@@ -1362,7 +1362,7 @@
|
|
|
1362
1362
|
"d3fend_refs": [],
|
|
1363
1363
|
"last_threat_review": "2026-05-11",
|
|
1364
1364
|
"signature": "n/S2woidz4PVZ11V8gWhCiwp1H9n+8Pwm3aXGarXd71Hp15MHPY9sTMxJIcVWT6qnTBhPdSf+uPcV2nxadi2AQ==",
|
|
1365
|
-
"signed_at": "2026-05-
|
|
1365
|
+
"signed_at": "2026-05-18T01:03:36.910Z"
|
|
1366
1366
|
},
|
|
1367
1367
|
{
|
|
1368
1368
|
"name": "sector-healthcare",
|
|
@@ -1422,7 +1422,7 @@
|
|
|
1422
1422
|
"d3fend_refs": [],
|
|
1423
1423
|
"last_threat_review": "2026-05-11",
|
|
1424
1424
|
"signature": "53kKCGnBk6b88Q0Mf34CkowBH1osOYTpUf0wkMK70CAOCna2qYaBTTnYVHamV2+DsE6IC9W+JIzmPWcl3jC5BA==",
|
|
1425
|
-
"signed_at": "2026-05-
|
|
1425
|
+
"signed_at": "2026-05-18T01:03:36.910Z"
|
|
1426
1426
|
},
|
|
1427
1427
|
{
|
|
1428
1428
|
"name": "sector-financial",
|
|
@@ -1503,7 +1503,7 @@
|
|
|
1503
1503
|
"TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
|
|
1504
1504
|
],
|
|
1505
1505
|
"signature": "64PrvGD26sxvxzfmMBsCGpocascDDurGSNMJrdJJ5IS4rj5aXS6oQCBw0pDDasJvwaQdkrOiQ/RoEQoEQnRkDg==",
|
|
1506
|
-
"signed_at": "2026-05-
|
|
1506
|
+
"signed_at": "2026-05-18T01:03:36.910Z"
|
|
1507
1507
|
},
|
|
1508
1508
|
{
|
|
1509
1509
|
"name": "sector-federal-government",
|
|
@@ -1572,7 +1572,7 @@
|
|
|
1572
1572
|
"Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
|
|
1573
1573
|
],
|
|
1574
1574
|
"signature": "qbX+JHQDR5Q6VJ09F9kABSVw5P+mTRcp93+lGfHJmYM9l6MFoYRUJ0E7y5QFXRjNFGk/ybb1Q3vTsiALamcAAA==",
|
|
1575
|
-
"signed_at": "2026-05-
|
|
1575
|
+
"signed_at": "2026-05-18T01:03:36.911Z"
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"name": "sector-energy",
|
|
@@ -1637,7 +1637,7 @@
|
|
|
1637
1637
|
"ICS-CERT advisory feed (https://www.cisa.gov/news-events/cybersecurity-advisories/ics-advisories) for vendor CVEs in Siemens, Rockwell, Schneider Electric, ABB, GE Vernova, Hitachi Energy, AVEVA / OSIsoft PI"
|
|
1638
1638
|
],
|
|
1639
1639
|
"signature": "bpJCQ55+HLSgiJPoyvDBEr7mPhDQoLdn2dkDW0mNhU+lfXuQ6WDiNGdhUEFu8J8FF4sg2imn5vlZ2xgLJKGxBA==",
|
|
1640
|
-
"signed_at": "2026-05-
|
|
1640
|
+
"signed_at": "2026-05-18T01:03:36.911Z"
|
|
1641
1641
|
},
|
|
1642
1642
|
{
|
|
1643
1643
|
"name": "sector-telecom",
|
|
@@ -1723,7 +1723,7 @@
|
|
|
1723
1723
|
"O-RAN SFG / WG11 security specifications"
|
|
1724
1724
|
],
|
|
1725
1725
|
"signature": "Xk9QmR+9N9JtEHE/+jXl0glgzszOfHq+SwfmIMiHYH7/pVmbSlxwBBejrV4sg6Y4zarq4ry9Sgcv8hybE8vyAQ==",
|
|
1726
|
-
"signed_at": "2026-05-
|
|
1726
|
+
"signed_at": "2026-05-18T01:03:36.912Z"
|
|
1727
1727
|
},
|
|
1728
1728
|
{
|
|
1729
1729
|
"name": "api-security",
|
|
@@ -1792,7 +1792,7 @@
|
|
|
1792
1792
|
"d3fend_refs": [],
|
|
1793
1793
|
"last_threat_review": "2026-05-11",
|
|
1794
1794
|
"signature": "ACPV5cQskL0TR4SK9eKev6jCNEWj+d6zE+BOB7QHXAcungz3K5qugDTkz3NjEHefebiFi8GW8VPuchA8vRYODg==",
|
|
1795
|
-
"signed_at": "2026-05-
|
|
1795
|
+
"signed_at": "2026-05-18T01:03:36.912Z"
|
|
1796
1796
|
},
|
|
1797
1797
|
{
|
|
1798
1798
|
"name": "cloud-security",
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
"CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
|
|
1874
1874
|
],
|
|
1875
1875
|
"signature": "9eHXut2agJm6+Z7r6zRD8Rbokj1yTeSeFh9BIoZCE9KrntlnAVU0Y0jl+JRBHOptWh4z04bOW1eAhy0vjl+lAQ==",
|
|
1876
|
-
"signed_at": "2026-05-
|
|
1876
|
+
"signed_at": "2026-05-18T01:03:36.912Z"
|
|
1877
1877
|
},
|
|
1878
1878
|
{
|
|
1879
1879
|
"name": "container-runtime-security",
|
|
@@ -1935,7 +1935,7 @@
|
|
|
1935
1935
|
"d3fend_refs": [],
|
|
1936
1936
|
"last_threat_review": "2026-05-11",
|
|
1937
1937
|
"signature": "gTi2joMM9bqqXQ+R7oqL0MUtz1sOettl0mOXrQS5jTnZ9TDwrg3E/PbuanQjPDC8aLRFRgPdi/EN2Rtp5Zj+Dg==",
|
|
1938
|
-
"signed_at": "2026-05-
|
|
1938
|
+
"signed_at": "2026-05-18T01:03:36.913Z"
|
|
1939
1939
|
},
|
|
1940
1940
|
{
|
|
1941
1941
|
"name": "mlops-security",
|
|
@@ -2006,7 +2006,7 @@
|
|
|
2006
2006
|
"MITRE ATLAS v5.4.0 (released February 2026) shipped the AML.T0010 sub-technique expansion this forecast tracked plus new techniques (\"Publish Poisoned AI Agent Tool\", \"Escape to Host\"); inventory now 16 tactics, 84 techniques, 56 sub-techniques. Forward watch: ATLAS v5.5 / v6.0 — track next-cadence updates to agentic-AI TTPs and MLOps-pipeline-specific techniques"
|
|
2007
2007
|
],
|
|
2008
2008
|
"signature": "Rj1G9RKTQ6cROzmoOBM0e3hOe6HFeof8fm5V2w4nTnd6pjG6c0fiaUpXRCgYiT/m4UVtbuMGAPOehATLZgIBDA==",
|
|
2009
|
-
"signed_at": "2026-05-
|
|
2009
|
+
"signed_at": "2026-05-18T01:03:36.913Z"
|
|
2010
2010
|
},
|
|
2011
2011
|
{
|
|
2012
2012
|
"name": "incident-response-playbook",
|
|
@@ -2068,7 +2068,7 @@
|
|
|
2068
2068
|
"NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
|
|
2069
2069
|
],
|
|
2070
2070
|
"signature": "6/9Ehyx49Rr/o5Tp9oQ3cfHa2WhKYtLXJp0akoDbRC1RSCxZVbkKaW7/5/IkdgCQMiJivI/Q0g0Bq/5q/UUZAA==",
|
|
2071
|
-
"signed_at": "2026-05-
|
|
2071
|
+
"signed_at": "2026-05-18T01:03:36.913Z"
|
|
2072
2072
|
},
|
|
2073
2073
|
{
|
|
2074
2074
|
"name": "ransomware-response",
|
|
@@ -2148,7 +2148,7 @@
|
|
|
2148
2148
|
],
|
|
2149
2149
|
"last_threat_review": "2026-05-15",
|
|
2150
2150
|
"signature": "+5FiwJFRq08x2oXejTO1Nw6Cd+EzOcrwAG2xNrngJ8vHPDXqFgGAjTAJuXrNl7QblTfSLQ+xvoAziBly56/eDg==",
|
|
2151
|
-
"signed_at": "2026-05-
|
|
2151
|
+
"signed_at": "2026-05-18T01:03:36.914Z"
|
|
2152
2152
|
},
|
|
2153
2153
|
{
|
|
2154
2154
|
"name": "email-security-anti-phishing",
|
|
@@ -2201,7 +2201,7 @@
|
|
|
2201
2201
|
"d3fend_refs": [],
|
|
2202
2202
|
"last_threat_review": "2026-05-11",
|
|
2203
2203
|
"signature": "T2epR7LKAKPl5iJuQ5fm5/bfVqA6E0JXbcLSUe+GC3/BLtTVjCCCBAQzhIaC5/L5QM9VF0tZ7mM9Z5RjKPFHDg==",
|
|
2204
|
-
"signed_at": "2026-05-
|
|
2204
|
+
"signed_at": "2026-05-18T01:03:36.914Z"
|
|
2205
2205
|
},
|
|
2206
2206
|
{
|
|
2207
2207
|
"name": "age-gates-child-safety",
|
|
@@ -2269,7 +2269,7 @@
|
|
|
2269
2269
|
"US state adult-site age-verification laws — 19+ states by mid-2026 (TX HB 18 upheld by SCOTUS June 2025 in Free Speech Coalition v. Paxton); track ongoing challenges in remaining states"
|
|
2270
2270
|
],
|
|
2271
2271
|
"signature": "L/igYQahvedjP6oxty1GDxBETVoGDo11hFTrri/5M+xr2V0KnUqFYZOOe1ALcy/mfO8B6wPmD3WIOin9C2PKCw==",
|
|
2272
|
-
"signed_at": "2026-05-
|
|
2272
|
+
"signed_at": "2026-05-18T01:03:36.914Z"
|
|
2273
2273
|
},
|
|
2274
2274
|
{
|
|
2275
2275
|
"name": "cloud-iam-incident",
|
|
@@ -2349,7 +2349,7 @@
|
|
|
2349
2349
|
],
|
|
2350
2350
|
"last_threat_review": "2026-05-15",
|
|
2351
2351
|
"signature": "6O5peFBKz4XFasajnzMIF8Zjdb84bd361WHRGx6WiddKNfu687Q9qAanvzujxPmzYA1qiGGJJkujT+6y8T/WCQ==",
|
|
2352
|
-
"signed_at": "2026-05-
|
|
2352
|
+
"signed_at": "2026-05-18T01:03:36.914Z"
|
|
2353
2353
|
},
|
|
2354
2354
|
{
|
|
2355
2355
|
"name": "idp-incident-response",
|
|
@@ -2430,11 +2430,11 @@
|
|
|
2430
2430
|
],
|
|
2431
2431
|
"last_threat_review": "2026-05-15",
|
|
2432
2432
|
"signature": "ew9Kglc9fAZzbn0ZIfGP7WSK/j4eV2VhSvpy+s5bEfNEVYIMa2kZjnGBapgUsyGDLes9H9K2ovjQyX17+GKiBw==",
|
|
2433
|
-
"signed_at": "2026-05-
|
|
2433
|
+
"signed_at": "2026-05-18T01:03:36.915Z"
|
|
2434
2434
|
}
|
|
2435
2435
|
],
|
|
2436
2436
|
"manifest_signature": {
|
|
2437
2437
|
"algorithm": "Ed25519",
|
|
2438
|
-
"signature_base64": "
|
|
2438
|
+
"signature_base64": "UAFB9lil5aa5kZFebqJ9w3CUp7xla6nh8ngD8qXQsxTgC3D5CpG3xUbtJOvQDxbBsGAZUm0HqwHvz2waW3ntDw=="
|
|
2439
2439
|
}
|
|
2440
2440
|
}
|