@blamejs/exceptd-skills 0.10.1 → 0.10.3
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/AGENTS.md +51 -0
- package/CHANGELOG.md +72 -0
- package/bin/exceptd.js +468 -37
- package/data/_indexes/_meta.json +2 -2
- package/data/playbooks/crypto-codebase.json +1387 -0
- package/data/playbooks/kernel.json +1 -1
- package/data/playbooks/library-author.json +1792 -0
- package/lib/framework-gap.js +17 -1
- package/lib/playbook-runner.js +146 -11
- package/lib/prefetch.js +9 -1
- package/manifest-snapshot.json +1 -1
- package/manifest.json +39 -39
- package/orchestrator/index.js +98 -8
- package/package.json +2 -1
- package/sbom.cdx.json +6 -6
- package/sources/README.md +170 -0
- package/sources/validators/atlas-validator.js +158 -0
- package/sources/validators/cve-validator.js +277 -0
- package/sources/validators/index.js +86 -0
- package/sources/validators/rfc-validator.js +165 -0
- package/sources/validators/version-pin-validator.js +144 -0
package/lib/framework-gap.js
CHANGED
|
@@ -160,7 +160,23 @@ function gapReport(frameworkIds, threatScenario, controlGaps, cveCatalog = {}) {
|
|
|
160
160
|
|
|
161
161
|
const frameworkResults = {};
|
|
162
162
|
for (const id of frameworkIds) {
|
|
163
|
-
|
|
163
|
+
// Match a framework filter ID against catalog entries by:
|
|
164
|
+
// - exact match against gap.framework (e.g. "NIST SP 800-53 Rev 5")
|
|
165
|
+
// - normalized substring match (strip case + spaces + hyphens, e.g. user
|
|
166
|
+
// passing "nist-800-53" matches catalog "NIST SP 800-53 Rev 5")
|
|
167
|
+
// - normalized prefix match on the gap KEY (e.g. user "nist-800-53"
|
|
168
|
+
// matches keys "NIST-800-53-SI-2", "NIST-800-53-SC-8")
|
|
169
|
+
// This makes the named-framework filter behave the same way `all` does
|
|
170
|
+
// when extracting per-framework subsets.
|
|
171
|
+
const normalize = (s) => String(s).toLowerCase().replace(/[\s_-]/g, '');
|
|
172
|
+
const idNorm = normalize(id);
|
|
173
|
+
const frameworkGaps = relevantGaps.filter(([key, g]) => {
|
|
174
|
+
if (!g.framework) return false;
|
|
175
|
+
if (g.framework === id) return true;
|
|
176
|
+
if (normalize(g.framework).includes(idNorm)) return true;
|
|
177
|
+
if (normalize(key).startsWith(idNorm)) return true;
|
|
178
|
+
return false;
|
|
179
|
+
});
|
|
164
180
|
frameworkResults[id] = {
|
|
165
181
|
gap_count: frameworkGaps.length,
|
|
166
182
|
gaps: frameworkGaps.map(([key, g]) => ({
|
package/lib/playbook-runner.js
CHANGED
|
@@ -326,10 +326,20 @@ function analyze(playbookId, directiveId, detectResult, agentSignals = {}) {
|
|
|
326
326
|
|
|
327
327
|
// Match catalogued CVEs from the domain.cve_refs list. The agent submits
|
|
328
328
|
// signal values; engine joins to the catalog for RWEP context.
|
|
329
|
+
// VEX filter (agentSignals.vex_filter): a set of CVE IDs the operator
|
|
330
|
+
// has formally declared not_affected via a CycloneDX/OpenVEX statement.
|
|
331
|
+
// We drop those from matched_cves before scoring, and surface them
|
|
332
|
+
// separately so the analyze response still records the disposition.
|
|
329
333
|
const cveRefs = playbook.domain.cve_refs || [];
|
|
330
|
-
const
|
|
331
|
-
.
|
|
332
|
-
|
|
334
|
+
const vexFilter = agentSignals.vex_filter instanceof Set ? agentSignals.vex_filter
|
|
335
|
+
: (Array.isArray(agentSignals.vex_filter) ? new Set(agentSignals.vex_filter) : null);
|
|
336
|
+
const allMatches = cveRefs.map(id => xref.byCve(id)).filter(r => r.found);
|
|
337
|
+
const matchedCves = vexFilter
|
|
338
|
+
? allMatches.filter(c => !vexFilter.has(c.cve_id))
|
|
339
|
+
: allMatches;
|
|
340
|
+
const vexDropped = vexFilter
|
|
341
|
+
? allMatches.filter(c => vexFilter.has(c.cve_id)).map(c => c.cve_id)
|
|
342
|
+
: [];
|
|
333
343
|
|
|
334
344
|
// RWEP composition: start from the catalogue's per-CVE rwep_score (already
|
|
335
345
|
// baked from KEV + PoC + AI-disc + active-exploitation + blast-radius), then
|
|
@@ -423,10 +433,44 @@ function analyze(playbookId, directiveId, detectResult, agentSignals = {}) {
|
|
|
423
433
|
verdict_text: theaterVerdict === 'theater' ? an.compliance_theater_check?.theater_verdict_if_gap : null
|
|
424
434
|
},
|
|
425
435
|
framework_gap_mapping: frameworkGaps,
|
|
426
|
-
escalations
|
|
436
|
+
escalations,
|
|
437
|
+
vex: vexFilter ? {
|
|
438
|
+
filter_applied: true,
|
|
439
|
+
dropped_cve_count: vexDropped.length,
|
|
440
|
+
dropped_cves: vexDropped,
|
|
441
|
+
note: vexDropped.length
|
|
442
|
+
? `${vexDropped.length} CVE(s) dropped from analyze because the operator-supplied VEX statement marks them not_affected / resolved / false_positive. They remain in cve-catalog.json; the disposition lives in the VEX file.`
|
|
443
|
+
: "VEX filter supplied; zero matches dropped (no CVEs in domain.cve_refs matched the VEX not-affected set)."
|
|
444
|
+
} : null
|
|
427
445
|
};
|
|
428
446
|
}
|
|
429
447
|
|
|
448
|
+
/**
|
|
449
|
+
* Extract a set of "not affected" CVE IDs from a VEX document. Supports
|
|
450
|
+
* CycloneDX VEX (analysis.state in {not_affected, resolved, false_positive})
|
|
451
|
+
* and OpenVEX (statements[].status === "not_affected"). Returns a Set<string>.
|
|
452
|
+
*/
|
|
453
|
+
function vexFilterFromDoc(doc) {
|
|
454
|
+
const out = new Set();
|
|
455
|
+
if (!doc || typeof doc !== 'object') return out;
|
|
456
|
+
|
|
457
|
+
// CycloneDX shape
|
|
458
|
+
for (const v of (doc.vulnerabilities || [])) {
|
|
459
|
+
const state = v.analysis && v.analysis.state;
|
|
460
|
+
if (state === 'not_affected' || state === 'resolved' || state === 'false_positive') {
|
|
461
|
+
if (v.id) out.add(v.id);
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
// OpenVEX shape
|
|
465
|
+
for (const s of (doc.statements || [])) {
|
|
466
|
+
if (s.status === 'not_affected' || s.status === 'fixed') {
|
|
467
|
+
const id = s.vulnerability && (s.vulnerability['@id'] || s.vulnerability.name || s.vulnerability);
|
|
468
|
+
if (typeof id === 'string') out.add(id);
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
return out;
|
|
472
|
+
}
|
|
473
|
+
|
|
430
474
|
// --- phase 6: validate ---
|
|
431
475
|
|
|
432
476
|
function validate(playbookId, directiveId, analyzeResult, agentSignals = {}) {
|
|
@@ -542,13 +586,23 @@ function close(playbookId, directiveId, analyzeResult, validateResult, agentSign
|
|
|
542
586
|
}
|
|
543
587
|
}
|
|
544
588
|
|
|
545
|
-
// evidence_package
|
|
589
|
+
// evidence_package — playbook declares one primary bundle_format; the
|
|
590
|
+
// operator may request additional formats via agentSignals._bundle_formats
|
|
591
|
+
// (e.g. SARIF for GitHub Code Scanning + OpenVEX for supply-chain tooling
|
|
592
|
+
// alongside the CSAF default).
|
|
593
|
+
const primaryFormat = c.evidence_package?.bundle_format || 'csaf-2.0';
|
|
594
|
+
const extraFormats = Array.isArray(agentSignals._bundle_formats)
|
|
595
|
+
? agentSignals._bundle_formats.filter(f => f !== primaryFormat)
|
|
596
|
+
: [];
|
|
546
597
|
const evidencePackage = c.evidence_package ? {
|
|
547
|
-
bundle_format:
|
|
598
|
+
bundle_format: primaryFormat,
|
|
548
599
|
contents: c.evidence_package.contents || [],
|
|
549
600
|
destination: c.evidence_package.destination || 'local_only',
|
|
550
601
|
signed: c.evidence_package.signed !== false,
|
|
551
|
-
bundle_body: buildEvidenceBundle(
|
|
602
|
+
bundle_body: buildEvidenceBundle(primaryFormat, playbook, analyzeResult, validateResult, agentSignals),
|
|
603
|
+
bundles_by_format: extraFormats.length ? Object.fromEntries(
|
|
604
|
+
[primaryFormat, ...extraFormats].map(f => [f, buildEvidenceBundle(f, playbook, analyzeResult, validateResult, agentSignals)])
|
|
605
|
+
) : null,
|
|
552
606
|
} : null;
|
|
553
607
|
|
|
554
608
|
if (evidencePackage && evidencePackage.signed && runOpts.session_key) {
|
|
@@ -643,22 +697,102 @@ function buildEvidenceBundle(format, playbook, analyze, validate, agentSignals)
|
|
|
643
697
|
},
|
|
644
698
|
vulnerabilities: analyze.matched_cves.map(c => ({
|
|
645
699
|
cve: c.cve_id,
|
|
646
|
-
scores: [{ products: [], cvss_v3: { base_score: 0 } }],
|
|
700
|
+
scores: [{ products: [], cvss_v3: { base_score: c.cvss_score || 0 } }],
|
|
647
701
|
threats: c.active_exploitation === 'confirmed' ? [{ category: 'exploit_status', details: 'Active exploitation confirmed (CISA KEV).' }] : [],
|
|
648
702
|
remediations: [{ category: 'vendor_fix', details: validate.selected_remediation?.description || 'See selected remediation path.' }]
|
|
649
703
|
})),
|
|
650
704
|
exceptd_extension: {
|
|
651
705
|
rwep: analyze.rwep,
|
|
652
706
|
blast_radius_score: analyze.blast_radius_score,
|
|
653
|
-
compliance_theater: analyze.
|
|
707
|
+
compliance_theater: analyze.compliance_theater_check,
|
|
654
708
|
framework_gap_mapping: analyze.framework_gap_mapping,
|
|
655
709
|
evidence_requirements: validate.evidence_requirements,
|
|
656
710
|
residual_risk_statement: validate.residual_risk_statement
|
|
657
711
|
}
|
|
658
712
|
};
|
|
659
713
|
}
|
|
660
|
-
|
|
661
|
-
|
|
714
|
+
|
|
715
|
+
// SARIF 2.1.0 — GitHub Code Scanning / VS Code SARIF Viewer / Azure DevOps
|
|
716
|
+
// and most static analysis tooling. One run per playbook directive, one
|
|
717
|
+
// result per matched CVE. Each result references a rule (cve_id) and ties
|
|
718
|
+
// back to the directive as the "tool" producer.
|
|
719
|
+
if (format === 'sarif' || format === 'sarif-2.1.0') {
|
|
720
|
+
return {
|
|
721
|
+
$schema: 'https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json',
|
|
722
|
+
version: '2.1.0',
|
|
723
|
+
runs: [{
|
|
724
|
+
tool: {
|
|
725
|
+
driver: {
|
|
726
|
+
name: 'exceptd',
|
|
727
|
+
version: playbook._meta.version,
|
|
728
|
+
informationUri: 'https://exceptd.com',
|
|
729
|
+
rules: analyze.matched_cves.map(c => ({
|
|
730
|
+
id: c.cve_id,
|
|
731
|
+
shortDescription: { text: c.cve_id },
|
|
732
|
+
fullDescription: { text: `RWEP ${c.rwep} · KEV=${c.cisa_kev} · active_exploitation=${c.active_exploitation} · PoC=${c.poc_available}` },
|
|
733
|
+
defaultConfiguration: { level: c.rwep >= 90 ? 'error' : c.rwep >= 70 ? 'warning' : 'note' },
|
|
734
|
+
helpUri: `https://nvd.nist.gov/vuln/detail/${c.cve_id}`,
|
|
735
|
+
}))
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
results: analyze.matched_cves.map(c => ({
|
|
739
|
+
ruleId: c.cve_id,
|
|
740
|
+
level: c.rwep >= 90 ? 'error' : c.rwep >= 70 ? 'warning' : 'note',
|
|
741
|
+
message: { text: `${c.cve_id}: RWEP ${c.rwep}, blast_radius ${analyze.blast_radius_score}. ${validate.selected_remediation?.description || ''}` },
|
|
742
|
+
properties: {
|
|
743
|
+
rwep: c.rwep,
|
|
744
|
+
cisa_kev: c.cisa_kev,
|
|
745
|
+
cisa_kev_due_date: c.cisa_kev_due_date,
|
|
746
|
+
active_exploitation: c.active_exploitation,
|
|
747
|
+
ai_discovered: c.ai_discovered,
|
|
748
|
+
blast_radius_score: analyze.blast_radius_score,
|
|
749
|
+
framework_gaps: analyze.framework_gap_mapping?.length || 0,
|
|
750
|
+
}
|
|
751
|
+
}))
|
|
752
|
+
}]
|
|
753
|
+
};
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
// OpenVEX 0.2.0 — supply-chain VEX statements. Each matched CVE becomes a
|
|
757
|
+
// statement with status derived from confidence + RWEP. Downstream tools
|
|
758
|
+
// (sigstore, in-toto, GUAC) consume this directly.
|
|
759
|
+
if (format === 'openvex' || format === 'openvex-0.2.0') {
|
|
760
|
+
const issued = new Date().toISOString();
|
|
761
|
+
return {
|
|
762
|
+
'@context': 'https://openvex.dev/ns/v0.2.0',
|
|
763
|
+
'@id': `https://exceptd.com/vex/${playbook._meta.id}/${Date.now()}`,
|
|
764
|
+
author: 'exceptd',
|
|
765
|
+
timestamp: issued,
|
|
766
|
+
version: 1,
|
|
767
|
+
statements: analyze.matched_cves.map(c => ({
|
|
768
|
+
vulnerability: { '@id': c.cve_id, name: c.cve_id },
|
|
769
|
+
status: c.active_exploitation === 'confirmed' ? 'under_investigation' : (c.live_patch_available ? 'fixed' : 'affected'),
|
|
770
|
+
timestamp: issued,
|
|
771
|
+
action_statement: validate.selected_remediation?.description || null,
|
|
772
|
+
impact_statement: `RWEP ${c.rwep}. Blast radius ${analyze.blast_radius_score}/5.`
|
|
773
|
+
}))
|
|
774
|
+
};
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
if (format === 'markdown') {
|
|
778
|
+
const lines = [
|
|
779
|
+
`# exceptd finding: ${playbook.domain.name}`,
|
|
780
|
+
`**Playbook:** ${playbook._meta.id} v${playbook._meta.version}`,
|
|
781
|
+
`**Matched CVEs:** ${analyze.matched_cves.length}`,
|
|
782
|
+
`**Top RWEP:** ${analyze.rwep?.adjusted || 0}`,
|
|
783
|
+
`**Blast radius:** ${analyze.blast_radius_score || 'unknown'}/5`,
|
|
784
|
+
`**Theater verdict:** ${analyze.compliance_theater_check?.verdict || 'n/a'}`,
|
|
785
|
+
`\n## Matched CVEs`,
|
|
786
|
+
...analyze.matched_cves.map(c => `- **${c.cve_id}** RWEP ${c.rwep} · KEV=${c.cisa_kev} · ${c.active_exploitation}`),
|
|
787
|
+
`\n## Selected remediation`,
|
|
788
|
+
validate.selected_remediation ? `${validate.selected_remediation.id} (priority ${validate.selected_remediation.priority}): ${validate.selected_remediation.description}` : 'No remediation path selected.',
|
|
789
|
+
`\n## Residual risk`,
|
|
790
|
+
validate.residual_risk_statement ? `${validate.residual_risk_statement.risk}\n\n_Acceptance level: ${validate.residual_risk_statement.acceptance_level}_` : 'None recorded.',
|
|
791
|
+
];
|
|
792
|
+
return { format: 'markdown', body: lines.join('\n') };
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
return { format, note: 'Unknown format — supported: csaf-2.0, sarif, openvex, markdown.', analyze, validate };
|
|
662
796
|
}
|
|
663
797
|
|
|
664
798
|
// --- orchestrate: full run in one call ---
|
|
@@ -887,6 +1021,7 @@ module.exports = {
|
|
|
887
1021
|
validate,
|
|
888
1022
|
close,
|
|
889
1023
|
run,
|
|
1024
|
+
vexFilterFromDoc,
|
|
890
1025
|
// internal helpers exposed for tests
|
|
891
1026
|
_resolvedPhase: resolvedPhase,
|
|
892
1027
|
_deepMerge: deepMerge,
|
package/lib/prefetch.js
CHANGED
|
@@ -260,6 +260,10 @@ async function prefetch(options = {}) {
|
|
|
260
260
|
result.by_source[item.source].skipped_fresh++;
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
|
+
// Unconditional one-line summary (--quiet preserved on per-entry chatter
|
|
264
|
+
// but operator still needs confirmation the dry-run completed).
|
|
265
|
+
const stale = plan.length - result.skipped_fresh;
|
|
266
|
+
console.log(`prefetch summary: 0 fetched, ${result.skipped_fresh} fresh, ${stale} would-fetch (dry-run)`);
|
|
263
267
|
return result;
|
|
264
268
|
}
|
|
265
269
|
|
|
@@ -306,7 +310,11 @@ async function prefetch(options = {}) {
|
|
|
306
310
|
idx.generated_at = new Date().toISOString();
|
|
307
311
|
saveIndex(opts.cacheDir, idx);
|
|
308
312
|
|
|
309
|
-
|
|
313
|
+
// Final summary is unconditional — --quiet suppresses per-entry chatter
|
|
314
|
+
// (the noisy part) but the operator still needs one line confirming success.
|
|
315
|
+
// Without this, --quiet + --no-network was zero output even on dry-run
|
|
316
|
+
// success, leaving operators unsure if the command had run at all.
|
|
317
|
+
console.log(`prefetch summary: ${result.fetched} fetched, ${result.skipped_fresh} fresh, ${result.errors} error(s)${opts.noNetwork ? " (dry-run)" : ""}`);
|
|
310
318
|
return result;
|
|
311
319
|
}
|
|
312
320
|
|
package/manifest-snapshot.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_comment": "Auto-generated by scripts/refresh-manifest-snapshot.js — do not hand-edit. Public skill surface used by check-manifest-snapshot.js to detect breaking removals.",
|
|
3
|
-
"_generated_at": "2026-05-
|
|
3
|
+
"_generated_at": "2026-05-12T14:06:22.523Z",
|
|
4
4
|
"atlas_version": "5.1.0",
|
|
5
5
|
"skill_count": 38,
|
|
6
6
|
"skills": [
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceptd-security",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
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",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
],
|
|
53
53
|
"last_threat_review": "2026-05-01",
|
|
54
54
|
"signature": "WprHkO1KOjQtCBj6/EJghBTNyNKJhn7O2HDbAQZPi5jn4flwHpSrtP8LC15a4Unoh+xiIIgGhvTHZIQFHGMpBQ==",
|
|
55
|
-
"signed_at": "2026-05-
|
|
55
|
+
"signed_at": "2026-05-12T14:06:21.967Z",
|
|
56
56
|
"cwe_refs": [
|
|
57
57
|
"CWE-125",
|
|
58
58
|
"CWE-362",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
],
|
|
117
117
|
"last_threat_review": "2026-05-01",
|
|
118
118
|
"signature": "fg20bOXGRkPUdLmegeXpTM4hnzl/ArgcVc88rItZN5DdsnFnzPgUU1PwCI82zooyj2GfxJHYjxNkq5qd2zNPBg==",
|
|
119
|
-
"signed_at": "2026-05-
|
|
119
|
+
"signed_at": "2026-05-12T14:06:21.969Z",
|
|
120
120
|
"cwe_refs": [
|
|
121
121
|
"CWE-1039",
|
|
122
122
|
"CWE-1426",
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
],
|
|
180
180
|
"last_threat_review": "2026-05-01",
|
|
181
181
|
"signature": "6JuSzkSSFzFHEZ3ANzqjtIbKPOkwJeKhQ+8WAPB4+dTRvDSeg46n3D88XfGaNd2z7pmg/i8p9ZoImQcHFS4BCg==",
|
|
182
|
-
"signed_at": "2026-05-
|
|
182
|
+
"signed_at": "2026-05-12T14:06:21.970Z",
|
|
183
183
|
"cwe_refs": [
|
|
184
184
|
"CWE-22",
|
|
185
185
|
"CWE-345",
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"framework_gaps": [],
|
|
226
226
|
"last_threat_review": "2026-05-01",
|
|
227
227
|
"signature": "PYSw9abiYfW+y7IkY8udJG5LSds2a4rMimlw3rrdD0zE3vunEeV/y7oTmDD4o83OqHSCKNzF/7vMhvd/noqICQ==",
|
|
228
|
-
"signed_at": "2026-05-
|
|
228
|
+
"signed_at": "2026-05-12T14:06:21.970Z"
|
|
229
229
|
},
|
|
230
230
|
{
|
|
231
231
|
"name": "compliance-theater",
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
],
|
|
257
257
|
"last_threat_review": "2026-05-01",
|
|
258
258
|
"signature": "BMFmmJYP3HsHIjUqnhw8E3MiMGZJsI/eDq51we+nxUicZ8nFUQT9DhmRntAqOs6BUnsfiQNNLc/rrsNh8yg1CQ==",
|
|
259
|
-
"signed_at": "2026-05-
|
|
259
|
+
"signed_at": "2026-05-12T14:06:21.971Z"
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"name": "exploit-scoring",
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
],
|
|
286
286
|
"last_threat_review": "2026-05-01",
|
|
287
287
|
"signature": "VGPyDwy5BRlpn1lZthhPB6ytb4ZcU2j0KtCZbaMkyLdMugQJtK2yEuwrsDH4yEtAhTB6/A4B3eSygJckum49Ag==",
|
|
288
|
-
"signed_at": "2026-05-
|
|
288
|
+
"signed_at": "2026-05-12T14:06:21.971Z"
|
|
289
289
|
},
|
|
290
290
|
{
|
|
291
291
|
"name": "rag-pipeline-security",
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
],
|
|
323
323
|
"last_threat_review": "2026-05-01",
|
|
324
324
|
"signature": "XkFGpsNnXBVslkQ48usEu9l1LjPiV2ppW+M4B63zXFBP2Puh52qYCffEPjUHYhoO5bjgTM7yCbK8XF/Dzk5wBw==",
|
|
325
|
-
"signed_at": "2026-05-
|
|
325
|
+
"signed_at": "2026-05-12T14:06:21.971Z",
|
|
326
326
|
"cwe_refs": [
|
|
327
327
|
"CWE-1395",
|
|
328
328
|
"CWE-1426"
|
|
@@ -379,7 +379,7 @@
|
|
|
379
379
|
],
|
|
380
380
|
"last_threat_review": "2026-05-01",
|
|
381
381
|
"signature": "1Xqy7Kxxy6GpTvuYJPdllPzVDRFxb7N6AuxKuoaO4v91CiZLmiXt0sTIWImKJ3p9Eup6rJNDdsY71dolFhHNBA==",
|
|
382
|
-
"signed_at": "2026-05-
|
|
382
|
+
"signed_at": "2026-05-12T14:06:21.972Z",
|
|
383
383
|
"d3fend_refs": [
|
|
384
384
|
"D3-CA",
|
|
385
385
|
"D3-CSPP",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
"framework_gaps": [],
|
|
415
415
|
"last_threat_review": "2026-05-01",
|
|
416
416
|
"signature": "QNLOmAL54S/Cmk4cdO4L2BCGkqZ/FgY4UBsKWtg/EEW+YXF5ev+a8XsUT8q5veuUa2VYcYna7rD1iAnE+2PDBA==",
|
|
417
|
-
"signed_at": "2026-05-
|
|
417
|
+
"signed_at": "2026-05-12T14:06:21.972Z",
|
|
418
418
|
"cwe_refs": [
|
|
419
419
|
"CWE-1188"
|
|
420
420
|
]
|
|
@@ -442,7 +442,7 @@
|
|
|
442
442
|
"framework_gaps": [],
|
|
443
443
|
"last_threat_review": "2026-05-01",
|
|
444
444
|
"signature": "aFHq4cSl3CKchnVITxx+BrAEWD33WtFFJoQtwAug5g9R3/3ABtjaXYGVQaZcdcG1AIZkMoGSPywgLQWDY7ZDCw==",
|
|
445
|
-
"signed_at": "2026-05-
|
|
445
|
+
"signed_at": "2026-05-12T14:06:21.972Z"
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
448
|
"name": "global-grc",
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
"framework_gaps": [],
|
|
475
475
|
"last_threat_review": "2026-05-01",
|
|
476
476
|
"signature": "viCTUWdy6euvd2KTAo6sLvarK/FZkDtYGocxBt0H+fY94kLQGW8K5cSpqIWdUF5NUytSHBCiG4YcSze8P9Z/BQ==",
|
|
477
|
-
"signed_at": "2026-05-
|
|
477
|
+
"signed_at": "2026-05-12T14:06:21.973Z"
|
|
478
478
|
},
|
|
479
479
|
{
|
|
480
480
|
"name": "zeroday-gap-learn",
|
|
@@ -501,7 +501,7 @@
|
|
|
501
501
|
"framework_gaps": [],
|
|
502
502
|
"last_threat_review": "2026-05-01",
|
|
503
503
|
"signature": "6PkUaHQi3Hxuqq/Jp4GYckvfqVEofmeT87NUH0T+pwyjlc+xZkoqNPn65f7ldciEPL86JIPi3/dDTKQbIFFBCw==",
|
|
504
|
-
"signed_at": "2026-05-
|
|
504
|
+
"signed_at": "2026-05-12T14:06:21.973Z"
|
|
505
505
|
},
|
|
506
506
|
{
|
|
507
507
|
"name": "pqc-first",
|
|
@@ -553,7 +553,7 @@
|
|
|
553
553
|
],
|
|
554
554
|
"last_threat_review": "2026-05-01",
|
|
555
555
|
"signature": "ZenFTEzWx+DzrSXlNXhbZ70vOdJSXfrnKkAwqMlBf5nlDf38V1/hG4XCKj43snQXWr4mVJOX6ilqFLTYNIjnBw==",
|
|
556
|
-
"signed_at": "2026-05-
|
|
556
|
+
"signed_at": "2026-05-12T14:06:21.974Z",
|
|
557
557
|
"cwe_refs": [
|
|
558
558
|
"CWE-327"
|
|
559
559
|
],
|
|
@@ -600,7 +600,7 @@
|
|
|
600
600
|
],
|
|
601
601
|
"last_threat_review": "2026-05-01",
|
|
602
602
|
"signature": "ih0vpd2v2zS31JSJv7SnABoya8JlJdrXZXx4rBnrsV3Assj+dbjAP0pQ1HMT/5RX8yTTswRQsg0bJV3qmbJ3Bw==",
|
|
603
|
-
"signed_at": "2026-05-
|
|
603
|
+
"signed_at": "2026-05-12T14:06:21.974Z"
|
|
604
604
|
},
|
|
605
605
|
{
|
|
606
606
|
"name": "security-maturity-tiers",
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
],
|
|
638
638
|
"last_threat_review": "2026-05-01",
|
|
639
639
|
"signature": "Lv8dHiwIqUbNsywCCB/+pYWGF+MHCvxVn1IAvR7Cnif5fy0sICv0N4SVsSb621qAAkHNshpfxqwuhbuQnE1TBA==",
|
|
640
|
-
"signed_at": "2026-05-
|
|
640
|
+
"signed_at": "2026-05-12T14:06:21.975Z",
|
|
641
641
|
"cwe_refs": [
|
|
642
642
|
"CWE-1188"
|
|
643
643
|
]
|
|
@@ -672,7 +672,7 @@
|
|
|
672
672
|
"framework_gaps": [],
|
|
673
673
|
"last_threat_review": "2026-05-11",
|
|
674
674
|
"signature": "BS+wrL28HHYhBpe+v84VLoq9KPBXu6alfG968katfGIoLNYQueaHP931bRmlkrjfeb6qbDf067GWdPEh7nroAw==",
|
|
675
|
-
"signed_at": "2026-05-
|
|
675
|
+
"signed_at": "2026-05-12T14:06:21.975Z"
|
|
676
676
|
},
|
|
677
677
|
{
|
|
678
678
|
"name": "attack-surface-pentest",
|
|
@@ -743,7 +743,7 @@
|
|
|
743
743
|
"PTES revision incorporating AI-surface enumeration"
|
|
744
744
|
],
|
|
745
745
|
"signature": "vLhIYT/CC3IzxMRa+UPeqGSZTvthuwUeTMGNFMm37+TaEk0TtfwPrPyrBJLHw4W6Wt7+pufjHs46X3nTgzoRAg==",
|
|
746
|
-
"signed_at": "2026-05-
|
|
746
|
+
"signed_at": "2026-05-12T14:06:21.975Z"
|
|
747
747
|
},
|
|
748
748
|
{
|
|
749
749
|
"name": "fuzz-testing-strategy",
|
|
@@ -803,7 +803,7 @@
|
|
|
803
803
|
"OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
|
|
804
804
|
],
|
|
805
805
|
"signature": "TOcQLy/427cuf0Lw90J7A0oIeuhUmf9NXb6tOUS5K3SazCKTJujPgYSVAPZOYf1zZrRAY/aq0iqELd5cLyk5DA==",
|
|
806
|
-
"signed_at": "2026-05-
|
|
806
|
+
"signed_at": "2026-05-12T14:06:21.975Z"
|
|
807
807
|
},
|
|
808
808
|
{
|
|
809
809
|
"name": "dlp-gap-analysis",
|
|
@@ -878,7 +878,7 @@
|
|
|
878
878
|
"Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
|
|
879
879
|
],
|
|
880
880
|
"signature": "u4IN7escQa5V+OgdtaJXLdvhmNiGZsdmGOvebTLZ30WoImT+WiksvaqSa0POGdbr6HzFkALe2RrZEH9Tr0U6Dg==",
|
|
881
|
-
"signed_at": "2026-05-
|
|
881
|
+
"signed_at": "2026-05-12T14:06:21.976Z"
|
|
882
882
|
},
|
|
883
883
|
{
|
|
884
884
|
"name": "supply-chain-integrity",
|
|
@@ -955,7 +955,7 @@
|
|
|
955
955
|
"OpenSSF model-signing — emerging Sigstore-based signing standard for ML model weights; track for production adoption"
|
|
956
956
|
],
|
|
957
957
|
"signature": "eTGQJ3gnG24WggfwuFNNIFOWV/ttPxTa3pvx9OH28m5KDS1a4ZmOR7K8y01wk/su8bH0ClYYRfoBfKQOtRswAg==",
|
|
958
|
-
"signed_at": "2026-05-
|
|
958
|
+
"signed_at": "2026-05-12T14:06:21.976Z"
|
|
959
959
|
},
|
|
960
960
|
{
|
|
961
961
|
"name": "defensive-countermeasure-mapping",
|
|
@@ -1012,7 +1012,7 @@
|
|
|
1012
1012
|
],
|
|
1013
1013
|
"last_threat_review": "2026-05-11",
|
|
1014
1014
|
"signature": "q7gFLPoqf/8bqATR6gt/nj0EoyUOlfzi+bZ0bT3pC9KW7O6M/ji9fT+AXSGNp6PKd+70ACb3mkMGmWgjLpQXCg==",
|
|
1015
|
-
"signed_at": "2026-05-
|
|
1015
|
+
"signed_at": "2026-05-12T14:06:21.976Z"
|
|
1016
1016
|
},
|
|
1017
1017
|
{
|
|
1018
1018
|
"name": "identity-assurance",
|
|
@@ -1079,7 +1079,7 @@
|
|
|
1079
1079
|
"d3fend_refs": [],
|
|
1080
1080
|
"last_threat_review": "2026-05-11",
|
|
1081
1081
|
"signature": "pX8rhrrzuyG3iRrPORLqTZAjzGdWK/bKPUGJG5WHSZcv4LB0kQXOit4sHG0exdXxI6HY8jyX67QY4r5vEHHACw==",
|
|
1082
|
-
"signed_at": "2026-05-
|
|
1082
|
+
"signed_at": "2026-05-12T14:06:21.976Z"
|
|
1083
1083
|
},
|
|
1084
1084
|
{
|
|
1085
1085
|
"name": "ot-ics-security",
|
|
@@ -1135,7 +1135,7 @@
|
|
|
1135
1135
|
"d3fend_refs": [],
|
|
1136
1136
|
"last_threat_review": "2026-05-11",
|
|
1137
1137
|
"signature": "ypb8kNZQRdyu5mWeveB7sjCjNKXS1yXvjDJv88muzwhOs/a4Fu/Gb532js5NKyy+eCw/emrphpTZaL8R9a2lBA==",
|
|
1138
|
-
"signed_at": "2026-05-
|
|
1138
|
+
"signed_at": "2026-05-12T14:06:21.977Z"
|
|
1139
1139
|
},
|
|
1140
1140
|
{
|
|
1141
1141
|
"name": "coordinated-vuln-disclosure",
|
|
@@ -1187,7 +1187,7 @@
|
|
|
1187
1187
|
"NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
|
|
1188
1188
|
],
|
|
1189
1189
|
"signature": "346Lt+277ycRNsyAOGwLSONi4awgxKy3hP9G+BWjwaa8ySmTeqbYsbyyhtxjeohk9bV2SF+Hl2q4JdSvc/2qCQ==",
|
|
1190
|
-
"signed_at": "2026-05-
|
|
1190
|
+
"signed_at": "2026-05-12T14:06:21.977Z"
|
|
1191
1191
|
},
|
|
1192
1192
|
{
|
|
1193
1193
|
"name": "threat-modeling-methodology",
|
|
@@ -1237,7 +1237,7 @@
|
|
|
1237
1237
|
"PASTA v2 updates incorporating AI/ML application threats"
|
|
1238
1238
|
],
|
|
1239
1239
|
"signature": "ewTvG5vu3ngFHyXgBur5vSKDFQsOZx0x79djGMricl7LCvQf5//OG6LZKXa+AOuEq58prRS+HgzrFA1DiTfeCQ==",
|
|
1240
|
-
"signed_at": "2026-05-
|
|
1240
|
+
"signed_at": "2026-05-12T14:06:21.977Z"
|
|
1241
1241
|
},
|
|
1242
1242
|
{
|
|
1243
1243
|
"name": "webapp-security",
|
|
@@ -1311,7 +1311,7 @@
|
|
|
1311
1311
|
"d3fend_refs": [],
|
|
1312
1312
|
"last_threat_review": "2026-05-11",
|
|
1313
1313
|
"signature": "ZHjbKu0Em92Kimr2esL1g93mf9TmcsChBhVEMWf/lFrjeLcg8nyHEIcDstIZ3FWYgc6MQNHnc3Rup3Xp/Za1Cw==",
|
|
1314
|
-
"signed_at": "2026-05-
|
|
1314
|
+
"signed_at": "2026-05-12T14:06:21.978Z"
|
|
1315
1315
|
},
|
|
1316
1316
|
{
|
|
1317
1317
|
"name": "ai-risk-management",
|
|
@@ -1361,7 +1361,7 @@
|
|
|
1361
1361
|
"d3fend_refs": [],
|
|
1362
1362
|
"last_threat_review": "2026-05-11",
|
|
1363
1363
|
"signature": "1KRxjCbAX0Rs5NTOioi1w/f1SOzDQrtRoXjTDtzEwJ+d1QzFf9cqmBlp0uXmGpL0bzEaHWIctjigSychmoL2Dw==",
|
|
1364
|
-
"signed_at": "2026-05-
|
|
1364
|
+
"signed_at": "2026-05-12T14:06:21.978Z"
|
|
1365
1365
|
},
|
|
1366
1366
|
{
|
|
1367
1367
|
"name": "sector-healthcare",
|
|
@@ -1421,7 +1421,7 @@
|
|
|
1421
1421
|
"d3fend_refs": [],
|
|
1422
1422
|
"last_threat_review": "2026-05-11",
|
|
1423
1423
|
"signature": "eiajFh7w7d4g+/crGalTtw9Qsu0deVsdHkdthZSy595ifGmgu0zaFD8usKThbPhOdUCCclTYkZYz5GalQmkhCw==",
|
|
1424
|
-
"signed_at": "2026-05-
|
|
1424
|
+
"signed_at": "2026-05-12T14:06:21.978Z"
|
|
1425
1425
|
},
|
|
1426
1426
|
{
|
|
1427
1427
|
"name": "sector-financial",
|
|
@@ -1502,7 +1502,7 @@
|
|
|
1502
1502
|
"TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
|
|
1503
1503
|
],
|
|
1504
1504
|
"signature": "iSZR/fYESQVyjkcqj+O+yzU0BQfaELH5s7WizzUTWvDPDTD2ZyOnZTT1r/Zfx2l4mbPmVeFGWdYnnVFTk/i3Aw==",
|
|
1505
|
-
"signed_at": "2026-05-
|
|
1505
|
+
"signed_at": "2026-05-12T14:06:21.979Z"
|
|
1506
1506
|
},
|
|
1507
1507
|
{
|
|
1508
1508
|
"name": "sector-federal-government",
|
|
@@ -1571,7 +1571,7 @@
|
|
|
1571
1571
|
"Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
|
|
1572
1572
|
],
|
|
1573
1573
|
"signature": "Wjdo5YXEL8XeNZkaEueG1DOUoyalstNPzQkxD/cwP5iMrJWg/Ly+sC0Oluuqm3aU7d63z55PrbGQCJD0XVZqBg==",
|
|
1574
|
-
"signed_at": "2026-05-
|
|
1574
|
+
"signed_at": "2026-05-12T14:06:21.979Z"
|
|
1575
1575
|
},
|
|
1576
1576
|
{
|
|
1577
1577
|
"name": "sector-energy",
|
|
@@ -1636,7 +1636,7 @@
|
|
|
1636
1636
|
"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"
|
|
1637
1637
|
],
|
|
1638
1638
|
"signature": "c/l7dOHe0Zj6Ag3abUaEie6o0f8M4rhY5aPI9/wG4z6FDue9PzCVw8vUGoITFgg89g97lMfy2C3CE2PegQoFCw==",
|
|
1639
|
-
"signed_at": "2026-05-
|
|
1639
|
+
"signed_at": "2026-05-12T14:06:21.980Z"
|
|
1640
1640
|
},
|
|
1641
1641
|
{
|
|
1642
1642
|
"name": "api-security",
|
|
@@ -1705,7 +1705,7 @@
|
|
|
1705
1705
|
"d3fend_refs": [],
|
|
1706
1706
|
"last_threat_review": "2026-05-11",
|
|
1707
1707
|
"signature": "9FgcJvYeo07QxQ+mnVRQk4jYLDMO/AVSXMs8cueO2f/qMOTQmrhBMVhj5ze7hzvXpGkp7EK/3Q1XKqde61JMAg==",
|
|
1708
|
-
"signed_at": "2026-05-
|
|
1708
|
+
"signed_at": "2026-05-12T14:06:21.980Z"
|
|
1709
1709
|
},
|
|
1710
1710
|
{
|
|
1711
1711
|
"name": "cloud-security",
|
|
@@ -1786,7 +1786,7 @@
|
|
|
1786
1786
|
"CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
|
|
1787
1787
|
],
|
|
1788
1788
|
"signature": "xRA0XZf7VPtuBtbsm41bay9yBLphw/hlL3YxIUrpko5g9ldM3oJe9o1qSwzIj/wSnQSI29qqPpNsnlks+HEOCA==",
|
|
1789
|
-
"signed_at": "2026-05-
|
|
1789
|
+
"signed_at": "2026-05-12T14:06:21.980Z"
|
|
1790
1790
|
},
|
|
1791
1791
|
{
|
|
1792
1792
|
"name": "container-runtime-security",
|
|
@@ -1848,7 +1848,7 @@
|
|
|
1848
1848
|
"d3fend_refs": [],
|
|
1849
1849
|
"last_threat_review": "2026-05-11",
|
|
1850
1850
|
"signature": "GcU50DStuN1gU/Evm/sFRgeieQbqffVp12rgbGnasRX89Q7kM4ltFXB+bgCXHIvICzYb78hPIifWQb9UVupWBQ==",
|
|
1851
|
-
"signed_at": "2026-05-
|
|
1851
|
+
"signed_at": "2026-05-12T14:06:21.980Z"
|
|
1852
1852
|
},
|
|
1853
1853
|
{
|
|
1854
1854
|
"name": "mlops-security",
|
|
@@ -1919,7 +1919,7 @@
|
|
|
1919
1919
|
"MITRE ATLAS v5.2 — track AML.T0010 sub-technique expansion and any new MLOps-pipeline-specific TTPs"
|
|
1920
1920
|
],
|
|
1921
1921
|
"signature": "onIazpFoL1t4PMNRsoF06ggnl7BzCKjt0x+ZmVfWfyt1V06DgllsrbN3AAz4+g4jW2Sc71q0vIFKfwEUWpGVAQ==",
|
|
1922
|
-
"signed_at": "2026-05-
|
|
1922
|
+
"signed_at": "2026-05-12T14:06:21.981Z"
|
|
1923
1923
|
},
|
|
1924
1924
|
{
|
|
1925
1925
|
"name": "incident-response-playbook",
|
|
@@ -1981,7 +1981,7 @@
|
|
|
1981
1981
|
"NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
|
|
1982
1982
|
],
|
|
1983
1983
|
"signature": "P0Yv4CtqbnBNP6nSIxQUYYHL7T7ci+iE7iE2UXVfnMPeWVdKG2nvRePjBXc3JZTLima1Txn/I5ocDNhLTIeUAQ==",
|
|
1984
|
-
"signed_at": "2026-05-
|
|
1984
|
+
"signed_at": "2026-05-12T14:06:21.981Z"
|
|
1985
1985
|
},
|
|
1986
1986
|
{
|
|
1987
1987
|
"name": "email-security-anti-phishing",
|
|
@@ -2034,7 +2034,7 @@
|
|
|
2034
2034
|
"d3fend_refs": [],
|
|
2035
2035
|
"last_threat_review": "2026-05-11",
|
|
2036
2036
|
"signature": "2pv81lLRbazpHqundCANb3YiLB4lkVsYctIDvI8rxSvHxhPS9jYXqmAoB5APSdDuOaew6XqpfZOehQUj9WmyBw==",
|
|
2037
|
-
"signed_at": "2026-05-
|
|
2037
|
+
"signed_at": "2026-05-12T14:06:21.982Z"
|
|
2038
2038
|
},
|
|
2039
2039
|
{
|
|
2040
2040
|
"name": "age-gates-child-safety",
|
|
@@ -2102,7 +2102,7 @@
|
|
|
2102
2102
|
"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"
|
|
2103
2103
|
],
|
|
2104
2104
|
"signature": "BJ/YYnGVXeSBaR9oWAVrcNX7Wz+kE8R4CghX6+XEI/qY89fyrkKNNwo2veqqf49wffJhHVJ1wTp8ZDECjNp+Dw==",
|
|
2105
|
-
"signed_at": "2026-05-
|
|
2105
|
+
"signed_at": "2026-05-12T14:06:21.982Z"
|
|
2106
2106
|
}
|
|
2107
2107
|
]
|
|
2108
2108
|
}
|