@blamejs/exceptd-skills 0.14.8 → 0.14.10
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 +20 -0
- package/bin/exceptd.js +79 -7
- package/data/_indexes/_meta.json +2 -2
- package/lib/playbook-runner.js +31 -11
- package/lib/refresh-external.js +28 -2
- package/manifest.json +44 -44
- package/orchestrator/index.js +38 -3
- package/package.json +1 -1
- package/sbom.cdx.json +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.14.10 — 2026-05-27
|
|
4
|
+
|
|
5
|
+
`ci <playbook> --evidence -` no longer reports a false PASS when handed a flat submission. `run` accepts a flat submission (`{ "signal_overrides": {...} }`) and so do operators by habit; `ci` keyed the input by playbook id, found nothing under that key, and evaluated an empty submission — a detected finding came back PASS. A single-positional `ci` invocation now treats a flat (non-bundle-shaped) submission as belonging to that playbook, so `ci` and `run` agree. A real bundle keyed by playbook id is still routed per-key.
|
|
6
|
+
|
|
7
|
+
`ai-run <playbook> --no-stream --evidence -` now rejects a non-object submission (`null`, an array, a scalar) at the read boundary, matching `run`. Previously the no-stream path skipped the shape guard and ran a malformed submission as if it were empty, so an operator believed a bad payload had been evaluated.
|
|
8
|
+
|
|
9
|
+
The `ci` framework-gap rollup now carries the gap explanation. Each rollup entry's `why_insufficient` was always null because the rollup read a field that doesn't exist on a gap record; the text lives in `actual_gap`, which is now surfaced (alongside `required_control`).
|
|
10
|
+
|
|
11
|
+
A regulatory clock now starts on an engine-confirmed detection, not only on an agent-submitted classification. When indicators fire and the engine itself classifies the detect phase as `detected`, `--ack` starts the notification clock and computes the jurisdiction deadlines — previously the clock only moved if the submission also carried `detection_classification: "detected"`, so an engine-confirmed finding left every deadline stalled at `pending_clock_start_event`.
|
|
12
|
+
|
|
13
|
+
`framework-gap <framework> <scenario>` refuses an unknown framework instead of returning a zero-gap report that reads as "no gaps found." A typo or an untracked framework now errors with the list of frameworks the catalog covers; the documented short forms (`NIST-800-53`, `PCI-DSS-4.0`) and `all` continue to resolve.
|
|
14
|
+
|
|
15
|
+
## 0.14.9 — 2026-05-27
|
|
16
|
+
|
|
17
|
+
`refresh --advisory <id> --air-gap` now refuses (no network) instead of egressing. The `--air-gap` flag was parsed but dropped before the fetch, so an air-gapped advisory seed silently reached GHSA/OSV — an air-gap-guarantee violation. Both the flag and the `EXCEPTD_AIR_GAP=1` env now refuse identically.
|
|
18
|
+
|
|
19
|
+
`--tlp` is wired through. It stamps the emitted bundle's CSAF `document.distribution` marking (TLP 2.0), validates the label against `CLEAR | GREEN | AMBER | AMBER+STRICT | RED`, and is refused on info-only verbs — previously it was accepted but never applied (a silent no-op).
|
|
20
|
+
|
|
21
|
+
`refresh --advisory ""` errors instead of silently running a full refresh, and `refresh --help` now documents refresh's own exit-code scheme — notably that its exit 3 means "draft produced, review pending" (distinct from `exceptd run`'s exit 3, "ran but no evidence"), so scripts should branch on the `ok` field rather than `$?`.
|
|
22
|
+
|
|
3
23
|
## 0.14.8 — 2026-05-27
|
|
4
24
|
|
|
5
25
|
SARIF output now carries file locations. A run's `results[].locations` are populated from per-indicator evidence locations, so a secret or file finding points at the file — and the line, when known — that triggered it instead of shipping location-less, which GitHub code scanning and most SARIF viewers drop or attribute to the repository root. A submission may supply locations directly (`evidence_locations: { "<indicator-id>": ["path", { "uri": "path", "startLine": N }] }`), and the code-scope collectors emit them from their hit data, so `exceptd collect <pb> | exceptd run <pb> --format sarif` produces located findings.
|
package/bin/exceptd.js
CHANGED
|
@@ -1603,6 +1603,31 @@ function dispatchPlaybook(cmd, argv) {
|
|
|
1603
1603
|
runOpts.csafStatus = cs;
|
|
1604
1604
|
}
|
|
1605
1605
|
|
|
1606
|
+
// --tlp stamps the bundle's distribution marking (CSAF document.distribution
|
|
1607
|
+
// TLP). Previously this flag was allowlisted but never wired into runOpts, so
|
|
1608
|
+
// it was a silent no-op; the runner already emits distribution from
|
|
1609
|
+
// runOpts.tlp. Validate against TLP 2.0 labels and refuse on info-only verbs,
|
|
1610
|
+
// matching --csaf-status.
|
|
1611
|
+
if (args.tlp !== undefined) {
|
|
1612
|
+
if (!BUNDLE_FLAG_RELEVANT_VERBS.has(cmd)) {
|
|
1613
|
+
return emitError(
|
|
1614
|
+
`${cmd}: --tlp is irrelevant on this verb (no bundle is assembled). --tlp only applies to verbs that drive phases 5-7: ${[...BUNDLE_FLAG_RELEVANT_VERBS].sort().join(", ")}.`,
|
|
1615
|
+
{ verb: cmd, flag: "tlp", error_class: "irrelevant-flag", accepted_verbs: [...BUNDLE_FLAG_RELEVANT_VERBS].sort() },
|
|
1616
|
+
pretty
|
|
1617
|
+
);
|
|
1618
|
+
}
|
|
1619
|
+
const tlp = typeof args.tlp === "string" ? args.tlp.toUpperCase() : args.tlp;
|
|
1620
|
+
const allowedTlp = ["CLEAR", "GREEN", "AMBER", "AMBER+STRICT", "RED"];
|
|
1621
|
+
if (typeof tlp !== "string" || !allowedTlp.includes(tlp)) {
|
|
1622
|
+
return emitError(
|
|
1623
|
+
`${cmd}: --tlp must be one of ${JSON.stringify(allowedTlp)} (TLP 2.0). Got: ${JSON.stringify(String(args.tlp)).slice(0, 40)}`,
|
|
1624
|
+
{ verb: cmd, flag: "tlp", provided: args.tlp },
|
|
1625
|
+
pretty
|
|
1626
|
+
);
|
|
1627
|
+
}
|
|
1628
|
+
runOpts.tlp = tlp;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1606
1631
|
// --bundle-deterministic + --bundle-epoch (v0.12.27): opt-in deterministic
|
|
1607
1632
|
// bundle emit. When set, CSAF / OpenVEX / close-envelope timestamps freeze
|
|
1608
1633
|
// to the supplied epoch (or the playbook's last_threat_review fallback),
|
|
@@ -7519,17 +7544,47 @@ function cmdAiRun(runner, args, runOpts, pretty) {
|
|
|
7519
7544
|
// Read any pre-supplied evidence from stdin OR from --evidence flag.
|
|
7520
7545
|
let payload = { observations: {}, verdict: {} };
|
|
7521
7546
|
if (args.evidence) {
|
|
7522
|
-
|
|
7547
|
+
// Apply the same shape guard `run` enforces at its read boundary: a
|
|
7548
|
+
// submission must be a JSON object. Without this, `--no-stream` accepted
|
|
7549
|
+
// `null` / `[]` / a scalar and ran as if empty, so an operator believed a
|
|
7550
|
+
// malformed submission was evaluated (the streaming path is unaffected —
|
|
7551
|
+
// it only fires on a well-formed evidence event).
|
|
7552
|
+
try { payload = asEvidenceObject(readEvidence(args.evidence)); }
|
|
7523
7553
|
catch (e) { return emitError(`ai-run: failed to read --evidence: ${e.message}`, null, pretty); }
|
|
7524
7554
|
} else if (hasReadableStdin()) {
|
|
7525
7555
|
// hasReadableStdin() probes via fstat before falling into
|
|
7526
7556
|
// readFileSync(0). Wrapped-stdin test harnesses (isTTY===undefined,
|
|
7527
7557
|
// size===0) would otherwise hang here.
|
|
7528
7558
|
// Drain stdin for any evidence event.
|
|
7529
|
-
|
|
7530
|
-
|
|
7531
|
-
|
|
7532
|
-
|
|
7559
|
+
let buf = "";
|
|
7560
|
+
try { buf = fs.readFileSync(0, "utf8"); }
|
|
7561
|
+
catch { /* stdin empty / unreadable — fall through with empty payload */ }
|
|
7562
|
+
if (buf.trim()) {
|
|
7563
|
+
// First treat stdin as a single JSON document — the common
|
|
7564
|
+
// `echo '<json>' | ai-run … --no-stream` shape. If it parses as one
|
|
7565
|
+
// value we can apply the same shape guard `--evidence` gets: a bare
|
|
7566
|
+
// `null` / `[]` / scalar is a malformed submission, not "no evidence",
|
|
7567
|
+
// and must be rejected rather than silently run as empty.
|
|
7568
|
+
let single;
|
|
7569
|
+
let singleParsed = false;
|
|
7570
|
+
try { single = JSON.parse(buf); singleParsed = true; } catch { /* not a single doc — fall to JSONL scan */ }
|
|
7571
|
+
if (singleParsed) {
|
|
7572
|
+
// An evidence event wrapper is the one object shape that is NOT
|
|
7573
|
+
// itself the submission — unwrap it before guarding.
|
|
7574
|
+
if (single && typeof single === "object" && !Array.isArray(single) && single.event === "evidence" && single.payload) {
|
|
7575
|
+
payload = single.payload;
|
|
7576
|
+
} else {
|
|
7577
|
+
try { payload = asEvidenceObject(single); }
|
|
7578
|
+
catch (e) { return emitError(`ai-run: failed to read evidence from stdin: ${e.message}`, null, pretty); }
|
|
7579
|
+
// Normalize a bare submission into the {observations, verdict} shape.
|
|
7580
|
+
if (!payload.observations && (payload.artifacts || payload.signal_overrides || payload.signals)) {
|
|
7581
|
+
payload = { observations: { ...(payload.artifacts || {}), ...(payload.signal_overrides || {}) }, verdict: payload.signals || {} };
|
|
7582
|
+
}
|
|
7583
|
+
}
|
|
7584
|
+
} else {
|
|
7585
|
+
// JSONL / interleaved host-AI chatter: scan line-by-line for the
|
|
7586
|
+
// first evidence event or bare submission, ignoring non-matching
|
|
7587
|
+
// status frames the host may interleave.
|
|
7533
7588
|
for (const line of buf.split(/\r?\n/)) {
|
|
7534
7589
|
const t = line.trim();
|
|
7535
7590
|
if (!t) continue;
|
|
@@ -7549,7 +7604,7 @@ function cmdAiRun(runner, args, runOpts, pretty) {
|
|
|
7549
7604
|
} catch { /* skip non-JSON lines */ }
|
|
7550
7605
|
}
|
|
7551
7606
|
}
|
|
7552
|
-
}
|
|
7607
|
+
}
|
|
7553
7608
|
}
|
|
7554
7609
|
const submission = buildSubmissionFromPayload(payload);
|
|
7555
7610
|
let result;
|
|
@@ -8188,6 +8243,20 @@ function cmdCi(runner, args, runOpts, pretty) {
|
|
|
8188
8243
|
}
|
|
8189
8244
|
}
|
|
8190
8245
|
|
|
8246
|
+
// Flat-submission tolerance for a single positional playbook. `ci` keys its
|
|
8247
|
+
// bundle by playbook id (so --evidence-dir / multi-playbook bundles work),
|
|
8248
|
+
// but `ci <pb> --evidence -` with the SAME flat/nested submission shape that
|
|
8249
|
+
// `run` accepts would otherwise land as bundle[<pb>]=undefined → empty run →
|
|
8250
|
+
// a false PASS that silently ignores the operator's evidence. When exactly
|
|
8251
|
+
// one playbook is in scope and the bundle carries no playbook-id key (it's a
|
|
8252
|
+
// single submission, not a multi-playbook bundle), treat it as that
|
|
8253
|
+
// playbook's evidence.
|
|
8254
|
+
if (ids.length === 1 && Object.keys(bundle).length > 0 && !(ids[0] in bundle)) {
|
|
8255
|
+
const allIds = new Set(runner.listPlaybooks());
|
|
8256
|
+
const looksLikeBundle = Object.keys(bundle).some(k => allIds.has(k));
|
|
8257
|
+
if (!looksLikeBundle) bundle = { [ids[0]]: bundle };
|
|
8258
|
+
}
|
|
8259
|
+
|
|
8191
8260
|
const results = [];
|
|
8192
8261
|
let fail = false;
|
|
8193
8262
|
let failReasons = [];
|
|
@@ -8315,7 +8384,10 @@ function cmdCi(runner, args, runOpts, pretty) {
|
|
|
8315
8384
|
gapRollupMap.set(key, {
|
|
8316
8385
|
framework: g.framework || null,
|
|
8317
8386
|
claimed_control: g.claimed_control || null,
|
|
8318
|
-
|
|
8387
|
+
// The explanatory text lives in `actual_gap`; the rollup previously
|
|
8388
|
+
// read a nonexistent `why_insufficient` key and so was always null.
|
|
8389
|
+
why_insufficient: g.actual_gap || g.why_insufficient || null,
|
|
8390
|
+
required_control: g.required_control || null,
|
|
8319
8391
|
playbooks: [r.playbook_id],
|
|
8320
8392
|
});
|
|
8321
8393
|
}
|
package/data/_indexes/_meta.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "1.1.0",
|
|
3
|
-
"generated_at": "2026-05-
|
|
3
|
+
"generated_at": "2026-05-27T19:33:19.529Z",
|
|
4
4
|
"generator": "scripts/build-indexes.js",
|
|
5
5
|
"source_count": 54,
|
|
6
6
|
"source_hashes": {
|
|
7
|
-
"manifest.json": "
|
|
7
|
+
"manifest.json": "4d13f4f27b890997b5da18055a4bb0eac69a60b24b33dad97616c9fea8ba50d0",
|
|
8
8
|
"data/atlas-ttps.json": "d24bc02859d40ccf1615db75cca68c077585904e41e0d8f6de448121e9b1abb0",
|
|
9
9
|
"data/attack-techniques.json": "fa193f0d2d248176a8beddb641e9fe56ba4faa9e15dc253ff876dbf0c5d58a77",
|
|
10
10
|
"data/cve-catalog.json": "3d451dda7ac0c7d57a4075ae4bafd3148c6184b35dc1bc59d8b81d1f2641e430",
|
package/lib/playbook-runner.js
CHANGED
|
@@ -1545,16 +1545,21 @@ function close(playbookId, directiveId, analyzeResult, validateResult, agentSign
|
|
|
1545
1545
|
const obligation = (g.jurisdiction_obligations || []).find(o =>
|
|
1546
1546
|
`${o.jurisdiction}/${o.regulation} ${o.window_hours}h` === na.obligation_ref
|
|
1547
1547
|
);
|
|
1548
|
-
// Thread runOpts
|
|
1549
|
-
// operator_consent.explicit before
|
|
1550
|
-
|
|
1551
|
-
//
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1548
|
+
// Thread runOpts + the engine-computed classification through so
|
|
1549
|
+
// computeClockStart can check operator_consent.explicit before
|
|
1550
|
+
// auto-stamping detect_confirmed, and so an engine-confirmed detection
|
|
1551
|
+
// starts the clock even without a separately-submitted classification.
|
|
1552
|
+
const engineClassification = analyzeResult?._detect_classification || null;
|
|
1553
|
+
const clockStart = obligation
|
|
1554
|
+
? computeClockStart(obligation.clock_starts, agentSignals, runOpts, engineClassification)
|
|
1555
|
+
: null;
|
|
1556
|
+
// When the clock event is detect_confirmed AND detection was confirmed
|
|
1557
|
+
// (by the agent OR the engine) AND the operator did NOT pass --ack,
|
|
1558
|
+
// surface clock_pending_ack so the notification record is visibly waiting
|
|
1559
|
+
// on acknowledgement.
|
|
1555
1560
|
const clockPendingAck = !clockStart
|
|
1556
1561
|
&& obligation?.clock_starts === 'detect_confirmed'
|
|
1557
|
-
&& agentSignals?.detection_classification === 'detected'
|
|
1562
|
+
&& (agentSignals?.detection_classification === 'detected' || engineClassification === 'detected')
|
|
1558
1563
|
&& !(runOpts && runOpts.operator_consent && runOpts.operator_consent.explicit === true);
|
|
1559
1564
|
const deadline = obligation && clockStart
|
|
1560
1565
|
? new Date(clockStart.getTime() + obligation.window_hours * 3600 * 1000).toISOString()
|
|
@@ -2457,8 +2462,15 @@ function buildEvidenceBundle(format, playbook, analyze, validate, agentSignals,
|
|
|
2457
2462
|
// the whole distribution block when no level is declared; the
|
|
2458
2463
|
// pre-fix runner had no surface for this at all.
|
|
2459
2464
|
const allowedTlp = new Set(['CLEAR', 'GREEN', 'AMBER', 'AMBER+STRICT', 'RED']);
|
|
2465
|
+
// CSAF 2.0 §3.2.1.5.2 pins tlp.label to the TLP 1.0 enum
|
|
2466
|
+
// (WHITE/GREEN/AMBER/RED). Map the modern TLP 2.0 labels the CLI accepts
|
|
2467
|
+
// onto that enum so the emitted document stays schema-valid for strict
|
|
2468
|
+
// CSAF 2.0 consumers, while preserving the operator's exact label in the
|
|
2469
|
+
// free-form `text` field. (CLEAR≡WHITE; AMBER+STRICT carries AMBER's
|
|
2470
|
+
// disclosure scope plus a stricter handling note.)
|
|
2471
|
+
const CSAF_TLP_LABEL = { CLEAR: 'WHITE', 'AMBER+STRICT': 'AMBER', GREEN: 'GREEN', AMBER: 'AMBER', RED: 'RED' };
|
|
2460
2472
|
const csafDistribution = (runOpts.tlp && allowedTlp.has(runOpts.tlp))
|
|
2461
|
-
? { tlp: { label: runOpts.tlp }, text: `TLP:${runOpts.tlp}` }
|
|
2473
|
+
? { tlp: { label: CSAF_TLP_LABEL[runOpts.tlp] }, text: `TLP:${runOpts.tlp}` }
|
|
2462
2474
|
: null;
|
|
2463
2475
|
|
|
2464
2476
|
return {
|
|
@@ -3564,13 +3576,21 @@ function stripOuterParens(expr) {
|
|
|
3564
3576
|
* waiting on acknowledgement.
|
|
3565
3577
|
* - All other events without an explicit timestamp: return null.
|
|
3566
3578
|
*/
|
|
3567
|
-
function computeClockStart(eventName, agentSignals, runOpts = {}) {
|
|
3579
|
+
function computeClockStart(eventName, agentSignals, runOpts = {}, engineClassification = null) {
|
|
3568
3580
|
// The agent submits clock_started_at_<event> ISO strings as it progresses.
|
|
3569
3581
|
const key = `clock_started_at_${eventName}`;
|
|
3570
3582
|
if (agentSignals && agentSignals[key]) return new Date(agentSignals[key]);
|
|
3571
3583
|
// For detect_confirmed: only auto-stamp when the operator has explicitly
|
|
3572
3584
|
// acknowledged the result via --ack. Otherwise leave the clock pending.
|
|
3573
|
-
|
|
3585
|
+
// Detection is "confirmed" when EITHER the agent submitted
|
|
3586
|
+
// detection_classification:'detected' OR the engine itself classified the
|
|
3587
|
+
// detect phase as 'detected'. Pre-fix only the agent-submitted signal was
|
|
3588
|
+
// honored, so an engine-confirmed detection (indicators fired from
|
|
3589
|
+
// signal_overrides without a separate classification submission) never
|
|
3590
|
+
// started the regulatory clock — notification deadlines silently stalled.
|
|
3591
|
+
const detected = agentSignals?.detection_classification === 'detected'
|
|
3592
|
+
|| engineClassification === 'detected';
|
|
3593
|
+
if (eventName === 'detect_confirmed' && detected
|
|
3574
3594
|
&& runOpts && runOpts.operator_consent && runOpts.operator_consent.explicit === true) {
|
|
3575
3595
|
return new Date();
|
|
3576
3596
|
}
|
package/lib/refresh-external.js
CHANGED
|
@@ -200,6 +200,16 @@ Air-gap workflow:
|
|
|
200
200
|
Outputs:
|
|
201
201
|
refresh-report.json (gitignored) — per-source status + every diff
|
|
202
202
|
|
|
203
|
+
Exit codes (refresh's own scheme — distinct from the seven-phase verbs):
|
|
204
|
+
0 applied (or a clean dry-run with no diffs to surface)
|
|
205
|
+
2 error (unknown --source, unreadable fixture, invalid --advisory id, air-gap refusal)
|
|
206
|
+
3 draft produced, editorial review pending (a successful --advisory seed —
|
|
207
|
+
NOT a failure; run --advisory <id> --apply to land it, or curate first)
|
|
208
|
+
4 network/source unreachable
|
|
209
|
+
Note: exit 3 here means "review needed", which differs from \`exceptd run\`'s
|
|
210
|
+
exit 3 ("ran but no evidence"). Script \`refresh --advisory\` on the body's
|
|
211
|
+
\`ok\` field, not on \`$? == 0\`.
|
|
212
|
+
|
|
203
213
|
This module never auto-applies version-pin bumps — those require audit per
|
|
204
214
|
AGENTS.md Hard Rule #12 and are surfaced as report-only findings.
|
|
205
215
|
`);
|
|
@@ -1283,7 +1293,13 @@ async function seedSingleAdvisory(opts) {
|
|
|
1283
1293
|
const sourceName = useOsv ? "osv" : "ghsa";
|
|
1284
1294
|
const fixtureEnv = useOsv ? "EXCEPTD_OSV_FIXTURE" : "EXCEPTD_GHSA_FIXTURE";
|
|
1285
1295
|
|
|
1286
|
-
|
|
1296
|
+
// Thread the air-gap disposition (the --air-gap flag OR EXCEPTD_AIR_GAP=1)
|
|
1297
|
+
// into the fetch. Previously this passed {} and dropped --air-gap, so
|
|
1298
|
+
// `refresh --advisory <id> --air-gap` egressed to the network — an air-gap
|
|
1299
|
+
// violation. Both source modules refuse (no fixture) when airGap is set.
|
|
1300
|
+
const airGap = !!opts.airGap || process.env.EXCEPTD_AIR_GAP === "1";
|
|
1301
|
+
|
|
1302
|
+
let result = await sourceMod.fetchAdvisoryById(id, { airGap });
|
|
1287
1303
|
// F4 (v0.12.11): CVE-* identifiers may have an OSV record before GHSA
|
|
1288
1304
|
// publishes one (CNAs and OSV mirrors operate on different cadences).
|
|
1289
1305
|
// When GHSA returns 404 specifically, retry through OSV's /v1/vulns/{id}
|
|
@@ -1291,7 +1307,7 @@ async function seedSingleAdvisory(opts) {
|
|
|
1291
1307
|
// error message so operators know both sources were tried before failing.
|
|
1292
1308
|
let fallbackSourceUsed = null;
|
|
1293
1309
|
if (!result.ok && !useOsv && /^CVE-/i.test(id) && /HTTP 404/.test(result.error || "")) {
|
|
1294
|
-
const fallback = await osvMod.fetchAdvisoryById(id, {});
|
|
1310
|
+
const fallback = await osvMod.fetchAdvisoryById(id, { airGap });
|
|
1295
1311
|
if (fallback.ok) {
|
|
1296
1312
|
result = fallback;
|
|
1297
1313
|
fallbackSourceUsed = "osv";
|
|
@@ -1410,6 +1426,16 @@ async function main() {
|
|
|
1410
1426
|
// written, please review") so CI pipelines surface the needed editorial
|
|
1411
1427
|
// step. Operator must run `--apply` for the write to land; without it,
|
|
1412
1428
|
// the seed is printed to stdout for review.
|
|
1429
|
+
// An empty --advisory value (`--advisory ""` / `--advisory=`) must error
|
|
1430
|
+
// rather than silently falling through to a full-refresh dry-run.
|
|
1431
|
+
if (opts.advisory === "") {
|
|
1432
|
+
process.stderr.write(JSON.stringify({
|
|
1433
|
+
ok: false,
|
|
1434
|
+
error: "refresh: --advisory requires a non-empty identifier (e.g. CVE-2026-1234, GHSA-xxxx-xxxx-xxxx, MAL-2026-1).",
|
|
1435
|
+
}) + "\n");
|
|
1436
|
+
process.exitCode = 2;
|
|
1437
|
+
return;
|
|
1438
|
+
}
|
|
1413
1439
|
if (opts.advisory) {
|
|
1414
1440
|
return seedSingleAdvisory(opts);
|
|
1415
1441
|
}
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceptd-security",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.10",
|
|
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-15",
|
|
55
55
|
"signature": "lXhZgoIrrVloO3XaTvo/43AxZn4mwErstd7DR0O/oVhD3AOGODM4HqrageYEou9WKOdMEGP5mJNTjJsXdP5NDA==",
|
|
56
|
-
"signed_at": "2026-05-
|
|
56
|
+
"signed_at": "2026-05-27T19:09:39.423Z",
|
|
57
57
|
"cwe_refs": [
|
|
58
58
|
"CWE-125",
|
|
59
59
|
"CWE-362",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
],
|
|
124
124
|
"last_threat_review": "2026-05-17",
|
|
125
125
|
"signature": "ztSKk/zFMFbT12qRcEeBKpydBn7fTT86KxMmor0DTCoKQWk5fJ0fSInfP1XMSB6rFk4/SuSjKVxQRMKVJ5a+Cg==",
|
|
126
|
-
"signed_at": "2026-05-
|
|
126
|
+
"signed_at": "2026-05-27T19:09:39.425Z",
|
|
127
127
|
"cwe_refs": [
|
|
128
128
|
"CWE-1039",
|
|
129
129
|
"CWE-1426",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
],
|
|
197
197
|
"last_threat_review": "2026-05-17",
|
|
198
198
|
"signature": "K6QdPHNK5c4K5QFjrW0QsUhjp71D7SOisSoulwPNSvKRdi2rY+yg0kdckijBMkLMsVPyUvcC9giu93mKJ1OZDg==",
|
|
199
|
-
"signed_at": "2026-05-
|
|
199
|
+
"signed_at": "2026-05-27T19:09:39.425Z",
|
|
200
200
|
"cwe_refs": [
|
|
201
201
|
"CWE-22",
|
|
202
202
|
"CWE-345",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"framework_gaps": [],
|
|
249
249
|
"last_threat_review": "2026-05-22",
|
|
250
250
|
"signature": "Qd3SBWmUAaaT++e1Ry2wBIz/dCBmNBMl0+4Rb0etvJLES0fIBEAkU1mTbgNZnT5XOg9J5twdUpymWtmKnDDQCQ==",
|
|
251
|
-
"signed_at": "2026-05-
|
|
251
|
+
"signed_at": "2026-05-27T19:09:39.425Z"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"name": "compliance-theater",
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
],
|
|
280
280
|
"last_threat_review": "2026-05-22",
|
|
281
281
|
"signature": "F2Shxae0ua0gPtvwzTRVzzHaIgJcFDRT3/akLUAZ4aaMQhkleKkcTaTpkjp+pTVEdPfLeLGNCeAOMs+whVYOBg==",
|
|
282
|
-
"signed_at": "2026-05-
|
|
282
|
+
"signed_at": "2026-05-27T19:09:39.426Z"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"name": "exploit-scoring",
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
],
|
|
309
309
|
"last_threat_review": "2026-05-18",
|
|
310
310
|
"signature": "NA1hoQycvQhSUoG5rwlXX0mOVmGxoXRVezkELGEA2nZOdGis4gXkHT3O6Sfw7zxE4JuMrsCb65TEeOWk9WEPDg==",
|
|
311
|
-
"signed_at": "2026-05-
|
|
311
|
+
"signed_at": "2026-05-27T19:09:39.427Z"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"name": "rag-pipeline-security",
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
],
|
|
346
346
|
"last_threat_review": "2026-05-22",
|
|
347
347
|
"signature": "W3pS8lnaCP96TQzsJpG5d5yv5IwgaQyS4Z2Ctcz5BOJf6LbajSIgeDgTZ4f4Bhr5m4E7KsgWGjZS4x7Fwd33BQ==",
|
|
348
|
-
"signed_at": "2026-05-
|
|
348
|
+
"signed_at": "2026-05-27T19:09:39.427Z",
|
|
349
349
|
"cwe_refs": [
|
|
350
350
|
"CWE-1395",
|
|
351
351
|
"CWE-1426"
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
],
|
|
406
406
|
"last_threat_review": "2026-05-17",
|
|
407
407
|
"signature": "/WDGygh1Ck4yWlBWDGtEUVCqKB8d+UaJXoAoBXujtt+GAl8JbMNpaN1TvI0WkEltQ9dTxaAzSn20/eVDqv8iDQ==",
|
|
408
|
-
"signed_at": "2026-05-
|
|
408
|
+
"signed_at": "2026-05-27T19:09:39.427Z",
|
|
409
409
|
"d3fend_refs": [
|
|
410
410
|
"D3-CA",
|
|
411
411
|
"D3-CSPP",
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
"framework_gaps": [],
|
|
441
441
|
"last_threat_review": "2026-05-22",
|
|
442
442
|
"signature": "za1NKBpy9LC91F/ESO/qhUfmvVr8GNItQOjR5OJLeHm+2dQ9HHiFWQK2eo53V/n/0uhubuggURA3yS6kJuWwBg==",
|
|
443
|
-
"signed_at": "2026-05-
|
|
443
|
+
"signed_at": "2026-05-27T19:09:39.428Z",
|
|
444
444
|
"cwe_refs": [
|
|
445
445
|
"CWE-1188"
|
|
446
446
|
],
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
"framework_gaps": [],
|
|
475
475
|
"last_threat_review": "2026-05-18",
|
|
476
476
|
"signature": "xiHAhhdufm9hCKU8PLiPE0MX65ej2F4OZwtlWLGLCiie9/km+Kiqbt192LcMvr94v83C98pb9wIaqFsFWft6AQ==",
|
|
477
|
-
"signed_at": "2026-05-
|
|
477
|
+
"signed_at": "2026-05-27T19:09:39.428Z",
|
|
478
478
|
"forward_watch": [
|
|
479
479
|
"New AI attack classes as ATLAS v6 publishes",
|
|
480
480
|
"Post-quantum adversary capability timeline",
|
|
@@ -513,7 +513,7 @@
|
|
|
513
513
|
"framework_gaps": [],
|
|
514
514
|
"last_threat_review": "2026-05-01",
|
|
515
515
|
"signature": "oYsSk35N2Uzq7MRofACykylcVwkgPhI4luWZ14vmQT+gUKLyZiKVOUJbe1+7lGl6BYPRN0sUDQ0f7S5Eu5w2Ag==",
|
|
516
|
-
"signed_at": "2026-05-
|
|
516
|
+
"signed_at": "2026-05-27T19:09:39.428Z"
|
|
517
517
|
},
|
|
518
518
|
{
|
|
519
519
|
"name": "zeroday-gap-learn",
|
|
@@ -540,7 +540,7 @@
|
|
|
540
540
|
"framework_gaps": [],
|
|
541
541
|
"last_threat_review": "2026-05-18",
|
|
542
542
|
"signature": "igRqYyU1unRFH40BsPyAR62SPrk8QZv8dPGb8S9O9EvLCNOZAzm3t+HdT/NKqzWHwrpomOzkkkyLfYI/0qTUDA==",
|
|
543
|
-
"signed_at": "2026-05-
|
|
543
|
+
"signed_at": "2026-05-27T19:09:39.429Z",
|
|
544
544
|
"forward_watch": [
|
|
545
545
|
"New CISA KEV entries",
|
|
546
546
|
"New ATLAS TTP additions in each ATLAS release",
|
|
@@ -604,7 +604,7 @@
|
|
|
604
604
|
],
|
|
605
605
|
"last_threat_review": "2026-05-22",
|
|
606
606
|
"signature": "i/17u4kJiSpcZAz7LnTyRePFugQOstQ1P4kVoe0oGf4E2/j8oIN9U9DccjUn/YHZhKWIJ2AILG/DMhvMrr3bBg==",
|
|
607
|
-
"signed_at": "2026-05-
|
|
607
|
+
"signed_at": "2026-05-27T19:09:39.429Z",
|
|
608
608
|
"cwe_refs": [
|
|
609
609
|
"CWE-327"
|
|
610
610
|
],
|
|
@@ -652,7 +652,7 @@
|
|
|
652
652
|
],
|
|
653
653
|
"last_threat_review": "2026-05-22",
|
|
654
654
|
"signature": "QuOVaQ4E2Sl39TClbhZ7HA9XrYAyRrDL44HY3RTE7aWLue0hV2cxaBt40ALGmHS++631QGFDlZTLZI77Tr6nAA==",
|
|
655
|
-
"signed_at": "2026-05-
|
|
655
|
+
"signed_at": "2026-05-27T19:09:39.429Z"
|
|
656
656
|
},
|
|
657
657
|
{
|
|
658
658
|
"name": "security-maturity-tiers",
|
|
@@ -689,7 +689,7 @@
|
|
|
689
689
|
],
|
|
690
690
|
"last_threat_review": "2026-05-01",
|
|
691
691
|
"signature": "8Px1s2lDj10/Q6erwEQlXgUHM1+OTruUR8qAHPX7Oo3k/l69N6P9sm0PsafS9wDFtj9l5C/OiLiFgzMlMt6vBw==",
|
|
692
|
-
"signed_at": "2026-05-
|
|
692
|
+
"signed_at": "2026-05-27T19:09:39.430Z",
|
|
693
693
|
"cwe_refs": [
|
|
694
694
|
"CWE-1188"
|
|
695
695
|
]
|
|
@@ -724,7 +724,7 @@
|
|
|
724
724
|
"framework_gaps": [],
|
|
725
725
|
"last_threat_review": "2026-05-11",
|
|
726
726
|
"signature": "urRcataVWg6/utyEkSiOWoNxTL8sABRjPR7ShyDfZGnAozFph/yDktSoaPVxQDXwu9EfJE+qhUW5OYR/yJECBQ==",
|
|
727
|
-
"signed_at": "2026-05-
|
|
727
|
+
"signed_at": "2026-05-27T19:09:39.430Z"
|
|
728
728
|
},
|
|
729
729
|
{
|
|
730
730
|
"name": "attack-surface-pentest",
|
|
@@ -796,7 +796,7 @@
|
|
|
796
796
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — Microsoft Edge 4-bug sandbox escape by Orange Tsai (DEVCORE); forward-watch only (browser sandbox, out of current playbook scope); track Microsoft Edge security advisory and KEV add"
|
|
797
797
|
],
|
|
798
798
|
"signature": "C7lv65/Ecm8JJgSKxrX5lxx0YFzKWtrIQSKp+vy50I5e8945s1JmifGUUrnQwRQhq/Pkv7EmfiH5XSO8h75bDg==",
|
|
799
|
-
"signed_at": "2026-05-
|
|
799
|
+
"signed_at": "2026-05-27T19:09:39.430Z"
|
|
800
800
|
},
|
|
801
801
|
{
|
|
802
802
|
"name": "fuzz-testing-strategy",
|
|
@@ -856,7 +856,7 @@
|
|
|
856
856
|
"OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
|
|
857
857
|
],
|
|
858
858
|
"signature": "Z7ypCUnXx8JpLtgxxB6RHNi39w74AmrGY1N4ofAGCXhkuM2EaFVm1AU0dvl9UQ1bVLfHKEDGqMO/TwlIY7RABg==",
|
|
859
|
-
"signed_at": "2026-05-
|
|
859
|
+
"signed_at": "2026-05-27T19:09:39.431Z"
|
|
860
860
|
},
|
|
861
861
|
{
|
|
862
862
|
"name": "dlp-gap-analysis",
|
|
@@ -931,7 +931,7 @@
|
|
|
931
931
|
"Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
|
|
932
932
|
],
|
|
933
933
|
"signature": "IgEnpHOhCftAyfUNdKsjbrd169T9pJkk/rRM2ZEna+H18y7p5x48+1kME2sJMZjJuyAdQFBJi8PJXZFwLGI+DQ==",
|
|
934
|
-
"signed_at": "2026-05-
|
|
934
|
+
"signed_at": "2026-05-27T19:09:39.431Z"
|
|
935
935
|
},
|
|
936
936
|
{
|
|
937
937
|
"name": "supply-chain-integrity",
|
|
@@ -1010,7 +1010,7 @@
|
|
|
1010
1010
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — NVIDIA Megatron Bridge path traversal by haehae; AI training-stack file-system trust boundary; track patch and SBOM-attestation impact"
|
|
1011
1011
|
],
|
|
1012
1012
|
"signature": "pcLrM98A3vUSZRjwNAk0aZ9umvOwB41XCLLsCOy/IebB2F/06oIrGUKkMHtHwm4pTVPShMMcKdZQQ3jz30FnCg==",
|
|
1013
|
-
"signed_at": "2026-05-
|
|
1013
|
+
"signed_at": "2026-05-27T19:09:39.431Z"
|
|
1014
1014
|
},
|
|
1015
1015
|
{
|
|
1016
1016
|
"name": "defensive-countermeasure-mapping",
|
|
@@ -1067,7 +1067,7 @@
|
|
|
1067
1067
|
],
|
|
1068
1068
|
"last_threat_review": "2026-05-11",
|
|
1069
1069
|
"signature": "G5q5elh7Q7eu2xcwTVQJGDTGfvZR0OGQaLSLJPb2wjzCHFF8PWuZfCHZdjjqisiRzRWPyLlzgfHeMJqOdy7cBw==",
|
|
1070
|
-
"signed_at": "2026-05-
|
|
1070
|
+
"signed_at": "2026-05-27T19:09:39.432Z"
|
|
1071
1071
|
},
|
|
1072
1072
|
{
|
|
1073
1073
|
"name": "identity-assurance",
|
|
@@ -1134,7 +1134,7 @@
|
|
|
1134
1134
|
"d3fend_refs": [],
|
|
1135
1135
|
"last_threat_review": "2026-05-11",
|
|
1136
1136
|
"signature": "Wv5hGMeHjlaQK1zwicVCA7AvdKgJBgvcjdpGM9Ywahh9tagAKhbkOjybowDQZzu7OZ3bDkbh6pBYc1Sdwr6NAA==",
|
|
1137
|
-
"signed_at": "2026-05-
|
|
1137
|
+
"signed_at": "2026-05-27T19:09:39.432Z"
|
|
1138
1138
|
},
|
|
1139
1139
|
{
|
|
1140
1140
|
"name": "ot-ics-security",
|
|
@@ -1190,7 +1190,7 @@
|
|
|
1190
1190
|
"d3fend_refs": [],
|
|
1191
1191
|
"last_threat_review": "2026-05-11",
|
|
1192
1192
|
"signature": "8t5qKHd3yWi57dvG36YQkLN/X9bQWqtEiYjay4IfSmqhJpM/xXPaQVKNGz3wscrO8OLKUZ0OaX7Mj5kzpgBKBQ==",
|
|
1193
|
-
"signed_at": "2026-05-
|
|
1193
|
+
"signed_at": "2026-05-27T19:09:39.432Z"
|
|
1194
1194
|
},
|
|
1195
1195
|
{
|
|
1196
1196
|
"name": "coordinated-vuln-disclosure",
|
|
@@ -1242,7 +1242,7 @@
|
|
|
1242
1242
|
"NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
|
|
1243
1243
|
],
|
|
1244
1244
|
"signature": "GDGt4UPqBa04PjlpSmpyihGzd3OgfBN7jaAK5tfwp+LRSs3ygKOdbeivUCCHNagTY1hE6hG2Ou40ADfBFuXeAg==",
|
|
1245
|
-
"signed_at": "2026-05-
|
|
1245
|
+
"signed_at": "2026-05-27T19:09:39.433Z"
|
|
1246
1246
|
},
|
|
1247
1247
|
{
|
|
1248
1248
|
"name": "threat-modeling-methodology",
|
|
@@ -1292,7 +1292,7 @@
|
|
|
1292
1292
|
"PASTA v2 updates incorporating AI/ML application threats"
|
|
1293
1293
|
],
|
|
1294
1294
|
"signature": "rFBpOQEJUPpl+v88Lw/WqVJRhTl80vy0VbPAbzQj3Q0suJRRrJg368I9uKu5LXIBKFDvKxnGIcIzbGg9NUtaCA==",
|
|
1295
|
-
"signed_at": "2026-05-
|
|
1295
|
+
"signed_at": "2026-05-27T19:09:39.433Z"
|
|
1296
1296
|
},
|
|
1297
1297
|
{
|
|
1298
1298
|
"name": "webapp-security",
|
|
@@ -1366,7 +1366,7 @@
|
|
|
1366
1366
|
"d3fend_refs": [],
|
|
1367
1367
|
"last_threat_review": "2026-05-11",
|
|
1368
1368
|
"signature": "ux85YI4t2mVHOyt744Yin1HHy+z11JIFygjKfFfQOBBl5QVV3A267jeIy7utix85irMcpZm/T3yx/ooqiK2tBA==",
|
|
1369
|
-
"signed_at": "2026-05-
|
|
1369
|
+
"signed_at": "2026-05-27T19:09:39.433Z",
|
|
1370
1370
|
"forward_watch": [
|
|
1371
1371
|
"NGINX Rift CVE-2026-42945 (disclosed 2026-05-13, source depthfirst) — KEV-watch predicted CISA KEV listing by 2026-05-29; AI-assisted discovery angle; track for active-exploitation confirmation and patch advisory affecting front-door web app deployments"
|
|
1372
1372
|
]
|
|
@@ -1419,7 +1419,7 @@
|
|
|
1419
1419
|
"d3fend_refs": [],
|
|
1420
1420
|
"last_threat_review": "2026-05-15",
|
|
1421
1421
|
"signature": "IIXnkZ5ZNqFwOto5KfytADTLLZLoyXNZACD1ORZ40P1HUAQxe6u2uyXFzzsfuob4Uy06jNkRGr2FFgCphUH1Cw==",
|
|
1422
|
-
"signed_at": "2026-05-
|
|
1422
|
+
"signed_at": "2026-05-27T19:09:39.434Z"
|
|
1423
1423
|
},
|
|
1424
1424
|
{
|
|
1425
1425
|
"name": "sector-healthcare",
|
|
@@ -1479,7 +1479,7 @@
|
|
|
1479
1479
|
"d3fend_refs": [],
|
|
1480
1480
|
"last_threat_review": "2026-05-11",
|
|
1481
1481
|
"signature": "AhF9KF8ZBlDteciV+F8IBSmFVYCvQOn44GmD4rZjgLoPxfIv/QE1/vSkK32zyqDKtHWkLSXExbkkPkxA/V6dDw==",
|
|
1482
|
-
"signed_at": "2026-05-
|
|
1482
|
+
"signed_at": "2026-05-27T19:09:39.435Z"
|
|
1483
1483
|
},
|
|
1484
1484
|
{
|
|
1485
1485
|
"name": "sector-financial",
|
|
@@ -1560,7 +1560,7 @@
|
|
|
1560
1560
|
"TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
|
|
1561
1561
|
],
|
|
1562
1562
|
"signature": "HQgZvb4ReziEz5rNFr8i/O8/rJEZR+iHRROT7m/D2QUqhrcNISPkYXENsUZlG8xapzy/Ik92ehkseyj4hdmhCQ==",
|
|
1563
|
-
"signed_at": "2026-05-
|
|
1563
|
+
"signed_at": "2026-05-27T19:09:39.435Z"
|
|
1564
1564
|
},
|
|
1565
1565
|
{
|
|
1566
1566
|
"name": "sector-federal-government",
|
|
@@ -1629,7 +1629,7 @@
|
|
|
1629
1629
|
"Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
|
|
1630
1630
|
],
|
|
1631
1631
|
"signature": "linxmsXZiOYtcs71sSWgGCrvb8xQfmxmtTY5PRvZJ0/8FgJulo0tQtejzexYG775s7XhjAmGsDP238BQTQ8ADA==",
|
|
1632
|
-
"signed_at": "2026-05-
|
|
1632
|
+
"signed_at": "2026-05-27T19:09:39.435Z"
|
|
1633
1633
|
},
|
|
1634
1634
|
{
|
|
1635
1635
|
"name": "sector-energy",
|
|
@@ -1694,7 +1694,7 @@
|
|
|
1694
1694
|
"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"
|
|
1695
1695
|
],
|
|
1696
1696
|
"signature": "JjBfc0ovta560Clk0x3QGRM5osFJDwcvpy3rT7QEGdCIL827jzE8QCow1C8deXq+4JhY2sA/d7/8IsxikdlkCg==",
|
|
1697
|
-
"signed_at": "2026-05-
|
|
1697
|
+
"signed_at": "2026-05-27T19:09:39.436Z"
|
|
1698
1698
|
},
|
|
1699
1699
|
{
|
|
1700
1700
|
"name": "sector-telecom",
|
|
@@ -1780,7 +1780,7 @@
|
|
|
1780
1780
|
"O-RAN SFG / WG11 security specifications"
|
|
1781
1781
|
],
|
|
1782
1782
|
"signature": "JWVxKFoKrbX4d+Tko1d4OBdwyg25MfFFKn4CT6E/CzH+YwnU3T6Y76uBQIKg3+gIGTvPduqyvQwQQ5FxKDuPBw==",
|
|
1783
|
-
"signed_at": "2026-05-
|
|
1783
|
+
"signed_at": "2026-05-27T19:09:39.436Z"
|
|
1784
1784
|
},
|
|
1785
1785
|
{
|
|
1786
1786
|
"name": "api-security",
|
|
@@ -1849,7 +1849,7 @@
|
|
|
1849
1849
|
"d3fend_refs": [],
|
|
1850
1850
|
"last_threat_review": "2026-05-18",
|
|
1851
1851
|
"signature": "BmCRCestWqr55+fCynEhtAl5NWLT+xLTkpwS0Icp3SaoZOw/ce3Y6TtqjHRSKn4CBJq7YDiLRWxmhO3MStvOAA==",
|
|
1852
|
-
"signed_at": "2026-05-
|
|
1852
|
+
"signed_at": "2026-05-27T19:09:39.437Z",
|
|
1853
1853
|
"forward_watch": [
|
|
1854
1854
|
"NGINX Rift CVE-2026-42945 (disclosed 2026-05-13, source depthfirst) — KEV-watch predicted CISA KEV listing by 2026-05-29; track for active-exploitation confirmation and patch advisory affecting API gateway / reverse-proxy deployments",
|
|
1855
1855
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — LiteLLM 3-bug SSRF + Code Injection chain by k3vg3n; LLM-proxy API surface; track upstream patch and CVE assignments",
|
|
@@ -1935,7 +1935,7 @@
|
|
|
1935
1935
|
"CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
|
|
1936
1936
|
],
|
|
1937
1937
|
"signature": "/DV3pmZwrRySrk1OCbyI+0BQESacjupJfUX3eC2NGtXuYOBro0vndIP+z27heFxumnjU3a9sfla7/U9X+pqnDw==",
|
|
1938
|
-
"signed_at": "2026-05-
|
|
1938
|
+
"signed_at": "2026-05-27T19:09:39.437Z"
|
|
1939
1939
|
},
|
|
1940
1940
|
{
|
|
1941
1941
|
"name": "container-runtime-security",
|
|
@@ -1997,7 +1997,7 @@
|
|
|
1997
1997
|
"d3fend_refs": [],
|
|
1998
1998
|
"last_threat_review": "2026-05-15",
|
|
1999
1999
|
"signature": "E2UGSf9ATyYgzBr8uM/0ubOUmDqo1jVA7f9mVxv6LHfWGCNuQNXDyuNou9VAmUCeeXEeUYIi3AFjXkJqpOkxDA==",
|
|
2000
|
-
"signed_at": "2026-05-
|
|
2000
|
+
"signed_at": "2026-05-27T19:09:39.438Z",
|
|
2001
2001
|
"forward_watch": [
|
|
2002
2002
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — NVIDIA Container Toolkit container escape ($50K award) by chompie / IBM X-Force XOR; high-severity container/hypervisor boundary break; track patch and KEV add post-embargo"
|
|
2003
2003
|
]
|
|
@@ -2071,7 +2071,7 @@
|
|
|
2071
2071
|
"MITRE ATLAS v5.6.0 (released May 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: subsequent ATLAS minor and major releases — track next-cadence updates to agentic-AI TTPs and MLOps-pipeline-specific techniques"
|
|
2072
2072
|
],
|
|
2073
2073
|
"signature": "IL+DlRCDJN/p08iiJCFkasKcoyjcB0uWrJ6ORLjQcS1HrUa5Xt62QxVjYPHzaevlm5y36ZdmfESqsZJmzK3lCg==",
|
|
2074
|
-
"signed_at": "2026-05-
|
|
2074
|
+
"signed_at": "2026-05-27T19:09:39.438Z"
|
|
2075
2075
|
},
|
|
2076
2076
|
{
|
|
2077
2077
|
"name": "incident-response-playbook",
|
|
@@ -2133,7 +2133,7 @@
|
|
|
2133
2133
|
"NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
|
|
2134
2134
|
],
|
|
2135
2135
|
"signature": "MmjLjlmOMLjhJJ4ZfR8MYlHam+ZB+eSqfh6Nv+DecaG4O5zeo9DBP/iL3cbyDVZxmhnhivgJild2ccYeWTeZAg==",
|
|
2136
|
-
"signed_at": "2026-05-
|
|
2136
|
+
"signed_at": "2026-05-27T19:09:39.439Z"
|
|
2137
2137
|
},
|
|
2138
2138
|
{
|
|
2139
2139
|
"name": "ransomware-response",
|
|
@@ -2213,7 +2213,7 @@
|
|
|
2213
2213
|
],
|
|
2214
2214
|
"last_threat_review": "2026-05-22",
|
|
2215
2215
|
"signature": "ssueL03g9fWlhXpTe+IiY5l7RqQkunN4DTN5QETKE+VOX+qggdjAR8PONxk77ol4xWYmHrM/VcH8CNtXUEvgBA==",
|
|
2216
|
-
"signed_at": "2026-05-
|
|
2216
|
+
"signed_at": "2026-05-27T19:09:39.439Z"
|
|
2217
2217
|
},
|
|
2218
2218
|
{
|
|
2219
2219
|
"name": "email-security-anti-phishing",
|
|
@@ -2266,7 +2266,7 @@
|
|
|
2266
2266
|
"d3fend_refs": [],
|
|
2267
2267
|
"last_threat_review": "2026-05-18",
|
|
2268
2268
|
"signature": "rK+WnuS+9tqEABmwc0jO/PEmxcLjG1/tmUb897HsClQeKzf+TQOlwBE+OsbtuKxpjYNwur62Xxs3TxObkwm8Cw==",
|
|
2269
|
-
"signed_at": "2026-05-
|
|
2269
|
+
"signed_at": "2026-05-27T19:09:39.439Z"
|
|
2270
2270
|
},
|
|
2271
2271
|
{
|
|
2272
2272
|
"name": "age-gates-child-safety",
|
|
@@ -2334,7 +2334,7 @@
|
|
|
2334
2334
|
"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"
|
|
2335
2335
|
],
|
|
2336
2336
|
"signature": "Rgho5TOFUL1txOzcVR0kASCNdovSU4yt99JlGilJlJRyg0A+BdeeQYrZrhPF6Vx2reUAVG0BeHfcZtSbi+cwCg==",
|
|
2337
|
-
"signed_at": "2026-05-
|
|
2337
|
+
"signed_at": "2026-05-27T19:09:39.440Z"
|
|
2338
2338
|
},
|
|
2339
2339
|
{
|
|
2340
2340
|
"name": "cloud-iam-incident",
|
|
@@ -2414,7 +2414,7 @@
|
|
|
2414
2414
|
],
|
|
2415
2415
|
"last_threat_review": "2026-05-15",
|
|
2416
2416
|
"signature": "e/kij7GtKaytROyIj7V5RH+FC9WtmVFzrmG2kIlNDNn29ep/CRNlIQKwXLpzo/81AIf634pmdr1qy/+vwIuUDA==",
|
|
2417
|
-
"signed_at": "2026-05-
|
|
2417
|
+
"signed_at": "2026-05-27T19:09:39.440Z",
|
|
2418
2418
|
"forward_watch": [
|
|
2419
2419
|
"AWS IAM Identity Center session-policy refresh and step-up-on-admin enforcement (anticipated 2026-H2 release)",
|
|
2420
2420
|
"GCP Workload Identity Federation principal-set attribute mapping tightening (post-2026 Q3 Federation hardening guide)",
|
|
@@ -2508,7 +2508,7 @@
|
|
|
2508
2508
|
],
|
|
2509
2509
|
"last_threat_review": "2026-05-15",
|
|
2510
2510
|
"signature": "ew9Kglc9fAZzbn0ZIfGP7WSK/j4eV2VhSvpy+s5bEfNEVYIMa2kZjnGBapgUsyGDLes9H9K2ovjQyX17+GKiBw==",
|
|
2511
|
-
"signed_at": "2026-05-
|
|
2511
|
+
"signed_at": "2026-05-27T19:09:39.440Z",
|
|
2512
2512
|
"forward_watch": [
|
|
2513
2513
|
"Entra ID conditional access evolution post-Midnight Blizzard — Microsoft's 2025-2026 commitments on legacy-tenant MFA enforcement and OAuth-app consent gating",
|
|
2514
2514
|
"Okta IPSIE (Interoperability Profile for Secure Identity in the Enterprise) OpenID Foundation working-group output and adoption timeline",
|
|
@@ -2526,6 +2526,6 @@
|
|
|
2526
2526
|
],
|
|
2527
2527
|
"manifest_signature": {
|
|
2528
2528
|
"algorithm": "Ed25519",
|
|
2529
|
-
"signature_base64": "
|
|
2529
|
+
"signature_base64": "kz1GOuevVLJH7BQe+0ZEZfgkd7GmCgXILgZxLT8NqAX+PCTLHWNoYFHNZjSEcuSL38OhhidKiqt5381iRh0CCw=="
|
|
2530
2530
|
}
|
|
2531
2531
|
}
|
package/orchestrator/index.js
CHANGED
|
@@ -165,11 +165,46 @@ Examples:
|
|
|
165
165
|
return;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
+
// The set of framework IDs the catalog actually carries gaps for. Used both
|
|
169
|
+
// to expand `all` and to validate an explicit framework argument.
|
|
170
|
+
const knownFrameworks = [...new Set(Object.values(controlGaps).flatMap(g =>
|
|
171
|
+
Array.isArray(g.framework) ? g.framework : [g.framework]
|
|
172
|
+
).filter(f => f && f !== 'ALL'))];
|
|
173
|
+
|
|
168
174
|
const requested = args[0].toLowerCase() === 'all'
|
|
169
|
-
?
|
|
170
|
-
Array.isArray(g.framework) ? g.framework : [g.framework]
|
|
171
|
-
).filter(f => f && f !== 'ALL'))]
|
|
175
|
+
? knownFrameworks
|
|
172
176
|
: [args[0]];
|
|
177
|
+
|
|
178
|
+
// Validate an explicit framework name. Pre-fix an unknown framework (typo,
|
|
179
|
+
// wrong casing, a framework the catalog doesn't track) produced a report
|
|
180
|
+
// with zero matching gaps — indistinguishable from a real "no gaps" result,
|
|
181
|
+
// so an operator could read a typo as proof the framework covers the
|
|
182
|
+
// scenario. Refuse with the known-framework list instead.
|
|
183
|
+
//
|
|
184
|
+
// Match exactly as gapReport does: normalize (strip case + spaces + hyphens)
|
|
185
|
+
// and accept a substring hit against either a gap's `framework` or a prefix
|
|
186
|
+
// hit against a gap KEY — so the documented short forms ("NIST-800-53"
|
|
187
|
+
// matching "NIST 800-53 Rev 5") still resolve. A framework is "known" when at
|
|
188
|
+
// least one catalog gap matches it, independent of the scenario; a known
|
|
189
|
+
// framework with no scenario gaps remains a legitimate empty result.
|
|
190
|
+
if (args[0].toLowerCase() !== 'all') {
|
|
191
|
+
const normalize = (s) => String(s).toLowerCase().replace(/[\s_-]/g, '');
|
|
192
|
+
const idNorm = normalize(args[0]);
|
|
193
|
+
const matchesFramework = Object.entries(controlGaps).some(([key, g]) => {
|
|
194
|
+
const fws = Array.isArray(g.framework) ? g.framework : [g.framework];
|
|
195
|
+
if (fws.some(f => f && normalize(f).includes(idNorm))) return true;
|
|
196
|
+
if (normalize(key).startsWith(idNorm)) return true;
|
|
197
|
+
return false;
|
|
198
|
+
});
|
|
199
|
+
if (!matchesFramework) {
|
|
200
|
+
const sorted = knownFrameworks.slice().sort();
|
|
201
|
+
const msg = `[framework-gap] unknown framework "${args[0]}". No catalog control gaps reference it. Known frameworks: ${sorted.join(', ')}. Use "all" to analyze every framework.`;
|
|
202
|
+
if (jsonOut) console.log(JSON.stringify({ ok: false, error: msg, known_frameworks: sorted }, null, 2));
|
|
203
|
+
else console.error(msg);
|
|
204
|
+
safeExit(EXIT_CODES.GENERIC_FAILURE);
|
|
205
|
+
return;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
173
208
|
const scenario = args[1];
|
|
174
209
|
|
|
175
210
|
const report = gapReport(requested, scenario, controlGaps, cveCatalog);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blamejs/exceptd-skills",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.10",
|
|
4
4
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (406 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 8888 RFCs), 35 jurisdictions, 10-class catalog gap detector + budget gate, real XML parser + canonical-form diff + content-pattern regression detection, Ed25519-signed.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-security",
|
package/sbom.cdx.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bomFormat": "CycloneDX",
|
|
3
3
|
"specVersion": "1.6",
|
|
4
|
-
"serialNumber": "urn:uuid:
|
|
4
|
+
"serialNumber": "urn:uuid:8fb68e61-0c23-484d-ae4f-4602b074d0f5",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"metadata": {
|
|
7
|
-
"timestamp": "
|
|
7
|
+
"timestamp": "2102-05-29T07:38:09.000Z",
|
|
8
8
|
"tools": [
|
|
9
9
|
{
|
|
10
10
|
"vendor": "blamejs",
|
|
11
11
|
"name": "scripts/refresh-sbom.js",
|
|
12
|
-
"version": "0.14.
|
|
12
|
+
"version": "0.14.10"
|
|
13
13
|
}
|
|
14
14
|
],
|
|
15
15
|
"component": {
|
|
16
|
-
"bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.14.
|
|
16
|
+
"bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.14.10",
|
|
17
17
|
"type": "application",
|
|
18
18
|
"name": "@blamejs/exceptd-skills",
|
|
19
|
-
"version": "0.14.
|
|
19
|
+
"version": "0.14.10",
|
|
20
20
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (406 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 8888 RFCs), 35 jurisdictions, 10-class catalog gap detector + budget gate, real XML parser + canonical-form diff + content-pattern regression detection, Ed25519-signed.",
|
|
21
21
|
"licenses": [
|
|
22
22
|
{
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
],
|
|
28
|
-
"purl": "pkg:npm/%40blamejs/exceptd-skills@0.14.
|
|
28
|
+
"purl": "pkg:npm/%40blamejs/exceptd-skills@0.14.10",
|
|
29
29
|
"hashes": [
|
|
30
30
|
{
|
|
31
31
|
"alg": "SHA-256",
|
|
32
|
-
"content": "
|
|
32
|
+
"content": "dd31abe0df4f5c62f434ae6f9f797cd0175bce8e4efc586ce32e7f5358417308"
|
|
33
33
|
}
|
|
34
34
|
],
|
|
35
35
|
"externalReferences": [
|
|
36
36
|
{
|
|
37
37
|
"type": "distribution",
|
|
38
|
-
"url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.14.
|
|
38
|
+
"url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.14.10"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"type": "vcs",
|
|
@@ -116,11 +116,11 @@
|
|
|
116
116
|
"hashes": [
|
|
117
117
|
{
|
|
118
118
|
"alg": "SHA-256",
|
|
119
|
-
"content": "
|
|
119
|
+
"content": "4ef9374f1d742ecdb9f226345ec01a50303e2e57a595481283a79026f99fecfb"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
"alg": "SHA3-512",
|
|
123
|
-
"content": "
|
|
123
|
+
"content": "5f1e8ffbfa99c068814fff268481e8b3b46947d1acc6857895d257ea1cea53e901146cd2d188d92dfe53e012e8f4651d73d72b9521c4d73ec003262ff73f908e"
|
|
124
124
|
}
|
|
125
125
|
]
|
|
126
126
|
},
|
|
@@ -281,11 +281,11 @@
|
|
|
281
281
|
"hashes": [
|
|
282
282
|
{
|
|
283
283
|
"alg": "SHA-256",
|
|
284
|
-
"content": "
|
|
284
|
+
"content": "c0503adedd57bbd05c86937d0f24e9ad5294883dd259d9a04f4575f74031ca98"
|
|
285
285
|
},
|
|
286
286
|
{
|
|
287
287
|
"alg": "SHA3-512",
|
|
288
|
-
"content": "
|
|
288
|
+
"content": "0e10b7c282377f39927bd314c51bc88e509fb738d4f4e08256f13c7e7be4fde69a773e138c74b121d39b12b4555aaa2ca82b7ad4c0952c77d0f88ea43d045249"
|
|
289
289
|
}
|
|
290
290
|
]
|
|
291
291
|
},
|
|
@@ -1316,11 +1316,11 @@
|
|
|
1316
1316
|
"hashes": [
|
|
1317
1317
|
{
|
|
1318
1318
|
"alg": "SHA-256",
|
|
1319
|
-
"content": "
|
|
1319
|
+
"content": "6a7cda7be47f08d77f5049fbf49adfe977dd5321d27fd28b2e02133cc7da76e5"
|
|
1320
1320
|
},
|
|
1321
1321
|
{
|
|
1322
1322
|
"alg": "SHA3-512",
|
|
1323
|
-
"content": "
|
|
1323
|
+
"content": "74cbfe39fa4d8a298d2d580cf66f7ec0b79d571eb99d8620ea9f186b2219e12cf729308812be539191d0c5213981f5a32a5cd75d844eabec9175b599e6ed4e1e"
|
|
1324
1324
|
}
|
|
1325
1325
|
]
|
|
1326
1326
|
},
|
|
@@ -1346,11 +1346,11 @@
|
|
|
1346
1346
|
"hashes": [
|
|
1347
1347
|
{
|
|
1348
1348
|
"alg": "SHA-256",
|
|
1349
|
-
"content": "
|
|
1349
|
+
"content": "19d6d3ebed46e74a44d8dd51f3b872af2a6ccc822956f7e36c68aeb8dea6a251"
|
|
1350
1350
|
},
|
|
1351
1351
|
{
|
|
1352
1352
|
"alg": "SHA3-512",
|
|
1353
|
-
"content": "
|
|
1353
|
+
"content": "4c8f2b37db734bf999d145fd29a48ae1847652a9eed14f3db14d90527eafbff27146e80fc34f40439b988ea76783572053e59c1b9b113308d84327913af2ef6c"
|
|
1354
1354
|
}
|
|
1355
1355
|
]
|
|
1356
1356
|
},
|
|
@@ -1751,11 +1751,11 @@
|
|
|
1751
1751
|
"hashes": [
|
|
1752
1752
|
{
|
|
1753
1753
|
"alg": "SHA-256",
|
|
1754
|
-
"content": "
|
|
1754
|
+
"content": "4d13f4f27b890997b5da18055a4bb0eac69a60b24b33dad97616c9fea8ba50d0"
|
|
1755
1755
|
},
|
|
1756
1756
|
{
|
|
1757
1757
|
"alg": "SHA3-512",
|
|
1758
|
-
"content": "
|
|
1758
|
+
"content": "069ad77e2888bd780a9f1c3d3b38aaf32cf34b11727efc4d00156b6b0b90223beefdde0113848a2e30a9251dc143535d50a20d9850d37ee103c9e52c9b287c76"
|
|
1759
1759
|
}
|
|
1760
1760
|
]
|
|
1761
1761
|
},
|
|
@@ -1811,11 +1811,11 @@
|
|
|
1811
1811
|
"hashes": [
|
|
1812
1812
|
{
|
|
1813
1813
|
"alg": "SHA-256",
|
|
1814
|
-
"content": "
|
|
1814
|
+
"content": "eab11c18ec8c198dcc77642271b1b51f1f942333eedade34ea3d0ce4e8cf65ed"
|
|
1815
1815
|
},
|
|
1816
1816
|
{
|
|
1817
1817
|
"alg": "SHA3-512",
|
|
1818
|
-
"content": "
|
|
1818
|
+
"content": "7c9ffa98ba3bd538686d714e561f012598e792ec9a2c00503d0795c64e76e16d19f66c96c557998f66f9984999973e83b539c130a3b9f0908e07632c0dd660aa"
|
|
1819
1819
|
}
|
|
1820
1820
|
]
|
|
1821
1821
|
},
|