@blamejs/exceptd-skills 0.11.15 → 0.12.0

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.
@@ -0,0 +1,259 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * lib/source-ghsa.js
5
+ *
6
+ * GitHub Advisory Database fetcher. The GHSA covers npm, PyPI, RubyGems,
7
+ * Maven, NuGet, Go, Composer, Swift, Erlang, Pub, and Rust ecosystems in
8
+ * one feed and is updated within hours of disclosure — much faster than
9
+ * NVD (~10 days) or KEV (variable, often days).
10
+ *
11
+ * Endpoint: GET https://api.github.com/advisories
12
+ * - Unauthenticated: 60 req/hr (sufficient for nightly refresh)
13
+ * - Authenticated: 5000 req/hr (set GITHUB_TOKEN env var)
14
+ *
15
+ * Returns drafts — every imported entry carries `_auto_imported: true`
16
+ * + `_draft: true` so the strict catalog validator treats them as
17
+ * warnings, not errors. Editorial fields (framework_control_gaps,
18
+ * iocs, atlas_refs) are left null until a human or AI assistant
19
+ * fills them in via the seven-phase playbook flow.
20
+ *
21
+ * Honors EXCEPTD_GHSA_FIXTURE env var for offline testing — value is a
22
+ * path to a JSON array matching the api.github.com/advisories shape.
23
+ *
24
+ * Zero npm deps. Node 24 stdlib only.
25
+ */
26
+
27
+ const https = require("https");
28
+ const fs = require("fs");
29
+
30
+ const GHSA_HOST = "api.github.com";
31
+ const GHSA_PATH = "/advisories?per_page=50&type=reviewed&sort=published&direction=desc";
32
+ const REQUEST_TIMEOUT_MS = 10000;
33
+ const USER_AGENT = "exceptd-security/source-ghsa (+https://exceptd.com)";
34
+
35
+ /**
36
+ * Fetch a page of advisories (default: latest 50).
37
+ *
38
+ * Returns:
39
+ * { ok: true, advisories: [...], source: "github-api" | "fixture", rate_limit?: { remaining, reset } }
40
+ * { ok: false, error, source: "offline" }
41
+ */
42
+ async function fetchAdvisories({ timeoutMs = REQUEST_TIMEOUT_MS, path = GHSA_PATH, token = null } = {}) {
43
+ if (process.env.EXCEPTD_GHSA_FIXTURE) {
44
+ try {
45
+ const arr = JSON.parse(fs.readFileSync(process.env.EXCEPTD_GHSA_FIXTURE, "utf8"));
46
+ return { ok: true, advisories: Array.isArray(arr) ? arr : [arr], source: "fixture" };
47
+ } catch (e) {
48
+ return { ok: false, error: `fixture: ${e.message}`, source: "offline" };
49
+ }
50
+ }
51
+
52
+ return new Promise((resolve) => {
53
+ const headers = {
54
+ "Accept": "application/vnd.github+json",
55
+ "User-Agent": USER_AGENT,
56
+ "X-GitHub-Api-Version": "2022-11-28",
57
+ };
58
+ if (token || process.env.GITHUB_TOKEN) {
59
+ headers.Authorization = `Bearer ${token || process.env.GITHUB_TOKEN}`;
60
+ }
61
+ const req = https.get({
62
+ host: GHSA_HOST,
63
+ path,
64
+ headers,
65
+ timeout: timeoutMs,
66
+ }, (res) => {
67
+ if (res.statusCode !== 200) {
68
+ res.resume();
69
+ return resolve({ ok: false, error: `GHSA returned HTTP ${res.statusCode}`, source: "offline" });
70
+ }
71
+ const chunks = [];
72
+ res.on("data", (c) => chunks.push(c));
73
+ res.on("end", () => {
74
+ try {
75
+ const body = JSON.parse(Buffer.concat(chunks).toString("utf8"));
76
+ const advisories = Array.isArray(body) ? body : (body ? [body] : []);
77
+ resolve({
78
+ ok: true,
79
+ advisories,
80
+ source: "github-api",
81
+ rate_limit: {
82
+ remaining: parseInt(res.headers["x-ratelimit-remaining"], 10) || null,
83
+ reset: parseInt(res.headers["x-ratelimit-reset"], 10) || null,
84
+ },
85
+ });
86
+ } catch (e) {
87
+ resolve({ ok: false, error: `parse: ${e.message}`, source: "offline" });
88
+ }
89
+ });
90
+ });
91
+ req.on("timeout", () => req.destroy(new Error("timeout")));
92
+ req.on("error", (e) => resolve({ ok: false, error: e.message, source: "offline" }));
93
+ });
94
+ }
95
+
96
+ /**
97
+ * Fetch a single advisory by ID — accepts CVE-* or GHSA-* identifiers.
98
+ *
99
+ * GHSA-IDs hit /advisories/<ghsa-id> directly. CVE-IDs require a search
100
+ * since the API is keyed by GHSA. We fall back to a query-string search.
101
+ */
102
+ async function fetchAdvisoryById(id, opts = {}) {
103
+ if (!id || typeof id !== "string") {
104
+ return { ok: false, error: "id is required (CVE-* or GHSA-*)", source: "offline" };
105
+ }
106
+ if (process.env.EXCEPTD_GHSA_FIXTURE) {
107
+ const r = await fetchAdvisories(opts);
108
+ if (!r.ok) return r;
109
+ const match = r.advisories.find(a =>
110
+ (a.ghsa_id && a.ghsa_id.toUpperCase() === id.toUpperCase()) ||
111
+ (a.cve_id && a.cve_id.toUpperCase() === id.toUpperCase())
112
+ );
113
+ if (!match) return { ok: false, error: `${id} not in fixture`, source: "fixture" };
114
+ return { ok: true, advisories: [match], source: "fixture" };
115
+ }
116
+ if (/^GHSA-/i.test(id)) {
117
+ return fetchAdvisories({ ...opts, path: `/advisories/${id.toLowerCase()}` });
118
+ }
119
+ if (/^CVE-\d{4}-\d+$/i.test(id)) {
120
+ return fetchAdvisories({ ...opts, path: `/advisories?cve_id=${encodeURIComponent(id.toUpperCase())}` });
121
+ }
122
+ return { ok: false, error: `unrecognized id format (expected CVE-YYYY-NNNN or GHSA-*): ${id}`, source: "offline" };
123
+ }
124
+
125
+ /**
126
+ * Normalize a GHSA advisory object to the exceptd catalog draft shape.
127
+ * Fields the GHSA carries authoritatively: cve_id, ghsa_id, summary,
128
+ * severity, cvss, vulnerabilities (package + version range), published_at,
129
+ * references. Editorial fields (framework_control_gaps, iocs, atlas_refs,
130
+ * attack_refs, rwep_factors) are LEFT NULL — drafts. The seven-phase
131
+ * playbook flow OR a human reviewer fills these in.
132
+ *
133
+ * Returns null if the advisory lacks a CVE ID (we don't import GHSA-only
134
+ * advisories into the CVE catalog — they belong in a separate GHSA index
135
+ * which is a v0.13 design).
136
+ */
137
+ function normalizeAdvisory(adv) {
138
+ if (!adv || !adv.cve_id) return null;
139
+
140
+ const ecosystems = new Set();
141
+ const affected = [];
142
+ const ecosystemPackages = [];
143
+ for (const v of (adv.vulnerabilities || [])) {
144
+ if (v?.package?.ecosystem) ecosystems.add(v.package.ecosystem);
145
+ if (v?.package?.name) {
146
+ ecosystemPackages.push(`${v.package.ecosystem || "?"}:${v.package.name}`);
147
+ if (v.vulnerable_version_range) {
148
+ affected.push(`${v.package.name} ${v.vulnerable_version_range}`);
149
+ }
150
+ }
151
+ }
152
+
153
+ const cvssScore = adv.cvss?.score ?? null;
154
+ const cvssVector = adv.cvss?.vector_string || null;
155
+ const severity = (adv.severity || "").toLowerCase();
156
+ // Derive a coarse type from package ecosystem when nothing better available.
157
+ const inferredType = ecosystems.has("npm") ? "supply-chain-npm"
158
+ : ecosystems.has("pip") ? "supply-chain-pypi"
159
+ : ecosystems.has("maven") ? "supply-chain-maven"
160
+ : ecosystems.has("rubygems") ? "supply-chain-gem"
161
+ : "supply-chain-other";
162
+
163
+ return {
164
+ [adv.cve_id]: {
165
+ name: adv.summary || adv.cve_id,
166
+ type: inferredType,
167
+ cvss_score: cvssScore,
168
+ cvss_vector: cvssVector,
169
+ cisa_kev: false,
170
+ cisa_kev_date: null,
171
+ cisa_kev_pending: severity === "critical",
172
+ cisa_kev_pending_reason: severity === "critical"
173
+ ? `GHSA severity critical (CVSS ${cvssScore}). KEV listing typically follows for critical advisories with confirmed exploitation; verify before publish.`
174
+ : null,
175
+ poc_available: null,
176
+ poc_description: null,
177
+ ai_discovered: null,
178
+ ai_assisted_weaponization: null,
179
+ active_exploitation: severity === "critical" ? "suspected" : "unknown",
180
+ affected: ecosystemPackages.join(", ") || null,
181
+ affected_versions: affected,
182
+ vector: null,
183
+ complexity: null,
184
+ patch_available: null,
185
+ patch_required_reboot: false,
186
+ live_patch_available: null,
187
+ live_patch_tools: [],
188
+ framework_control_gaps: null,
189
+ atlas_refs: [],
190
+ attack_refs: [],
191
+ rwep_score: null,
192
+ rwep_factors: null,
193
+ rwep_notes: "Auto-imported from GHSA. RWEP factors require editorial review before this entry passes the strict catalog gate.",
194
+ epss_score: null,
195
+ epss_percentile: null,
196
+ epss_date: null,
197
+ epss_source: adv.cve_id ? `https://api.first.org/data/v1/epss?cve=${adv.cve_id}` : null,
198
+ source_verified: new Date().toISOString().slice(0, 10),
199
+ verification_sources: [
200
+ ...(adv.html_url ? [adv.html_url] : []),
201
+ ...(adv.cve_id ? [`https://nvd.nist.gov/vuln/detail/${adv.cve_id}`] : []),
202
+ ...(adv.references || []).slice(0, 10),
203
+ ],
204
+ vendor_advisories: [
205
+ {
206
+ vendor: "GitHub Security Advisories",
207
+ advisory_id: adv.ghsa_id || null,
208
+ url: adv.html_url || `https://github.com/advisories?query=${encodeURIComponent(adv.cve_id)}`,
209
+ severity: severity || null,
210
+ published_date: (adv.published_at || "").slice(0, 10) || null,
211
+ },
212
+ ],
213
+ iocs: null,
214
+ _auto_imported: true,
215
+ _draft: true,
216
+ _draft_reason: "Imported from GHSA on " + new Date().toISOString().slice(0, 10) + ". Editorial fields (framework_control_gaps, atlas_refs, attack_refs, iocs, vector, complexity, rwep_factors) require human review. Run `exceptd run sbom --evidence -` against an affected repo to gather IoCs; consult MITRE ATLAS + ATT&CK catalogs for refs.",
217
+ _source_ghsa_id: adv.ghsa_id || null,
218
+ _source_published_at: adv.published_at || null,
219
+ last_updated: new Date().toISOString().slice(0, 10),
220
+ },
221
+ };
222
+ }
223
+
224
+ /**
225
+ * Build a refresh diff for the existing refresh-external orchestrator.
226
+ * Compares the latest 50 advisories' CVE IDs against the local catalog;
227
+ * any CVE ID not in the catalog becomes an "add" diff.
228
+ */
229
+ async function buildDiff(ctx) {
230
+ const result = await fetchAdvisories({});
231
+ if (!result.ok) {
232
+ return { status: "unreachable", diffs: [], errors: 1, summary: `GHSA fetch failed: ${result.error}` };
233
+ }
234
+ const existing = new Set(Object.keys(ctx.cveCatalog || {}).filter(k => /^CVE-/.test(k)));
235
+ const diffs = [];
236
+ for (const adv of result.advisories) {
237
+ if (!adv.cve_id) continue;
238
+ if (existing.has(adv.cve_id)) continue;
239
+ const normalized = normalizeAdvisory(adv);
240
+ if (!normalized) continue;
241
+ diffs.push({
242
+ id: adv.cve_id,
243
+ field: "_new_entry",
244
+ before: null,
245
+ after: normalized[adv.cve_id],
246
+ severity: adv.severity || null,
247
+ source: "ghsa",
248
+ });
249
+ }
250
+ return {
251
+ status: "ok",
252
+ diffs,
253
+ errors: 0,
254
+ summary: `GHSA returned ${result.advisories.length} reviewed advisories; ${diffs.length} new CVE ID(s) not yet in local catalog.`,
255
+ rate_limit: result.rate_limit || null,
256
+ };
257
+ }
258
+
259
+ module.exports = { fetchAdvisories, fetchAdvisoryById, normalizeAdvisory, buildDiff };
@@ -172,14 +172,30 @@ function main() {
172
172
  const lessonKeys = new Set(Object.keys(lessons).filter((k) => !k.startsWith('_')));
173
173
 
174
174
  let failed = 0;
175
+ let drafts = 0;
175
176
  for (const key of cveKeys) {
176
177
  const entry = catalog[key];
178
+ // v0.12.0: GHSA-imported drafts are flagged `_auto_imported: true` +
179
+ // `_draft: true`. They pass validation as WARNINGS (printed but not
180
+ // exit-failing) so the nightly auto-PR pipeline can ship them while
181
+ // editorial fields await human or AI-assisted enrichment via
182
+ // `exceptd run cve-curation --advisory <id>`.
183
+ const isDraft = entry && (entry._auto_imported === true || entry._draft === true);
177
184
  const errors = validate(entry, schema, 'cve', key);
178
- if (!lessonKeys.has(key)) {
185
+ if (!lessonKeys.has(key) && !isDraft) {
179
186
  errors.push(
180
187
  `${key}: missing matching entry in data/zeroday-lessons.json (rule #6: zero-day learning is live)`,
181
188
  );
182
189
  }
190
+ if (isDraft) {
191
+ drafts++;
192
+ if (!opts.quiet) {
193
+ console.log(`DRAFT ${key} (auto-imported — needs editorial review)`);
194
+ for (const e of errors) console.log(` - [warn] ${e}`);
195
+ }
196
+ // Drafts don't increment `failed` — they're warnings, not errors.
197
+ continue;
198
+ }
183
199
  if (errors.length === 0) {
184
200
  if (!opts.quiet) console.log(`PASS ${key}`);
185
201
  } else {
@@ -203,10 +219,11 @@ function main() {
203
219
  }
204
220
 
205
221
  const total = cveKeys.length;
206
- const passed = total - failed;
207
- console.log(
208
- `\n${passed}/${total} CVE entries validated${failed ? `, ${failed} failed` : ''}.`,
209
- );
222
+ const passed = total - failed - drafts;
223
+ const summary = `\n${passed}/${total} CVE entries validated` +
224
+ (drafts ? `, ${drafts} draft(s) (auto-imported)` : '') +
225
+ (failed ? `, ${failed} failed` : '') + '.';
226
+ console.log(summary);
210
227
  process.exit(failed === 0 ? 0 : 1);
211
228
  }
212
229
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "_comment": "Auto-generated by scripts/refresh-manifest-snapshot.js — do not hand-edit. Public skill surface used by check-manifest-snapshot.js to detect breaking removals.",
3
- "_generated_at": "2026-05-13T02:18:38.639Z",
3
+ "_generated_at": "2026-05-13T02:31:32.493Z",
4
4
  "atlas_version": "5.1.0",
5
5
  "skill_count": 38,
6
6
  "skills": [
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.11.15",
3
+ "version": "0.12.0",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation",
5
5
  "homepage": "https://exceptd.com",
6
6
  "license": "Apache-2.0",
@@ -52,7 +52,7 @@
52
52
  ],
53
53
  "last_threat_review": "2026-05-01",
54
54
  "signature": "Xk593pj7my6wPJbQBE47khpIUrPsp6N1lW7cE2T/VPPF5T+8C1yGKc9B8VphD7Q08yWFcbwF6HoWpA/+4uG9DA==",
55
- "signed_at": "2026-05-13T02:18:38.231Z",
55
+ "signed_at": "2026-05-13T02:31:32.071Z",
56
56
  "cwe_refs": [
57
57
  "CWE-125",
58
58
  "CWE-362",
@@ -116,7 +116,7 @@
116
116
  ],
117
117
  "last_threat_review": "2026-05-01",
118
118
  "signature": "nOgUu+LK9fy6ASTCoRGtx3ttgjZCl7WIkKu2wu06JEKVSpL2cKU3ex2tmVAvv11LBmpTH+b/0zvqXlzcxzHnCw==",
119
- "signed_at": "2026-05-13T02:18:38.233Z",
119
+ "signed_at": "2026-05-13T02:31:32.073Z",
120
120
  "cwe_refs": [
121
121
  "CWE-1039",
122
122
  "CWE-1426",
@@ -179,7 +179,7 @@
179
179
  ],
180
180
  "last_threat_review": "2026-05-01",
181
181
  "signature": "7FH1J9PlOyvcRCzRmggmenX9fIR0pi/veXihb3TeStcq1Rpuz1KHdOcJLqA9su4t2goYukKKCXHV6hx8hzplAA==",
182
- "signed_at": "2026-05-13T02:18:38.233Z",
182
+ "signed_at": "2026-05-13T02:31:32.073Z",
183
183
  "cwe_refs": [
184
184
  "CWE-22",
185
185
  "CWE-345",
@@ -225,7 +225,7 @@
225
225
  "framework_gaps": [],
226
226
  "last_threat_review": "2026-05-01",
227
227
  "signature": "FqTRjHfEgw56pyHnyWzNtnhzDMEePBtmuamtW/iyX+h4yqbvP4Fyr7NRjRs3EgqT4j7oHuEZhV9Jt6ZTBgN4AA==",
228
- "signed_at": "2026-05-13T02:18:38.233Z"
228
+ "signed_at": "2026-05-13T02:31:32.073Z"
229
229
  },
230
230
  {
231
231
  "name": "compliance-theater",
@@ -256,7 +256,7 @@
256
256
  ],
257
257
  "last_threat_review": "2026-05-01",
258
258
  "signature": "3fN4yotiIIq76PVTHwozCu28TzDZvWule6vX8SXUT3XXbIBSuvAO0M/euvc3pw3TdZ2UNf78dI18lOCNdJ0aAg==",
259
- "signed_at": "2026-05-13T02:18:38.234Z"
259
+ "signed_at": "2026-05-13T02:31:32.074Z"
260
260
  },
261
261
  {
262
262
  "name": "exploit-scoring",
@@ -285,7 +285,7 @@
285
285
  ],
286
286
  "last_threat_review": "2026-05-01",
287
287
  "signature": "yZfpk4lQMRXegj2ADWjMmZTchUN6Lxpv587O/0JMzbNkXQtD6FrSAQOBWjx8S7uQ/sTntxgGN7aQQDLxL9RWAA==",
288
- "signed_at": "2026-05-13T02:18:38.234Z"
288
+ "signed_at": "2026-05-13T02:31:32.074Z"
289
289
  },
290
290
  {
291
291
  "name": "rag-pipeline-security",
@@ -322,7 +322,7 @@
322
322
  ],
323
323
  "last_threat_review": "2026-05-01",
324
324
  "signature": "ABHkoqee67KdUyDZ3bvF+/DNxjGhPR/ehT6pfOnmUIMmkcQFHpZ0OUVXKiFUANaLgKLP1vg0VEmHOoxpNA3vAA==",
325
- "signed_at": "2026-05-13T02:18:38.235Z",
325
+ "signed_at": "2026-05-13T02:31:32.075Z",
326
326
  "cwe_refs": [
327
327
  "CWE-1395",
328
328
  "CWE-1426"
@@ -379,7 +379,7 @@
379
379
  ],
380
380
  "last_threat_review": "2026-05-01",
381
381
  "signature": "+Nd/2tgBnW+mEGX84QvkgR2To2J7kA+lB63BsADDKeCXeebFv6Vo9H1P4vyUkKHfe4fP0ndpy3agIZcUO/e/Dg==",
382
- "signed_at": "2026-05-13T02:18:38.235Z",
382
+ "signed_at": "2026-05-13T02:31:32.075Z",
383
383
  "d3fend_refs": [
384
384
  "D3-CA",
385
385
  "D3-CSPP",
@@ -414,7 +414,7 @@
414
414
  "framework_gaps": [],
415
415
  "last_threat_review": "2026-05-01",
416
416
  "signature": "VMNGFvowXLbBjZp5nvWloKkqyqHKhnSzbVRU3gX9quOZJHH56w2M4id+oDsXIjR0CfRRb7eXl/so0Hq4xLBuBQ==",
417
- "signed_at": "2026-05-13T02:18:38.235Z",
417
+ "signed_at": "2026-05-13T02:31:32.075Z",
418
418
  "cwe_refs": [
419
419
  "CWE-1188"
420
420
  ]
@@ -442,7 +442,7 @@
442
442
  "framework_gaps": [],
443
443
  "last_threat_review": "2026-05-01",
444
444
  "signature": "5MaJs7gPCuFlK4oAttLulAPOA1noeV+xD/UqVWaVyRedXZgebBGKjnlE2t1qmTugvxlNIfeAnBZapk+Wz3VAAg==",
445
- "signed_at": "2026-05-13T02:18:38.235Z"
445
+ "signed_at": "2026-05-13T02:31:32.075Z"
446
446
  },
447
447
  {
448
448
  "name": "global-grc",
@@ -474,7 +474,7 @@
474
474
  "framework_gaps": [],
475
475
  "last_threat_review": "2026-05-01",
476
476
  "signature": "S/YXUpI/mcG2FpdUTgMsccWBtTaR5A4Ph4QFQw31S9w9Hn/z3sOFHLkb1B5YSwlg+mMOtSIxMdet1eLGSZkTDg==",
477
- "signed_at": "2026-05-13T02:18:38.236Z"
477
+ "signed_at": "2026-05-13T02:31:32.076Z"
478
478
  },
479
479
  {
480
480
  "name": "zeroday-gap-learn",
@@ -501,7 +501,7 @@
501
501
  "framework_gaps": [],
502
502
  "last_threat_review": "2026-05-01",
503
503
  "signature": "AKS+JsmhhBtytY2eIMuydjkZOYprWCmQ+RqxyxcVG9XcEI29ZSM/JbVIINQHozFl7OPPrOu1ouiTnk7LOJ86Bg==",
504
- "signed_at": "2026-05-13T02:18:38.236Z"
504
+ "signed_at": "2026-05-13T02:31:32.076Z"
505
505
  },
506
506
  {
507
507
  "name": "pqc-first",
@@ -553,7 +553,7 @@
553
553
  ],
554
554
  "last_threat_review": "2026-05-01",
555
555
  "signature": "oEkK5bLS/G5RIHnxlNFJYdzhTJbKZnkJv+W4iS9UJ/uszZHgZGoxygELPc4kn3FowV5eE988SQYG4WKlXtNzCg==",
556
- "signed_at": "2026-05-13T02:18:38.237Z",
556
+ "signed_at": "2026-05-13T02:31:32.077Z",
557
557
  "cwe_refs": [
558
558
  "CWE-327"
559
559
  ],
@@ -600,7 +600,7 @@
600
600
  ],
601
601
  "last_threat_review": "2026-05-01",
602
602
  "signature": "nPV6YTo1rsNH49qUnZpfoNLEQZXuLNyV05QMUOgXKHYeVDjotYpWhLgyVXlRhjV/fStiA2sWQ0MOnEJ4FBIfDg==",
603
- "signed_at": "2026-05-13T02:18:38.237Z"
603
+ "signed_at": "2026-05-13T02:31:32.077Z"
604
604
  },
605
605
  {
606
606
  "name": "security-maturity-tiers",
@@ -637,7 +637,7 @@
637
637
  ],
638
638
  "last_threat_review": "2026-05-01",
639
639
  "signature": "7rirSEONz6O9Yyf46eTyuwkGizCj9FRcNHe5p7Qz6nhJoZQRW5FwW7n9opL0WlbIw8FDBYn1f22zgNUV87L5AQ==",
640
- "signed_at": "2026-05-13T02:18:38.237Z",
640
+ "signed_at": "2026-05-13T02:31:32.077Z",
641
641
  "cwe_refs": [
642
642
  "CWE-1188"
643
643
  ]
@@ -672,7 +672,7 @@
672
672
  "framework_gaps": [],
673
673
  "last_threat_review": "2026-05-11",
674
674
  "signature": "+evehnd2wSBb8uMTlTr5/aTN4bfLjsKzZJk/+OMLMOJrjCt+OuMU7EQC6xMUGeSc4cPEGajghDvq3xVaacV2Dw==",
675
- "signed_at": "2026-05-13T02:18:38.238Z"
675
+ "signed_at": "2026-05-13T02:31:32.078Z"
676
676
  },
677
677
  {
678
678
  "name": "attack-surface-pentest",
@@ -743,7 +743,7 @@
743
743
  "PTES revision incorporating AI-surface enumeration"
744
744
  ],
745
745
  "signature": "KHOXxloAYf7xqXjm2BaL3HVAZOmb7rMiMh20H/oaIkjN0WD1CnKCrRGPJn867uSFhCh/timkXolaiqD1L/h8Dg==",
746
- "signed_at": "2026-05-13T02:18:38.238Z"
746
+ "signed_at": "2026-05-13T02:31:32.078Z"
747
747
  },
748
748
  {
749
749
  "name": "fuzz-testing-strategy",
@@ -803,7 +803,7 @@
803
803
  "OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
804
804
  ],
805
805
  "signature": "+ELdD+1AY5DymBitH7wU65CS60NY1nDoLowJAFn7cE5Gr/5jy9BTkyxsm7PEXaSlXWMOkTf/HQ+uyzyxUVD/Bw==",
806
- "signed_at": "2026-05-13T02:18:38.238Z"
806
+ "signed_at": "2026-05-13T02:31:32.078Z"
807
807
  },
808
808
  {
809
809
  "name": "dlp-gap-analysis",
@@ -878,7 +878,7 @@
878
878
  "Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
879
879
  ],
880
880
  "signature": "8tFAhXAS8zZN3SUOdn+ZIu7lQ48JMOyBQ8SaObR3L/fDyFmDhufqleY2VzI3yigqlT/D4Y8FYxZHKmzXiALjDw==",
881
- "signed_at": "2026-05-13T02:18:38.238Z"
881
+ "signed_at": "2026-05-13T02:31:32.079Z"
882
882
  },
883
883
  {
884
884
  "name": "supply-chain-integrity",
@@ -955,7 +955,7 @@
955
955
  "OpenSSF model-signing — emerging Sigstore-based signing standard for ML model weights; track for production adoption"
956
956
  ],
957
957
  "signature": "YhvlD+6gdFGg7P6QtpWeb0n54/Ujlxc7I6o/bXtpkfPiy/JY4OJo5xdreb+mbytHkasmUErL5LsDtTCAVq0QAA==",
958
- "signed_at": "2026-05-13T02:18:38.239Z"
958
+ "signed_at": "2026-05-13T02:31:32.079Z"
959
959
  },
960
960
  {
961
961
  "name": "defensive-countermeasure-mapping",
@@ -1012,7 +1012,7 @@
1012
1012
  ],
1013
1013
  "last_threat_review": "2026-05-11",
1014
1014
  "signature": "AMdLkDx/e3ESI4NAnJhhcaas+Ru8VjrSn6v6RBbmmzoLCGo/vFxGraa1p/qF9udhVG+DdkbwHfbfKK5Im19KDw==",
1015
- "signed_at": "2026-05-13T02:18:38.239Z"
1015
+ "signed_at": "2026-05-13T02:31:32.079Z"
1016
1016
  },
1017
1017
  {
1018
1018
  "name": "identity-assurance",
@@ -1079,7 +1079,7 @@
1079
1079
  "d3fend_refs": [],
1080
1080
  "last_threat_review": "2026-05-11",
1081
1081
  "signature": "pSMHKkyWoZvRIuVtN7Vue51sP5MIy9lSaQa2YSAMhxjptx81cUnPt3S11/Tb9Ea1/eluMNQ+5F25eF2njr4mBQ==",
1082
- "signed_at": "2026-05-13T02:18:38.239Z"
1082
+ "signed_at": "2026-05-13T02:31:32.079Z"
1083
1083
  },
1084
1084
  {
1085
1085
  "name": "ot-ics-security",
@@ -1135,7 +1135,7 @@
1135
1135
  "d3fend_refs": [],
1136
1136
  "last_threat_review": "2026-05-11",
1137
1137
  "signature": "qjky+ZTX1DP7uRRMQZq7S7P9/uaJEoB1dy4RZ1l37Q4OO3k2ryfL+7o0Cgm/piuafJfH+dqUeNCRrVefj4r8Dw==",
1138
- "signed_at": "2026-05-13T02:18:38.239Z"
1138
+ "signed_at": "2026-05-13T02:31:32.080Z"
1139
1139
  },
1140
1140
  {
1141
1141
  "name": "coordinated-vuln-disclosure",
@@ -1187,7 +1187,7 @@
1187
1187
  "NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
1188
1188
  ],
1189
1189
  "signature": "F86Zl/I+dBzHYRUuGWsjDQI2F/I/vhzwZUFMqhNfKUzRbMf6mafOX2APCPYTp3eP1DvvvfL3Yc0hb1R5Q4nOAg==",
1190
- "signed_at": "2026-05-13T02:18:38.240Z"
1190
+ "signed_at": "2026-05-13T02:31:32.080Z"
1191
1191
  },
1192
1192
  {
1193
1193
  "name": "threat-modeling-methodology",
@@ -1237,7 +1237,7 @@
1237
1237
  "PASTA v2 updates incorporating AI/ML application threats"
1238
1238
  ],
1239
1239
  "signature": "D/4d5NcJScNH58ADXsSrVzTmLSWZpUZTdyhtDkJlC0twSMNczOiDsXgYFitBaZgGdv5nVd00viR45mNrsaZ4BQ==",
1240
- "signed_at": "2026-05-13T02:18:38.240Z"
1240
+ "signed_at": "2026-05-13T02:31:32.081Z"
1241
1241
  },
1242
1242
  {
1243
1243
  "name": "webapp-security",
@@ -1311,7 +1311,7 @@
1311
1311
  "d3fend_refs": [],
1312
1312
  "last_threat_review": "2026-05-11",
1313
1313
  "signature": "UOXaUtpcFjXyDQ70z2PaGu6K3pABtXp+7YzO6eGVGpN1CxXpPq/xW/CnTng6B7wk9WSsqD0OORBJp4VCjiVfAQ==",
1314
- "signed_at": "2026-05-13T02:18:38.241Z"
1314
+ "signed_at": "2026-05-13T02:31:32.081Z"
1315
1315
  },
1316
1316
  {
1317
1317
  "name": "ai-risk-management",
@@ -1361,7 +1361,7 @@
1361
1361
  "d3fend_refs": [],
1362
1362
  "last_threat_review": "2026-05-11",
1363
1363
  "signature": "IVKygsrFjiM64fQVbd2PT6jDjs6fm5nKwJSqGfK53gG0S9wdHC4QYuh+LWlI/2ftvIKjjedLQ6FRyTrqpDEuDw==",
1364
- "signed_at": "2026-05-13T02:18:38.241Z"
1364
+ "signed_at": "2026-05-13T02:31:32.081Z"
1365
1365
  },
1366
1366
  {
1367
1367
  "name": "sector-healthcare",
@@ -1421,7 +1421,7 @@
1421
1421
  "d3fend_refs": [],
1422
1422
  "last_threat_review": "2026-05-11",
1423
1423
  "signature": "P+CdSu8ZJCNUU4nTa09Voh2PcYF3y/AFJn4v7cjVIGo9FbbqO7MwvGN7cJ+aSRs2/3NMUXX4eupcODslxYyJDw==",
1424
- "signed_at": "2026-05-13T02:18:38.241Z"
1424
+ "signed_at": "2026-05-13T02:31:32.082Z"
1425
1425
  },
1426
1426
  {
1427
1427
  "name": "sector-financial",
@@ -1502,7 +1502,7 @@
1502
1502
  "TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
1503
1503
  ],
1504
1504
  "signature": "zpEfh181Sc0b0cvRf/31Ir1f8lD4V5tehTogO3TJMxdKmXu06IAK7hrhBcLA/jFBv3xDDwrWW3sHzChVhWDeDA==",
1505
- "signed_at": "2026-05-13T02:18:38.241Z"
1505
+ "signed_at": "2026-05-13T02:31:32.082Z"
1506
1506
  },
1507
1507
  {
1508
1508
  "name": "sector-federal-government",
@@ -1571,7 +1571,7 @@
1571
1571
  "Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
1572
1572
  ],
1573
1573
  "signature": "7NpQlPu1DkpY9f+Frv/LLBHWUUe/qTM80c+xeYDxOzweXhvJGE/dnDCjglYHTjxT82L9cVxzBezvLEne20UpBg==",
1574
- "signed_at": "2026-05-13T02:18:38.242Z"
1574
+ "signed_at": "2026-05-13T02:31:32.082Z"
1575
1575
  },
1576
1576
  {
1577
1577
  "name": "sector-energy",
@@ -1636,7 +1636,7 @@
1636
1636
  "ICS-CERT advisory feed (https://www.cisa.gov/news-events/cybersecurity-advisories/ics-advisories) for vendor CVEs in Siemens, Rockwell, Schneider Electric, ABB, GE Vernova, Hitachi Energy, AVEVA / OSIsoft PI"
1637
1637
  ],
1638
1638
  "signature": "4rhyHN5HykK7MQUmhvaTeDGj6Qf5swDd5ry8foh4KBvTkRKxTI/XyxconFGm5FASnySGPLMxX6m4JZAq5wiNBg==",
1639
- "signed_at": "2026-05-13T02:18:38.242Z"
1639
+ "signed_at": "2026-05-13T02:31:32.083Z"
1640
1640
  },
1641
1641
  {
1642
1642
  "name": "api-security",
@@ -1705,7 +1705,7 @@
1705
1705
  "d3fend_refs": [],
1706
1706
  "last_threat_review": "2026-05-11",
1707
1707
  "signature": "hS1izPhETclITK7fp6R67dhy+wFDti/YsJ2M5I1gDjeWZYK41WuxeYSyt5xEHbCr3WCGDFJe77jkK1MWkxk2BA==",
1708
- "signed_at": "2026-05-13T02:18:38.243Z"
1708
+ "signed_at": "2026-05-13T02:31:32.083Z"
1709
1709
  },
1710
1710
  {
1711
1711
  "name": "cloud-security",
@@ -1786,7 +1786,7 @@
1786
1786
  "CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
1787
1787
  ],
1788
1788
  "signature": "kuatqNZoRnv+oeyrxbnk+m37JRBIgRAWnDp0/IYLnoBOybiG09RzLILJraxjhvdSNCgo7WXTeBO3Y6a3Ji9MAA==",
1789
- "signed_at": "2026-05-13T02:18:38.243Z"
1789
+ "signed_at": "2026-05-13T02:31:32.083Z"
1790
1790
  },
1791
1791
  {
1792
1792
  "name": "container-runtime-security",
@@ -1848,7 +1848,7 @@
1848
1848
  "d3fend_refs": [],
1849
1849
  "last_threat_review": "2026-05-11",
1850
1850
  "signature": "Btb3/7fjPFopFVdxP7+E6n322gnAAwd7OPrnuqatq6c1rXTD9aXKxiBeCmWxs8zYbIbE/lFoe9R2g6uTp8ZDBg==",
1851
- "signed_at": "2026-05-13T02:18:38.243Z"
1851
+ "signed_at": "2026-05-13T02:31:32.084Z"
1852
1852
  },
1853
1853
  {
1854
1854
  "name": "mlops-security",
@@ -1919,7 +1919,7 @@
1919
1919
  "MITRE ATLAS v5.2 — track AML.T0010 sub-technique expansion and any new MLOps-pipeline-specific TTPs"
1920
1920
  ],
1921
1921
  "signature": "TBWnlgdllW7K1F10HCJ7p4dbLeS3lyNWm+7mNNtyZu7jB1V5AauG1P7sb1nLLqwKqeGlHS1F0eh/BNiuAvkABg==",
1922
- "signed_at": "2026-05-13T02:18:38.244Z"
1922
+ "signed_at": "2026-05-13T02:31:32.084Z"
1923
1923
  },
1924
1924
  {
1925
1925
  "name": "incident-response-playbook",
@@ -1981,7 +1981,7 @@
1981
1981
  "NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
1982
1982
  ],
1983
1983
  "signature": "FVAXpD6sIoOLQSPtZSLLsXQnc2o2hRwiFj4xK8zEWJVkUWGqvAWRrngie7O2DRKIbWqjO5h9EevVYSzhwYHCAA==",
1984
- "signed_at": "2026-05-13T02:18:38.244Z"
1984
+ "signed_at": "2026-05-13T02:31:32.085Z"
1985
1985
  },
1986
1986
  {
1987
1987
  "name": "email-security-anti-phishing",
@@ -2034,7 +2034,7 @@
2034
2034
  "d3fend_refs": [],
2035
2035
  "last_threat_review": "2026-05-11",
2036
2036
  "signature": "0HDt3Qklee4FQeKoZfwr+8qdq2pVDS0a+c7JxVw1hV/bl8+YTPaPjPTAhQUnbhUCa5cGo7G4MBQ1AifQTMJdDA==",
2037
- "signed_at": "2026-05-13T02:18:38.244Z"
2037
+ "signed_at": "2026-05-13T02:31:32.085Z"
2038
2038
  },
2039
2039
  {
2040
2040
  "name": "age-gates-child-safety",
@@ -2102,7 +2102,7 @@
2102
2102
  "US state adult-site age-verification laws — 19+ states by mid-2026 (TX HB 18 upheld by SCOTUS June 2025 in Free Speech Coalition v. Paxton); track ongoing challenges in remaining states"
2103
2103
  ],
2104
2104
  "signature": "UyPSKUztZI/daHCRTnAh6ryoKLX4xyjuG+EaNMPRVuCz2gANGl1F/NozDsw7R2koMUwSFoiYTzwqDvo1tpuKAg==",
2105
- "signed_at": "2026-05-13T02:18:38.245Z"
2105
+ "signed_at": "2026-05-13T02:31:32.085Z"
2106
2106
  }
2107
2107
  ]
2108
2108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.11.15",
3
+ "version": "0.12.0",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 38 skills, 10 catalogs, 34 jurisdictions, pre-computed indexes, Ed25519-signed.",
5
5
  "keywords": [
6
6
  "ai-security",