@blamejs/exceptd-skills 0.14.9 → 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 CHANGED
@@ -1,5 +1,17 @@
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
+
3
15
  ## 0.14.9 — 2026-05-27
4
16
 
5
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.
package/bin/exceptd.js CHANGED
@@ -7544,17 +7544,47 @@ function cmdAiRun(runner, args, runOpts, pretty) {
7544
7544
  // Read any pre-supplied evidence from stdin OR from --evidence flag.
7545
7545
  let payload = { observations: {}, verdict: {} };
7546
7546
  if (args.evidence) {
7547
- try { payload = readEvidence(args.evidence); }
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)); }
7548
7553
  catch (e) { return emitError(`ai-run: failed to read --evidence: ${e.message}`, null, pretty); }
7549
7554
  } else if (hasReadableStdin()) {
7550
7555
  // hasReadableStdin() probes via fstat before falling into
7551
7556
  // readFileSync(0). Wrapped-stdin test harnesses (isTTY===undefined,
7552
7557
  // size===0) would otherwise hang here.
7553
7558
  // Drain stdin for any evidence event.
7554
- try {
7555
- const buf = fs.readFileSync(0, "utf8");
7556
- if (buf.trim()) {
7557
- // Accept either a bare submission object or a single evidence event.
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.
7558
7588
  for (const line of buf.split(/\r?\n/)) {
7559
7589
  const t = line.trim();
7560
7590
  if (!t) continue;
@@ -7574,7 +7604,7 @@ function cmdAiRun(runner, args, runOpts, pretty) {
7574
7604
  } catch { /* skip non-JSON lines */ }
7575
7605
  }
7576
7606
  }
7577
- } catch { /* stdin empty / unreadable — fall through with empty payload */ }
7607
+ }
7578
7608
  }
7579
7609
  const submission = buildSubmissionFromPayload(payload);
7580
7610
  let result;
@@ -8213,6 +8243,20 @@ function cmdCi(runner, args, runOpts, pretty) {
8213
8243
  }
8214
8244
  }
8215
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
+
8216
8260
  const results = [];
8217
8261
  let fail = false;
8218
8262
  let failReasons = [];
@@ -8340,7 +8384,10 @@ function cmdCi(runner, args, runOpts, pretty) {
8340
8384
  gapRollupMap.set(key, {
8341
8385
  framework: g.framework || null,
8342
8386
  claimed_control: g.claimed_control || null,
8343
- why_insufficient: g.why_insufficient || null,
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,
8344
8391
  playbooks: [r.playbook_id],
8345
8392
  });
8346
8393
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-27T18:39:39.915Z",
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": "9b1abf00a40118b264552a1897b4d1857e831d33e929a5179a1bf83348e04999",
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",
@@ -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 through so computeClockStart can check
1549
- // operator_consent.explicit before auto-stamping detect_confirmed.
1550
- const clockStart = obligation ? computeClockStart(obligation.clock_starts, agentSignals, runOpts) : null;
1551
- // When the clock event is detect_confirmed AND the classification
1552
- // matched AND the operator did NOT pass --ack, surface
1553
- // clock_pending_ack so the notification record is visibly waiting on
1554
- // acknowledgement.
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()
@@ -3571,13 +3576,21 @@ function stripOuterParens(expr) {
3571
3576
  * waiting on acknowledgement.
3572
3577
  * - All other events without an explicit timestamp: return null.
3573
3578
  */
3574
- function computeClockStart(eventName, agentSignals, runOpts = {}) {
3579
+ function computeClockStart(eventName, agentSignals, runOpts = {}, engineClassification = null) {
3575
3580
  // The agent submits clock_started_at_<event> ISO strings as it progresses.
3576
3581
  const key = `clock_started_at_${eventName}`;
3577
3582
  if (agentSignals && agentSignals[key]) return new Date(agentSignals[key]);
3578
3583
  // For detect_confirmed: only auto-stamp when the operator has explicitly
3579
3584
  // acknowledged the result via --ack. Otherwise leave the clock pending.
3580
- if (eventName === 'detect_confirmed' && agentSignals?.detection_classification === 'detected'
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
3581
3594
  && runOpts && runOpts.operator_consent && runOpts.operator_consent.explicit === true) {
3582
3595
  return new Date();
3583
3596
  }
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.14.9",
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-27T18:29:47.137Z",
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-27T18:29:47.138Z",
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-27T18:29:47.139Z",
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-27T18:29:47.139Z"
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-27T18:29:47.140Z"
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-27T18:29:47.140Z"
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-27T18:29:47.141Z",
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-27T18:29:47.141Z",
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-27T18:29:47.141Z",
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-27T18:29:47.142Z",
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-27T18:29:47.142Z"
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-27T18:29:47.143Z",
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-27T18:29:47.143Z",
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-27T18:29:47.143Z"
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-27T18:29:47.143Z",
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-27T18:29:47.144Z"
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-27T18:29:47.144Z"
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-27T18:29:47.144Z"
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-27T18:29:47.145Z"
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-27T18:29:47.145Z"
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-27T18:29:47.145Z"
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-27T18:29:47.146Z"
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-27T18:29:47.146Z"
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-27T18:29:47.147Z"
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-27T18:29:47.147Z"
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-27T18:29:47.147Z",
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-27T18:29:47.147Z"
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-27T18:29:47.148Z"
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-27T18:29:47.149Z"
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-27T18:29:47.149Z"
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-27T18:29:47.149Z"
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-27T18:29:47.150Z"
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-27T18:29:47.150Z",
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-27T18:29:47.150Z"
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-27T18:29:47.151Z",
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-27T18:29:47.151Z"
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-27T18:29:47.151Z"
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-27T18:29:47.152Z"
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-27T18:29:47.152Z"
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-27T18:29:47.153Z"
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-27T18:29:47.153Z",
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-27T18:29:47.153Z",
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": "4DNEWKnVCmwe9oYsRLs/AuYmQiFU+xGm34LG0Y+OpMNSel71e6VFy7zfbw2Bw99UcfNVIdU4esjhk4awdAlCAA=="
2529
+ "signature_base64": "kz1GOuevVLJH7BQe+0ZEZfgkd7GmCgXILgZxLT8NqAX+PCTLHWNoYFHNZjSEcuSL38OhhidKiqt5381iRh0CCw=="
2530
2530
  }
2531
2531
  }
@@ -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
- ? [...new Set(Object.values(controlGaps).flatMap(g =>
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.9",
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:1a8b234b-ced4-4ad0-b8ba-31f02f4294a8",
4
+ "serialNumber": "urn:uuid:8fb68e61-0c23-484d-ae4f-4602b074d0f5",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2040-02-11T05:42:35.000Z",
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.9"
12
+ "version": "0.14.10"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.14.9",
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.9",
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.9",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.14.10",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "ed8f9d23b7f84f4cbe1372f27c299f02d97d7d259797cd60cdbf4f838a479b14"
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.9"
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": "8128bd72e9113823c1bca4b32ee9b6dc4b229818bd5c8602784250e143b0b9f0"
119
+ "content": "4ef9374f1d742ecdb9f226345ec01a50303e2e57a595481283a79026f99fecfb"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "813fd105884701ec6b6ccc987d2d0877e1f1d410d2babb111419a6cbd91332d7b59147a3183e564e60b29b769aeff233f9ac9841114a0b2313e0772516fc9053"
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": "67aac0637fc151141902aafa2108ebacdc6b96d1a3782e0f1ef3d086c631a6f9"
284
+ "content": "c0503adedd57bbd05c86937d0f24e9ad5294883dd259d9a04f4575f74031ca98"
285
285
  },
286
286
  {
287
287
  "alg": "SHA3-512",
288
- "content": "2acb7366429edf455cabe9992c4babb9440fc92cf2f8a0fbfaca65111a573b5c99e2ae4071af556fb65df3687e98105a3ecd0a13b234f9c38b81ea8bef47a352"
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": "65403ab5a2824a6647612167ac08fc458580fb796b5c2581be7c80431cc8572d"
1319
+ "content": "6a7cda7be47f08d77f5049fbf49adfe977dd5321d27fd28b2e02133cc7da76e5"
1320
1320
  },
1321
1321
  {
1322
1322
  "alg": "SHA3-512",
1323
- "content": "9ac3d18231c5e92c18f9dca043d36539dd05e85ac251c225dd96c5c1822d9bc82b1fbc80a03f6fd95c5ce76fc6f44b0aeb6199d3c503a8f88d2ff3c53f432f35"
1323
+ "content": "74cbfe39fa4d8a298d2d580cf66f7ec0b79d571eb99d8620ea9f186b2219e12cf729308812be539191d0c5213981f5a32a5cd75d844eabec9175b599e6ed4e1e"
1324
1324
  }
1325
1325
  ]
1326
1326
  },
@@ -1751,11 +1751,11 @@
1751
1751
  "hashes": [
1752
1752
  {
1753
1753
  "alg": "SHA-256",
1754
- "content": "9b1abf00a40118b264552a1897b4d1857e831d33e929a5179a1bf83348e04999"
1754
+ "content": "4d13f4f27b890997b5da18055a4bb0eac69a60b24b33dad97616c9fea8ba50d0"
1755
1755
  },
1756
1756
  {
1757
1757
  "alg": "SHA3-512",
1758
- "content": "78595bf8934afe4e4fb9a715ec84d89febbb3e60225419af5b919ab8b28bf614030a18b5ce2e085d7267ab7132ee7f01dc1ce2511a80fca0c2f119a2e7ac1c99"
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": "e6ca431c82725c29082fde73d3af13ef2b91607bfb79bcfa6741b98079e30062"
1814
+ "content": "eab11c18ec8c198dcc77642271b1b51f1f942333eedade34ea3d0ce4e8cf65ed"
1815
1815
  },
1816
1816
  {
1817
1817
  "alg": "SHA3-512",
1818
- "content": "0126958b8a206310e712258b997140edf5222c28259f5450200e4756e88b03393963ea63ad3d1d238d8abc256d9fdb1101d810d26f9e474787a461f5749c1a0c"
1818
+ "content": "7c9ffa98ba3bd538686d714e561f012598e792ec9a2c00503d0795c64e76e16d19f66c96c557998f66f9984999973e83b539c130a3b9f0908e07632c0dd660aa"
1819
1819
  }
1820
1820
  ]
1821
1821
  },