@blamejs/exceptd-skills 0.16.1 → 0.16.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.16.3 — 2026-05-31
4
+
5
+ For an indicator-driven detection with no matched CVE, a run's `top_finding` now names the indicator that actually drove the verdict instead of repeating the verdict word, so the summary line reads (for example) `library-author: detected (rwep=10, release-workflow-non-frozen-install, evidence=complete)` rather than duplicating `detected`.
6
+
7
+ ## 0.16.2 — 2026-05-31
8
+
9
+ The default evidence bundle for the secrets, credential-store, runtime, and citation-hygiene playbooks is now a real structured-JSON document instead of an "Unknown format" placeholder, and `json` is a generally selectable bundle format for any playbook.
10
+
11
+ A crypto-codebase scan of a source repository no longer emits a spurious "precondition not met" warning for its source-tree check: the collector now attests that gate from the files it walked, matching how the supply-chain and library-author collectors already self-attest.
12
+
13
+ When a run is blocked on a precondition you submitted as false, the remediation now names the exact way to satisfy it — submit `precondition_checks {"<id>": true}` in your evidence, or pass the owning collector's attestation flag at collect time (for example `collect cicd-pipeline-compromise --attest-ownership`) — instead of an ambiguous hint that could be read as a flag on the wrong verb.
14
+
3
15
  ## 0.16.1 — 2026-05-31
4
16
 
5
17
  Supply-chain, library-author, and MCP scans no longer emit a spurious "precondition not met" warning when the scanned directory clearly satisfies it: the collectors now attest the gates they can verify from what they collected (a lockfile satisfies the package-manager gate, a package manifest or publish workflow satisfies the publishable-artifact gate, a present assistant config satisfies the AI-assistant gate) — so a `collect --cwd <repo> | run` against a target directory reports them as met rather than unverified. The library-author publish-workflow detector no longer mis-classifies a CI workflow whose only mention of a publish command sits inside a comment. And a blocked run on an intent/ownership precondition (for example the CI/CD playbook's fleet-ownership gate) now states the specific gate and how to satisfy it, instead of guessing a platform mismatch.
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-31T12:06:38.183Z",
3
+ "generated_at": "2026-05-31T14:21:47.744Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "c8a66a1cb3f02eab2341d93af265eac38d70a047a0f372150b239fba6a86295b",
7
+ "manifest.json": "d3e1f43bcde4f5c7489550e6bc4917c4dbbe9d5301320978ccb42b28b884b21a",
8
8
  "data/atlas-ttps.json": "878b4a08bb73c8d20396d85cf433a88f2bc5e7a8cbf7f6ab773ce7ede0a11251",
9
9
  "data/attack-techniques.json": "318bf8e9c5aee1d0a4a1dc37c4b211f2fbc937bf332a401a22483cc7d0547252",
10
10
  "data/cve-catalog.json": "1aac7e75eae24ece2ef09d1c63977bdd7a1f81a9f11609ebb966109be316426c",
@@ -41,6 +41,17 @@ const SOURCE_EXTS = new Set([
41
41
  ".m", ".mm",
42
42
  ]);
43
43
 
44
+ // The exact marker set the crypto-codebase playbook's `repo-has-source-tree`
45
+ // gate evaluates (data/playbooks/crypto-codebase.json: exists_any([...])).
46
+ // The collector attests the gate by mirroring this predicate against the
47
+ // scanned cwd — NOT by counting SOURCE_EXTS files — so a valid package repo
48
+ // whose only marker is a manifest or an empty src/ dir (no extension-matched
49
+ // source yet) still attests true, matching what the gate would compute.
50
+ const SOURCE_TREE_MARKERS = [
51
+ "package.json", "pyproject.toml", "go.mod", "Cargo.toml",
52
+ "pom.xml", "build.gradle", "src", "lib", "crates",
53
+ ];
54
+
44
55
  const TEST_PATH_SEGMENTS = [
45
56
  "/test/", "/tests/", "/spec/", "/specs/", "/__tests__/",
46
57
  "/fixtures/", "/fixture/", "/examples/", "/example/",
@@ -471,14 +482,23 @@ function collect({ cwd = process.cwd(), env = process.env, args = {} } = {}) {
471
482
 
472
483
  return {
473
484
  precondition_checks: {
474
- "repo-context": sourceFiles.length > 0,
485
+ // Auto-attest the crypto-codebase playbook's own `repo-has-source-tree`
486
+ // gate by mirroring the gate's own exists_any(SOURCE_TREE_MARKERS)
487
+ // predicate against the scanned cwd. The runner's autoDetectPreconditions
488
+ // probes the run process's cwd (not the collected --cwd) and has no
489
+ // exists_any() branch, so a repo with a recognizable source tree would
490
+ // otherwise surface a spurious precondition_unverified warning. Keying to
491
+ // the gate's exact id + predicate mirrors the sbom / library-author
492
+ // collectors; `repo-context` is not a precondition this playbook
493
+ // references.
494
+ "repo-has-source-tree": SOURCE_TREE_MARKERS.some((m) => fs.existsSync(path.join(cwd, m))),
475
495
  },
476
496
  artifacts,
477
497
  signal_overrides,
478
498
  ...(Object.keys(evidence_locations).length ? { evidence_locations } : {}),
479
499
  collector_meta: {
480
500
  collector_id: COLLECTOR_ID,
481
- collector_version: "2026-05-20",
501
+ collector_version: "2026-05-31",
482
502
  platform: process.platform,
483
503
  captured_at: new Date().toISOString(),
484
504
  cwd: root,
@@ -289,7 +289,7 @@ function preflight(playbook, runOpts = {}) {
289
289
  // Explicit-false halts carry a specific remediation so the renderer
290
290
  // prefers it over the generic platform-gate hint — an intent/ownership
291
291
  // gate (e.g. operator-owns-ci-fleet) is not a platform mismatch.
292
- remediation: `Precondition ${pc.id} was submitted as false: ${pc.description} Satisfy it (the playbook that owns it documents how e.g. cicd-pipeline-compromise requires --attest-ownership) and re-run.`,
292
+ remediation: `Precondition ${pc.id} was submitted as false: ${pc.description} Attest it as true and re-run — submit precondition_checks {"${pc.id}": true} in your evidence JSON, or pass the owning collector's attestation flag at collect time (for example: collect cicd-pipeline-compromise --attest-ownership).`,
293
293
  issues
294
294
  };
295
295
  }
@@ -2962,6 +2962,31 @@ function buildEvidenceBundle(format, playbook, analyze, validate, agentSignals,
2962
2962
  return { format: 'markdown', body: lines.join('\n') };
2963
2963
  }
2964
2964
 
2965
+ // Native structured-JSON bundle — a superset of `summary` carrying the full
2966
+ // finding record. This is the declared bundle_format for the secrets /
2967
+ // cred-stores / runtime / citation-hygiene playbooks; without an explicit
2968
+ // branch their default bundle fell through to the Unknown-format placeholder
2969
+ // below. Reuses the pinned `now` so multi-format builds stay
2970
+ // timestamp-consistent, and exposes the same finding fields the supported
2971
+ // csaf / markdown branches already surface — `json` is an intentional,
2972
+ // operator-selectable format, not the fallback leak path.
2973
+ if (format === 'json') {
2974
+ return {
2975
+ format: 'json',
2976
+ playbook: playbook._meta.id,
2977
+ playbook_version: playbook._meta.version,
2978
+ session_id: sessionId,
2979
+ generated: now,
2980
+ verdict: analyze.compliance_theater_check?.verdict || 'pending',
2981
+ matched_cves: analyze.matched_cves,
2982
+ rwep_adjusted: analyze.rwep?.adjusted || 0,
2983
+ rwep_threshold_escalate: analyze.rwep?.threshold?.escalate || null,
2984
+ blast_radius_score: analyze.blast_radius_score || 0,
2985
+ selected_remediation: validate.selected_remediation || null,
2986
+ residual_risk_statement: validate.residual_risk_statement || null,
2987
+ };
2988
+ }
2989
+
2965
2990
  // The fallback must NOT leak raw analyze + validate internals (matched
2966
2991
  // CVEs, framework gaps, residual-risk statements) under an arbitrary
2967
2992
  // "format" name — operators piping output to logging or third-party
@@ -2970,7 +2995,7 @@ function buildEvidenceBundle(format, playbook, analyze, validate, agentSignals,
2970
2995
  return {
2971
2996
  format,
2972
2997
  note: 'Unknown format',
2973
- supported_formats: ['csaf-2.0', 'sarif', 'sarif-2.1.0', 'openvex', 'openvex-0.2.0', 'summary', 'markdown'],
2998
+ supported_formats: ['csaf-2.0', 'sarif', 'sarif-2.1.0', 'openvex', 'openvex-0.2.0', 'summary', 'markdown', 'json'],
2974
2999
  };
2975
3000
  }
2976
3001
 
@@ -3448,17 +3473,28 @@ function run(playbookId, directiveId, agentSubmission = {}, runOpts = {}) {
3448
3473
  const verdict = (phases.detect && phases.detect.classification) || 'inconclusive';
3449
3474
  const rwepScore = phases.analyze && phases.analyze.rwep && typeof phases.analyze.rwep.adjusted === 'number'
3450
3475
  ? phases.analyze.rwep.adjusted : null;
3451
- // Top finding = first matched CVE-id when present; otherwise the
3452
- // dominant indicator classification. The full set lives in phases.
3476
+ // Top finding = first matched CVE-id when present; otherwise the dominant
3477
+ // FIRED indicator's id (the signal that actually drove the verdict), not
3478
+ // the verdict string itself. Echoing the classification made top_finding
3479
+ // carry no information beyond `verdict` and duplicated it in summary_line
3480
+ // (e.g. "detected (rwep=10, detected, ...)"). The full set lives in phases.
3453
3481
  let topFinding = null;
3454
3482
  if (phases.analyze && Array.isArray(phases.analyze.matched_cves) && phases.analyze.matched_cves.length) {
3455
3483
  topFinding = phases.analyze.matched_cves[0].cve_id;
3456
- } else if (phases.detect && phases.detect.classification
3484
+ } else if (phases.detect && Array.isArray(phases.detect.indicators)
3485
+ && phases.detect.classification
3457
3486
  && phases.detect.classification !== 'not-detected'
3458
3487
  && phases.detect.classification !== 'not_detected'
3459
3488
  && phases.detect.classification !== 'inconclusive'
3460
3489
  && phases.detect.classification !== 'pending') {
3461
- topFinding = phases.detect.classification;
3490
+ // Only on a real detection verdict: surface the dominant FIRED
3491
+ // indicator's id (the signal that drove the verdict). Gating on the
3492
+ // verdict keeps a stray hit on an inconclusive/not-detected run from
3493
+ // advertising a finding. Prefer a deterministic or high-confidence hit;
3494
+ // fall back to the first hit.
3495
+ const hits = phases.detect.indicators.filter((i) => i.verdict === 'hit');
3496
+ const dominant = hits.find((i) => i.deterministic === true || i.confidence === 'high') || hits[0];
3497
+ if (dominant && dominant.id) topFinding = dominant.id;
3462
3498
  }
3463
3499
  // Evidence completeness: indicators-evaluated vs indicators-known
3464
3500
  // distinguishes "ran fully and found nothing" from "couldn't
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.16.1",
3
+ "version": "0.16.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",
@@ -53,7 +53,7 @@
53
53
  ],
54
54
  "last_threat_review": "2026-05-15",
55
55
  "signature": "0H+JfyUVmo/pVFEi5rLENATHjlukPVUqnOWmNPEH77wm8svKGK0aNJ46k6QU5GdHb8c9X9pVJKiuhON6AxDjDw==",
56
- "signed_at": "2026-05-31T11:53:48.520Z",
56
+ "signed_at": "2026-05-31T14:20:32.868Z",
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": "PHwHEsoy7ctBYOtlAfAdCDVfsq2Bpk9+qESSF+5dVkDcez2zp2v9Ihsv2vqMEs3QxMndyQ+t7NVezyt5VamSCg==",
126
- "signed_at": "2026-05-31T11:53:48.522Z",
126
+ "signed_at": "2026-05-31T14:20:32.869Z",
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": "dD4p7lcRtMyfITOncqLkpOeMy6x6gM0V7UlWHgLEdcxqODb1s75ar1cBtTqDWPbMv6ZAzVo2HJLDK1hVjjU2AQ==",
199
- "signed_at": "2026-05-31T11:53:48.522Z",
199
+ "signed_at": "2026-05-31T14:20:32.870Z",
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": "wsw8Mlr/gyw6S7Iaao9BVHdU5LFPWl8WVymW17Lkq9J1Mui0+fCrTg6UbrsaeE3s7EW3TVgzBuK+8EFd1+H5AA==",
251
- "signed_at": "2026-05-31T11:53:48.523Z"
251
+ "signed_at": "2026-05-31T14:20:32.870Z"
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": "uVTc1QRKOKcIVDajBz+q2egjiEAyOQaDNsvVI2ghj5FD0VvquoUBBE5Naca2FkaZa790EHWCsVZ4hhdaSQs2DQ==",
282
- "signed_at": "2026-05-31T11:53:48.524Z"
282
+ "signed_at": "2026-05-31T14:20:32.871Z"
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": "QuNpwnZ6HkCEAXTPC/jLbXSmMIc1JnBczqZAAIZmZj8OcEMVnw9mJYAnU3CxaEI7rvbcMkN2uS5E8yUCm/NiAg==",
311
- "signed_at": "2026-05-31T11:53:48.524Z"
311
+ "signed_at": "2026-05-31T14:20:32.871Z"
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": "5rw2i39SxY2WphBbDLEP28wufnbPPE9+PWt54hmaGdwHXr9RLiVt5liL/5xp14sehlVgFsfpR/bg9vy//xV0DA==",
348
- "signed_at": "2026-05-31T11:53:48.524Z",
348
+ "signed_at": "2026-05-31T14:20:32.871Z",
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": "Vqu49nzntFWjn9A/QeJzm7q/2xk/cZJ6HFQKtiNi1zgcxzXKm+MlFdkaLgYHWj5/9HJohxyIDyBJQTvcJ20eDQ==",
408
- "signed_at": "2026-05-31T11:53:48.525Z",
408
+ "signed_at": "2026-05-31T14:20:32.872Z",
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": "W87VdyVdAxAdcRI6P/8StaV+MS8ZSPKM9HOCK9n/bBO6BM3ZSE3uImVoyJVpAXQlUpUGN+A3lCJZXv64LuxwDg==",
443
- "signed_at": "2026-05-31T11:53:48.525Z",
443
+ "signed_at": "2026-05-31T14:20:32.872Z",
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": "wdVX+edeNekpaIldqkhvtraV6DquLvIsKAjuZVwPQYn3l1vS99HXuFxmNsD7UeMlO3qgC6Dysfsto9EnuH0RBg==",
477
- "signed_at": "2026-05-31T11:53:48.526Z",
477
+ "signed_at": "2026-05-31T14:20:32.872Z",
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": "b5miTiY0cnxETd2btxorfZBdJKt/fLnQx20sGYUb9zEqGqtm0LMLpghkW68j4/9k48KNyuGMtNWiKTSnodUGBw==",
516
- "signed_at": "2026-05-31T11:53:48.526Z"
516
+ "signed_at": "2026-05-31T14:20:32.873Z"
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": "xbkip0AQtWQKAu+O6r/gYECNjezS6O9k9xkkJsYbMlr+j8CdqH3p5/0l+GZmDidImRC/DL07GCnKrk9HRR/yDQ==",
543
- "signed_at": "2026-05-31T11:53:48.526Z",
543
+ "signed_at": "2026-05-31T14:20:32.873Z",
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": "li2NnC1oeVIr22ComP5QbcQoh5xpWITuaKpza1s2SsUkH6kGnnt4wFfFAzaC1ORmH9x2cr8hN8kaNANG/eIMBQ==",
607
- "signed_at": "2026-05-31T11:53:48.527Z",
607
+ "signed_at": "2026-05-31T14:20:32.873Z",
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": "sZHlJ7ueHPdtzVbR+yXQ5+wKgNyjWsa1LKVg9aWTmg/Onl71DvEILMyJiLpPQjseT56Mnr1DMYJE8xOGlffBAw==",
655
- "signed_at": "2026-05-31T11:53:48.527Z"
655
+ "signed_at": "2026-05-31T14:20:32.874Z"
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": "3AwFnEJu6DukPPNep/3SnuPWEuV060fJEQIwThFm7ujmdbFk0/Ii0XwGv1dkvbbK7ymMdOQpp35l4aLONAucDA==",
692
- "signed_at": "2026-05-31T11:53:48.527Z",
692
+ "signed_at": "2026-05-31T14:20:32.874Z",
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": "iJWevUBurLvt2v8X+Ch2eHmZkPWpKeAtIpxTIP4MwbUHyco3igDeBywJCyaR2vURYRx8LkzzIMM8DxQM4LAXBQ==",
727
- "signed_at": "2026-05-31T11:53:48.528Z"
727
+ "signed_at": "2026-05-31T14:20:32.874Z"
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": "DDMzI+4En4aIkwBUCGW6nj1eEkCyLqHGn2LJ2rnwWfYatjPI1U5HrTZNAN/n9JqWtAzk8F3rmsKehaaz5iNWDA==",
799
- "signed_at": "2026-05-31T11:53:48.528Z"
799
+ "signed_at": "2026-05-31T14:20:32.875Z"
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": "dJB0iAstIUbyny+udl3OIkaLScEmqS97LNP73yQ8mxt+0bcqxZjpfXaWLzLuIQblGYvUvz75/H6rO2EJuGd4AQ==",
859
- "signed_at": "2026-05-31T11:53:48.528Z"
859
+ "signed_at": "2026-05-31T14:20:32.875Z"
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": "KEAoMji3VcPX/ZXXqVe6OStxSkTssfY9fIRPyPcDYqh50GzOFQ6koNOTBVAiWOvjDjQ38g12xun5srbqgmvRAw==",
934
- "signed_at": "2026-05-31T11:53:48.529Z"
934
+ "signed_at": "2026-05-31T14:20:32.875Z"
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": "zuW8T0EMbVV83GsUP/W20Use2gBTicBW021T0sY7qsRY/U5qsPWkXYIWp3SdiKLTIKqTEd/0T7LQebjIs2QKCA==",
1013
- "signed_at": "2026-05-31T11:53:48.529Z"
1013
+ "signed_at": "2026-05-31T14:20:32.876Z"
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": "Qe0Hg9BrX3Zm5pj0n2z/oiHbAXWdA2Dq461zc4izkkUjEX2CZ02rODjCI2ELbrVOU3GC7edxqAxA+5U/ObnHDQ==",
1070
- "signed_at": "2026-05-31T11:53:48.530Z"
1070
+ "signed_at": "2026-05-31T14:20:32.876Z"
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": "UV3458QXSkEpenzrOmdlTTfPHUD4hNyKMDHoeZDq/kiFb4mAG0ghQGTTgI9Ru8cJbSmYM1++m9N5TFIJ6JJPBg==",
1137
- "signed_at": "2026-05-31T11:53:48.530Z"
1137
+ "signed_at": "2026-05-31T14:20:32.876Z"
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": "kIVzsPsJ72PzzWQwTuvjoHHoVEDCday5I52M9ohjB3/Ak+zlA8oyWLO/BKb/XuYY4fOApjfxTErSWv5uHQ2zDw==",
1193
- "signed_at": "2026-05-31T11:53:48.530Z"
1193
+ "signed_at": "2026-05-31T14:20:32.877Z"
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": "bWr27Q1uN9xCe1ib4QulszBa7YIDNkGqo72k5nm2cK98LyPblicD+sO9MnGckAyB22BTN/cIB+FwFMcI5IxvBw==",
1245
- "signed_at": "2026-05-31T11:53:48.531Z"
1245
+ "signed_at": "2026-05-31T14:20:32.877Z"
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": "Q854yzLqXdOazc6EyQbZzgAlivuq2vGFDVUCrxSldSvx/HX/ZM/uzmJyP7aBG7ZsMHxj6Lmj/H82YQoo1e+NCQ==",
1295
- "signed_at": "2026-05-31T11:53:48.531Z"
1295
+ "signed_at": "2026-05-31T14:20:32.877Z"
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": "4ccahkJpGJZtwD7EBpnGcN0sEGPMEw8eqV+tvePVS04YAkLgYVWtlkasI/8n0be9xB+77x+Sjj3kIi2j2Lf9CA==",
1369
- "signed_at": "2026-05-31T11:53:48.531Z",
1369
+ "signed_at": "2026-05-31T14:20:32.878Z",
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": "SBB7c3wNYfIdkyOp4g4nW0WP7xS+YokMzg32aaeJdbf14LTGQRzQUvSqb2TCj2HFUSHESOyKT1JpkAfyHLSQBQ==",
1422
- "signed_at": "2026-05-31T11:53:48.532Z"
1422
+ "signed_at": "2026-05-31T14:20:32.878Z"
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": "U04GNLyRas1VmfEsB8khH4iqFZPwx96sPY0Kw9iVsSPU+KTeEFqwgtWK1X1pzgb+T16Pc7HSrCaXDOpTFvQEDw==",
1482
- "signed_at": "2026-05-31T11:53:48.532Z"
1482
+ "signed_at": "2026-05-31T14:20:32.879Z"
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": "xbylLqNPBuEsFE/MNVeGy/01K6yiJXMxQbzC1F4RWU5aseDGbNy5HrAv2JWI2+Aft05ozreNPjccvu66yJ5EBw==",
1563
- "signed_at": "2026-05-31T11:53:48.532Z"
1563
+ "signed_at": "2026-05-31T14:20:32.879Z"
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": "C9c3JuBhUbwcb7uZpDdy+PNT8sYmYIxzD4uRHu421ePW1aSFJ8fkMvuTzSO8vD/F/jOOg5opM4kov/xSAn+qCg==",
1632
- "signed_at": "2026-05-31T11:53:48.533Z"
1632
+ "signed_at": "2026-05-31T14:20:32.879Z"
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": "oz8Q5WVaY8au4IjbaZahx/DSaC00Q44ylSL3mDkTerCEpW/EyPUeiLeGxSrWxBCwVFEKSSJvnhJjhvX5lDPcCg==",
1697
- "signed_at": "2026-05-31T11:53:48.533Z"
1697
+ "signed_at": "2026-05-31T14:20:32.880Z"
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": "NAtyzfLPXlUuB78Snb9nWmbZalC1CNlIYN9rYhdEmtB/xQGC6vVnThgrEAHlm7v/jMCFuknvEpUHKdscUnUADw==",
1783
- "signed_at": "2026-05-31T11:53:48.534Z"
1783
+ "signed_at": "2026-05-31T14:20:32.880Z"
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": "1UTjZNC5Lyrgw93LAizdXVeSmv3jS8YQNT1db5OKsldub50+o1FXmAH4+3MxZozaOGDCX3yXbdDJSJaaSmfuAA==",
1852
- "signed_at": "2026-05-31T11:53:48.534Z",
1852
+ "signed_at": "2026-05-31T14:20:32.880Z",
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": "EdsY4xe7YA8X8m+KZUbq49JwoCXgRKEz2eg3m86O37rvBmpm8ppvl9hrsekygvpBh2VmCHL2dEYiOD8OM2n7CA==",
1938
- "signed_at": "2026-05-31T11:53:48.534Z"
1938
+ "signed_at": "2026-05-31T14:20:32.881Z"
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": "fnLKPLkjjRCJ/F9wdmZ1w1lXmqEJvTYkv6Uu+9OTd5vZTWKz3QMuxKOsas+ctCdOvTaeloqPUUprXx+ZZdDpCg==",
2000
- "signed_at": "2026-05-31T11:53:48.535Z",
2000
+ "signed_at": "2026-05-31T14:20:32.881Z",
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": "t3dkdpTX04zvjitEeOJThpgjurLd1UO9GOut4LXSZgY3ULhfknI4zT7G5+m2RSZZTo7yyeZrwpg+7vEg9K6mAw==",
2074
- "signed_at": "2026-05-31T11:53:48.535Z"
2074
+ "signed_at": "2026-05-31T14:20:32.881Z"
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": "+1kmtA6rAvIyDjjy+cJHK6BcfylyVsa5cUjRFijlFR9GsQfB93JnmkEJOqML50pdlcxtJI3yUodHpL3/YJGtCA==",
2136
- "signed_at": "2026-05-31T11:53:48.535Z"
2136
+ "signed_at": "2026-05-31T14:20:32.882Z"
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": "h48ASCz63aBfHzLKxMVDADMuT4atriK0iE6bJeVzZTsx/e8+hyv4fLP7+zYxT9Oe0Gss3v/Xy+t+Wd9uwzV+Aw==",
2216
- "signed_at": "2026-05-31T11:53:48.536Z"
2216
+ "signed_at": "2026-05-31T14:20:32.882Z"
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": "FVBn4ex2qPIo9SHMVJ6tntoz4tVwjbIq3m6wDjjZyv2JODlS+90GBYCOkNamxxkmw/6de6SMs0YHQiF/xjo/DQ==",
2269
- "signed_at": "2026-05-31T11:53:48.536Z"
2269
+ "signed_at": "2026-05-31T14:20:32.883Z"
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": "ZHVdGWCcfG98tSVB0b9mwrsYwv71V3uUEl+6ss7omSQhmNvqV5s6MAZM5YladBt9MK/8T/zBrTYN4gAonOP+BQ==",
2337
- "signed_at": "2026-05-31T11:53:48.536Z"
2337
+ "signed_at": "2026-05-31T14:20:32.883Z"
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": "r9ii4nb3HJELdtKCGF5qy9PHOiot3GC24yfxfGAKlLENHkdRvRkvvL99eV/6RXyfUaMyrnc2Te8tPQcNu5bsDg==",
2417
- "signed_at": "2026-05-31T11:53:48.537Z",
2417
+ "signed_at": "2026-05-31T14:20:32.883Z",
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": "9mfDtMApMAg9V/lmwpniNxo/6gNZoOEoYDfyFvyWvKrPMtc7H9F8uz06FVoARe/J49saAKTVXOurNE1D/KtpCQ==",
2511
- "signed_at": "2026-05-31T11:53:48.537Z",
2511
+ "signed_at": "2026-05-31T14:20:32.884Z",
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": "d6+Jo3KeadQi7NEIEHNTcOMxJ+bpxqT3HU/oFUaKxa0cLKrgN0SHgpf+/2xuQxjzPEMVX2fO7HswlmrHM/glBA=="
2529
+ "signature_base64": "pZ8vQGRvKFvDzRGFB6AaKZvyXR7royMwg87MhH7rnWcjGLJu2tlAnOozZJr9B66FDeSOiZ/vBU0KWZIUxousBA=="
2530
2530
  }
2531
2531
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.16.1",
3
+ "version": "0.16.3",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (427 CVEs / 173 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:28814f67-a0c6-4083-8e52-0d78c0baa5cf",
4
+ "serialNumber": "urn:uuid:2f4889b9-9f34-4b29-aa9f-3e51dbcdf7d2",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2047-07-15T07:31:51.000Z",
7
+ "timestamp": "2051-02-20T12:23:21.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.16.1"
12
+ "version": "0.16.3"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.16.1",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.16.3",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.16.1",
19
+ "version": "0.16.3",
20
20
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (427 CVEs / 173 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.16.1",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.16.3",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "d8557031801d0db7ea455c63aac0fb0d5f82cadf163dce721b19424c93c3f25f"
32
+ "content": "4d8a1b84aa9255178b7bff1427b65a106d48470594b0710d0db92464c801687f"
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.16.1"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.16.3"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "1c91e54d791f67d1799c5d6e57dd2056c89b6bea665eb48e596b3527c17268d8"
119
+ "content": "3b3e0a3647099c0f47b110ba52a5f7948d1f6e753ad46f8182028bdb13ea648a"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "f8b18102afde0f2194250fa0fa6737d32760c6d3c5ca3f8e37211ba97b3a549d164768867edea8c30ae2fa726db363ab5a92c1978579b6cfff9c5b21774df0bf"
123
+ "content": "bc0f8708b54ca2744d47366c0e394db2ea2df5961fe83759d64b91a6e1be0dce4957e3f2a372234da21f587ffa8e2fc0a8d4d00d193bc79a845dfc53ba0372cd"
124
124
  }
125
125
  ]
126
126
  },
@@ -986,11 +986,11 @@
986
986
  "hashes": [
987
987
  {
988
988
  "alg": "SHA-256",
989
- "content": "fab85a30545da2a8c11f0f0c237d5542a5a69ed51e8247838d62194a8744be45"
989
+ "content": "89e1af2e38e973b4bcfbb243cb1a7d4e516b70a7532bc424ba8478b4bcefd38f"
990
990
  },
991
991
  {
992
992
  "alg": "SHA3-512",
993
- "content": "d089026d4d16a36dcd20dd912ac2907d83df4ca3be31ac3d68c27a9e98de4460adb90640e4cc5ce082384fb9933f0d2b3c43b247c8247f6614086e24a6deab1c"
993
+ "content": "62d28a0a92cd9d9ab406f8da199da9bffecdb658e2ed3e783eab65f6451d366a5efad08f457795013b6794e404d3e0769eef24b230693a6b253baf0695138d16"
994
994
  }
995
995
  ]
996
996
  },
@@ -1316,11 +1316,11 @@
1316
1316
  "hashes": [
1317
1317
  {
1318
1318
  "alg": "SHA-256",
1319
- "content": "f23a1dcfe3b7d18e96d95ae3ea298f73ffd951f201dca4c7885ac9bcd1179aab"
1319
+ "content": "b07532a8d26a2d94402cfd68d96ad154a098cade1f4245d264eb003a4e4d5920"
1320
1320
  },
1321
1321
  {
1322
1322
  "alg": "SHA3-512",
1323
- "content": "522d5333827450723a525552afebb76f267567f808f74d39db8954f9e1776a6f292cd979b7043ed89edb916b3e3556815b484d53935c0dd3bb720d11a4081efb"
1323
+ "content": "01c6d1dd1023cca9a54a424f39986ddbbb5c92469964a9a7225ec3d60d3420163c5735d8762b30570045c72a008738448a9f7a9194e3c9d2bd4c335a7d368bb0"
1324
1324
  }
1325
1325
  ]
1326
1326
  },
@@ -1751,11 +1751,11 @@
1751
1751
  "hashes": [
1752
1752
  {
1753
1753
  "alg": "SHA-256",
1754
- "content": "c8a66a1cb3f02eab2341d93af265eac38d70a047a0f372150b239fba6a86295b"
1754
+ "content": "d3e1f43bcde4f5c7489550e6bc4917c4dbbe9d5301320978ccb42b28b884b21a"
1755
1755
  },
1756
1756
  {
1757
1757
  "alg": "SHA3-512",
1758
- "content": "65ef9ebe06a9fe42aa72e8db08678e68471d0c21b857ce1d5863c60dbe71423790be090d7f65c601e2250afbfca430c4d0fb601e0d906622133d4b3a870410ce"
1758
+ "content": "0c1ee1d0ec9ebb17648980a5590333eaca943a7d9ac288ad1dea5f5cd476d5e204171d331aa4b5dcc8aa1528abed8f6217d730b66d337c73a135868c3ce913c7"
1759
1759
  }
1760
1760
  ]
1761
1761
  },