@blamejs/exceptd-skills 0.13.43 → 0.13.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/AGENTS.md CHANGED
@@ -372,7 +372,7 @@ This split costs every consumer the same translation work on every invocation. C
372
372
  exceptd collect secrets | exceptd run secrets --evidence -
373
373
  ```
374
374
 
375
- The collector library is small and grows as playbooks are touched. Twelve reference collectors ship today (`lib/collectors/secrets.js`, `lib/collectors/kernel.js`, `lib/collectors/sbom.js`, `lib/collectors/containers.js`, `lib/collectors/library-author.js`, `lib/collectors/crypto-codebase.js`, `lib/collectors/cred-stores.js`, `lib/collectors/hardening.js`, `lib/collectors/runtime.js`, `lib/collectors/ai-api.js`, `lib/collectors/mcp.js`, `lib/collectors/crypto.js`); the rest are written when each playbook needs them. Until a playbook has a collector, the AI/operator owns evidence collection as before.
375
+ The collector library is small and grows as playbooks are touched. Thirteen reference collectors ship today (`lib/collectors/secrets.js`, `lib/collectors/kernel.js`, `lib/collectors/sbom.js`, `lib/collectors/containers.js`, `lib/collectors/library-author.js`, `lib/collectors/crypto-codebase.js`, `lib/collectors/cred-stores.js`, `lib/collectors/hardening.js`, `lib/collectors/runtime.js`, `lib/collectors/ai-api.js`, `lib/collectors/mcp.js`, `lib/collectors/crypto.js`, `lib/collectors/cicd-pipeline-compromise.js`); the rest are written when each playbook needs them. Until a playbook has a collector, the AI/operator owns evidence collection as before.
376
376
 
377
377
  ### Precision target for new `look.artifacts[].source` strings
378
378
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.44 — 2026-05-21
4
+
5
+ Thirteenth reference collector.
6
+
7
+ ### Features
8
+
9
+ - **`lib/collectors/cicd-pipeline-compromise.js`** — consumer-side CI/CD posture collector. Walks `.github/workflows/*.{yml,yaml}` + `.gitlab-ci.yml` + `.circleci/config.yml`, plus `infra/` / `terraform/` / `policies/` / `.aws/` for OIDC trust JSON. Flips five deterministic indicators: `workflow-injection-sink` (`${{ github.event.* }}` interpolated directly inside a `run:` block without env-var indirection — the canonical GHA script-injection class, covers `pull_request.title` / `pull_request.body` / `issue.title` / `issue.body` / `comment.body` / `head_commit.message` / `review.body`), `pull-request-target-with-pr-checkout` (`on: pull_request_target` + `actions/checkout` referencing `github.event.pull_request.head.sha`, `.head.ref`, or `github.head_ref`), `actions-floating-tag-pin` (any third-party `uses: owner/repo@<ref>` where ref isn't a 40-char hex SHA; first-party `actions/*` excluded per playbook), `wildcarded-oidc-sub-claim` (`"token.actions.githubusercontent.com:sub": "*"` or wildcard repo/branch glob in any OIDC trust JSON under the searched roots), `secret-exposed-to-fork-pr` (`pull_request_target` trigger + any `secrets.*` reference other than `GITHUB_TOKEN` in the same workflow). `self-hosted-runner-non-ephemeral` (needs GitHub API runners list), `runner-scoped-signing-key` (needs HSM/KMS inspection) remain AI-driven.
10
+
3
11
  ## 0.13.43 — 2026-05-21
4
12
 
5
13
  Twelfth reference collector.
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-21T13:39:43.700Z",
3
+ "generated_at": "2026-05-21T14:25:45.130Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "b56fa964197403bfaeba55f1ae97c663bf447852a6fc0e418965a8faf6eb3387",
7
+ "manifest.json": "eee433070d0e766d2ea4810837835afd85d8a36b8307c3b4d66051b083c35f0a",
8
8
  "data/atlas-ttps.json": "d296c1d3e71807c9279b731f047e57796e85137f186586743a8cdad214b408f9",
9
9
  "data/attack-techniques.json": "49b6010b317edd219def135171ea8f3b1bbf1e00e9c5a08bf7237215ff54e2c3",
10
10
  "data/cve-catalog.json": "a09c83af3f9679a7ea73935726a1ff9de2cab94b4ab6321fc017fc147747d7c3",
@@ -0,0 +1,340 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * lib/collectors/cicd-pipeline-compromise.js
5
+ *
6
+ * Companion collector for the `cicd-pipeline-compromise` playbook.
7
+ * Consumer-side CI/CD posture: walks .github/workflows/*.yml,
8
+ * .gitlab-ci.yml, .circleci/config.yml, and the project's
9
+ * infra/terraform/policies dirs for OIDC trust JSON. Flips
10
+ * deterministic indicators that detect the published-Action and
11
+ * fork-PR attack classes documented in the playbook.
12
+ *
13
+ * Skipped indicators (require GitHub API or HSM/KMS access, left
14
+ * unflipped so the runner returns inconclusive):
15
+ *
16
+ * self-hosted-runner-non-ephemeral needs GitHub API (runners list)
17
+ * runner-scoped-signing-key needs HSM/KMS inspection
18
+ *
19
+ * Interface: see lib/collectors/README.md
20
+ */
21
+
22
+ const fs = require("node:fs");
23
+ const path = require("node:path");
24
+
25
+ const COLLECTOR_ID = "cicd-pipeline-compromise";
26
+
27
+ function readSafe(p, max = 512 * 1024) {
28
+ try {
29
+ const s = fs.statSync(p);
30
+ if (s.size > max) return null;
31
+ return fs.readFileSync(p, "utf8");
32
+ } catch { return null; }
33
+ }
34
+
35
+ function walkWorkflows(root) {
36
+ const out = [];
37
+ const wfDir = path.join(root, ".github", "workflows");
38
+ if (fs.existsSync(wfDir)) {
39
+ let entries;
40
+ try { entries = fs.readdirSync(wfDir, { withFileTypes: true }); }
41
+ catch { entries = []; }
42
+ for (const e of entries) {
43
+ if (!e.isFile()) continue;
44
+ if (!/\.(ya?ml)$/i.test(e.name)) continue;
45
+ const full = path.join(wfDir, e.name);
46
+ const content = readSafe(full);
47
+ if (content != null) out.push({ full, rel: path.relative(root, full).replace(/\\/g, "/"), content });
48
+ }
49
+ }
50
+ // Also recognise the most common single-file CI YAMLs at repo root.
51
+ for (const top of [".gitlab-ci.yml", ".circleci/config.yml"]) {
52
+ const full = path.join(root, top);
53
+ if (fs.existsSync(full)) {
54
+ const content = readSafe(full);
55
+ if (content != null) out.push({ full, rel: top, content });
56
+ }
57
+ }
58
+ return out;
59
+ }
60
+
61
+ // `on:` trigger detection. Workflows declare triggers via four
62
+ // canonical YAML shapes:
63
+ // - scalar: `on: push`
64
+ // - inline list: `on: [push, pull_request_target]`
65
+ // - block list: `on:\n - push\n - pull_request_target`
66
+ // - mapping: `on:\n push:\n pull_request_target:`
67
+ // Heuristic accepts all four.
68
+ function workflowHasTrigger(content, name) {
69
+ if (new RegExp(`^\\s*on:\\s*['"]?${name}['"]?\\s*(?:#.*)?$`, "m").test(content)) return true;
70
+ const listMatch = content.match(/^\s*on:\s*\[([^\]]*)\]/m);
71
+ if (listMatch && new RegExp(`(?:^|,)\\s*['"]?${name}['"]?\\s*(?:,|$)`).test(listMatch[1])) return true;
72
+ // block list AND mapping forms both follow `on:\n` with indented
73
+ // continuation lines. Capture the block and inspect for either
74
+ // `- <name>` (list) or `<name>:` (mapping) within it.
75
+ const blockMatch = content.match(/^\s*on:\s*\n((?:[ \t]+[^\n]+\n?)+)/m);
76
+ if (blockMatch) {
77
+ if (new RegExp(`^[ \\t]+-\\s+['"]?${name}['"]?\\s*(?:#.*)?\\s*$`, "m").test(blockMatch[1])) return true;
78
+ if (new RegExp(`^[ \\t]+${name}:`, "m").test(blockMatch[1])) return true;
79
+ }
80
+ return false;
81
+ }
82
+
83
+ // Find `actions/checkout` step blocks and return true when any one
84
+ // of them carries a `ref:` line referencing the PR head. Each step
85
+ // block is delimited by the next sibling `- ` at the same
86
+ // indentation (or de-indented line, meaning we've left steps[]).
87
+ // Binding the ref match to the checkout step prevents false hits
88
+ // when another unrelated step references the PR head while the
89
+ // actual checkout is safely fetching the base ref.
90
+ function checkoutBindsPrHead(content) {
91
+ const lines = content.split(/\r?\n/);
92
+ for (let i = 0; i < lines.length; i++) {
93
+ const m = lines[i].match(/^(\s*-\s+)uses:\s*['"]?actions\/checkout@/);
94
+ if (!m) continue;
95
+ const baseIndent = m[1].length;
96
+ let blockEnd = lines.length;
97
+ for (let j = i + 1; j < lines.length; j++) {
98
+ const line = lines[j];
99
+ if (line.trim() === "") continue;
100
+ const indentM = line.match(/^(\s*)\S/);
101
+ if (!indentM) continue;
102
+ const indent = indentM[1].length;
103
+ // Next sibling step starts with `-` at the same indent, or
104
+ // any line de-indented past the step base ends the block.
105
+ if (indent < baseIndent) { blockEnd = j; break; }
106
+ if (indent === baseIndent && line.trim().startsWith("- ")) { blockEnd = j; break; }
107
+ }
108
+ const block = lines.slice(i, blockEnd).join("\n");
109
+ if (/ref:\s*['"]?\$\{\{\s*github\.event\.pull_request\.head\.(?:sha|ref)/m.test(block) ||
110
+ /ref:\s*['"]?\$\{\{\s*github\.head_ref\s*\}\}/m.test(block)) {
111
+ return true;
112
+ }
113
+ }
114
+ return false;
115
+ }
116
+
117
+ function scanWorkflow(content, rel) {
118
+ const hits = {
119
+ "workflow-injection-sink": [],
120
+ "pull-request-target-with-pr-checkout": [],
121
+ "actions-floating-tag-pin": [],
122
+ "secret-exposed-to-fork-pr": [],
123
+ };
124
+
125
+ const hasPRTarget = workflowHasTrigger(content, "pull_request_target");
126
+ const hasIssueComment = workflowHasTrigger(content, "issue_comment");
127
+
128
+ // pull-request-target-with-pr-checkout: PRT trigger AND the
129
+ // PR-head ref reference is bound to an actions/checkout step
130
+ // (not to an unrelated step that happens to read head_ref).
131
+ if (hasPRTarget && checkoutBindsPrHead(content)) {
132
+ hits["pull-request-target-with-pr-checkout"].push({ file: rel, snippet: "pull_request_target trigger + checkout of PR head" });
133
+ }
134
+
135
+ // workflow-injection-sink: ${{ github.event.<title|body|...> }}
136
+ // interpolated directly inside a `run:` block. Conservative form:
137
+ // file-wide presence of one of the dangerous expressions AND the
138
+ // expression appears outside an `env:` mapping context that would
139
+ // have made it safe.
140
+ if (hasPRTarget || hasIssueComment || workflowHasTrigger(content, "pull_request")) {
141
+ const dangerousExprs = [
142
+ /\$\{\{\s*github\.event\.pull_request\.(?:title|body|head\.ref)\s*\}\}/,
143
+ /\$\{\{\s*github\.event\.issue\.(?:title|body)\s*\}\}/,
144
+ /\$\{\{\s*github\.event\.comment\.body\s*\}\}/,
145
+ /\$\{\{\s*github\.event\.head_commit\.message\s*\}\}/,
146
+ /\$\{\{\s*github\.event\.review\.body\s*\}\}/,
147
+ ];
148
+ const lines = content.split(/\r?\n/);
149
+ for (let i = 0; i < lines.length; i++) {
150
+ const line = lines[i];
151
+ // Quick filter: dangerous expression on this line?
152
+ const matchedExpr = dangerousExprs.find(re => re.test(line));
153
+ if (!matchedExpr) continue;
154
+ // If the dangerous expr is inside an `env:` mapping (key: value
155
+ // shape on a YAML env block), the shell sees it as a variable
156
+ // and it's not an injection sink. Walk back up to 3 lines to
157
+ // find the nearest preceding YAML key indicator.
158
+ const ctx = lines.slice(Math.max(0, i - 3), i + 1).join("\n");
159
+ const isEnvBinding = /^\s+[A-Z_][A-Z0-9_]*:\s*['"]?\$\{\{\s*github\.event/m.test(ctx);
160
+ // Detect `run:` proximity. The expression must land inside a
161
+ // run-block; otherwise it's an `env:` binding or `with:` arg.
162
+ const inRun = /^\s+run:/m.test(ctx) || /^\s+\|/m.test(ctx) || lines[i].trim().startsWith("- run:");
163
+ if (inRun && !isEnvBinding) {
164
+ hits["workflow-injection-sink"].push({ file: rel, line: i + 1, snippet: line.trim().slice(0, 160) });
165
+ break;
166
+ }
167
+ }
168
+ }
169
+
170
+ // actions-floating-tag-pin: `uses: <owner>/<repo>@<ref>` where ref
171
+ // isn't a 40-char hex SHA AND owner isn't `actions` (first-party
172
+ // GitHub repos excluded by the playbook predicate). Excludes local
173
+ // composite actions (`uses: ./`).
174
+ const lines2 = content.split(/\r?\n/);
175
+ for (let i = 0; i < lines2.length; i++) {
176
+ const m = lines2[i].match(/^\s*-?\s*uses:\s*['"]?([^'"\s#]+)['"]?/);
177
+ if (!m) continue;
178
+ const refStr = m[1];
179
+ if (refStr.startsWith("./") || refStr.startsWith("docker://")) continue;
180
+ const atIdx = refStr.lastIndexOf("@");
181
+ if (atIdx === -1) continue;
182
+ const slash = refStr.indexOf("/");
183
+ if (slash === -1) continue;
184
+ const owner = refStr.slice(0, slash);
185
+ if (owner === "actions") continue; // first-party
186
+ const rev = refStr.slice(atIdx + 1);
187
+ if (!/^[0-9a-f]{40}$/i.test(rev)) {
188
+ hits["actions-floating-tag-pin"].push({ file: rel, line: i + 1, snippet: lines2[i].trim() });
189
+ }
190
+ }
191
+
192
+ // secret-exposed-to-fork-pr: pull_request_target trigger + the
193
+ // workflow references `secrets.X` for any X other than GITHUB_TOKEN.
194
+ // Pull-request-from-forks (without target) requires runtime info
195
+ // to detect fork status — left to operator evidence.
196
+ if (hasPRTarget) {
197
+ const secretsRefs = content.match(/\$\{\{\s*secrets\.([A-Z_][A-Z0-9_]*)\s*\}\}/g) || [];
198
+ const nonDefault = secretsRefs.filter(r => !/secrets\.GITHUB_TOKEN/.test(r));
199
+ if (nonDefault.length > 0) {
200
+ hits["secret-exposed-to-fork-pr"].push({ file: rel, snippet: `pull_request_target + ${nonDefault.length} secrets.* reference(s)` });
201
+ }
202
+ }
203
+
204
+ return hits;
205
+ }
206
+
207
+ function scanOidcPolicies(root) {
208
+ // Walk infra/ + terraform/ + policies/ (depth 4) for *.json that
209
+ // names token.actions.githubusercontent.com AND has a wildcarded
210
+ // sub-claim. The playbook lists `repo:<org>/*:*`, `repo:*:*`, and
211
+ // bare `*` as wildcard shapes.
212
+ const rootDirs = ["infra", "terraform", "policies", ".aws", ".github"].map(d => path.join(root, d));
213
+ const finds = [];
214
+ function walk(dir, depth) {
215
+ if (depth > 4 || finds.length > 5) return;
216
+ let entries;
217
+ try { entries = fs.readdirSync(dir, { withFileTypes: true }); }
218
+ catch { return; }
219
+ for (const e of entries) {
220
+ if (e.name === "node_modules" || e.name === ".git") continue;
221
+ const full = path.join(dir, e.name);
222
+ if (e.isDirectory()) { walk(full, depth + 1); continue; }
223
+ if (!e.isFile() || !/\.json$/i.test(e.name)) continue;
224
+ const text = readSafe(full);
225
+ if (!text) continue;
226
+ if (!/token\.actions\.githubusercontent\.com/.test(text)) continue;
227
+ // sub-claim wildcards. Cover the three shapes the playbook lists.
228
+ const subWildcard =
229
+ /"token\.actions\.githubusercontent\.com:sub"\s*:\s*"\*"/.test(text) ||
230
+ /"token\.actions\.githubusercontent\.com:sub"\s*:\s*"repo:\*[^"]*"/.test(text) ||
231
+ /"token\.actions\.githubusercontent\.com:sub"\s*:\s*"repo:[^"]*\/\*:[^"]*"/.test(text);
232
+ if (subWildcard) finds.push({ file: path.relative(root, full).replace(/\\/g, "/"), snippet: "OIDC sub-claim wildcarded across repos or branches" });
233
+ }
234
+ }
235
+ for (const rd of rootDirs) if (fs.existsSync(rd)) walk(rd, 0);
236
+ return finds;
237
+ }
238
+
239
+ function collect({ cwd = process.cwd(), env = process.env, args = {} } = {}) {
240
+ const errors = [];
241
+ const startTime = Date.now();
242
+ const root = path.resolve(cwd);
243
+
244
+ // cwd-is-repo precondition: .git directory present. Outside a
245
+ // repo we have no workflows / no OIDC trust JSON to walk.
246
+ const cwdIsRepo = fs.existsSync(path.join(root, ".git"));
247
+ if (!cwdIsRepo) {
248
+ return {
249
+ precondition_checks: { "cwd-is-repo": false },
250
+ artifacts: {
251
+ "workflow-yaml-inventory": { value: "skipped — cwd is not a git repository", captured: false, reason: "no .git directory at cwd" },
252
+ },
253
+ signal_overrides: {},
254
+ collector_meta: {
255
+ collector_id: COLLECTOR_ID,
256
+ collector_version: "2026-05-21",
257
+ platform: process.platform,
258
+ captured_at: new Date().toISOString(),
259
+ cwd: root,
260
+ duration_ms: Date.now() - startTime,
261
+ },
262
+ collector_errors: errors,
263
+ };
264
+ }
265
+
266
+ const workflows = walkWorkflows(root);
267
+ const aggregateHits = {
268
+ "workflow-injection-sink": [],
269
+ "pull-request-target-with-pr-checkout": [],
270
+ "actions-floating-tag-pin": [],
271
+ "secret-exposed-to-fork-pr": [],
272
+ };
273
+ for (const w of workflows) {
274
+ const h = scanWorkflow(w.content, w.rel);
275
+ for (const [k, v] of Object.entries(h)) aggregateHits[k].push(...v);
276
+ }
277
+
278
+ const oidcWildcards = scanOidcPolicies(root);
279
+
280
+ const signal_overrides = {
281
+ "workflow-injection-sink": aggregateHits["workflow-injection-sink"].length > 0 ? "hit" : "miss",
282
+ "pull-request-target-with-pr-checkout": aggregateHits["pull-request-target-with-pr-checkout"].length > 0 ? "hit" : "miss",
283
+ "actions-floating-tag-pin": aggregateHits["actions-floating-tag-pin"].length > 0 ? "hit" : "miss",
284
+ "secret-exposed-to-fork-pr": aggregateHits["secret-exposed-to-fork-pr"].length > 0 ? "hit" : "miss",
285
+ "wildcarded-oidc-sub-claim": oidcWildcards.length > 0 ? "hit" : "miss",
286
+ };
287
+
288
+ const artifacts = {
289
+ "workflow-yaml-inventory": {
290
+ value: workflows.length ? workflows.map(w => w.rel).join(", ") : "no workflow files found at cwd",
291
+ captured: true,
292
+ },
293
+ "oidc-trust-policy-inventory": {
294
+ value: oidcWildcards.length
295
+ ? `${oidcWildcards.length} wildcarded sub-claim(s): ${oidcWildcards.map(f => f.file).join(", ")}`
296
+ : "no wildcarded OIDC sub-claim found in infra / terraform / policies",
297
+ captured: true,
298
+ },
299
+ "actions-sha-pinning": {
300
+ value: `${aggregateHits["actions-floating-tag-pin"].length} non-SHA third-party uses: reference(s) across ${workflows.length} workflow(s)`,
301
+ captured: true,
302
+ },
303
+ "fork-pr-workflow-exposure": {
304
+ value: `${aggregateHits["pull-request-target-with-pr-checkout"].length} workflow(s) check out PR head under pull_request_target`,
305
+ captured: true,
306
+ },
307
+ "runner-secrets-inventory": {
308
+ value: `${aggregateHits["secret-exposed-to-fork-pr"].length} workflow(s) reference non-default secrets under pull_request_target`,
309
+ captured: true,
310
+ },
311
+ "self-hosted-runner-registrations": {
312
+ value: "not captured by this collector — requires GitHub API (runners list)",
313
+ captured: false,
314
+ reason: "GH runners API access needed; deferred to operator evidence",
315
+ },
316
+ "signing-key-locations": {
317
+ value: "not captured by this collector — requires HSM/KMS or runtime inspection",
318
+ captured: false,
319
+ reason: "HSM/KMS access needed; deferred to operator evidence",
320
+ },
321
+ };
322
+
323
+ return {
324
+ precondition_checks: { "cwd-is-repo": true },
325
+ artifacts,
326
+ signal_overrides,
327
+ collector_meta: {
328
+ collector_id: COLLECTOR_ID,
329
+ collector_version: "2026-05-21",
330
+ platform: process.platform,
331
+ captured_at: new Date().toISOString(),
332
+ cwd: root,
333
+ duration_ms: Date.now() - startTime,
334
+ workflows_scanned: workflows.length,
335
+ },
336
+ collector_errors: errors,
337
+ };
338
+ }
339
+
340
+ module.exports = { playbook_id: COLLECTOR_ID, collect };
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.13.43",
3
+ "version": "0.13.44",
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-01",
55
55
  "signature": "lXhZgoIrrVloO3XaTvo/43AxZn4mwErstd7DR0O/oVhD3AOGODM4HqrageYEou9WKOdMEGP5mJNTjJsXdP5NDA==",
56
- "signed_at": "2026-05-21T13:36:49.117Z",
56
+ "signed_at": "2026-05-21T14:14:25.595Z",
57
57
  "cwe_refs": [
58
58
  "CWE-125",
59
59
  "CWE-362",
@@ -117,7 +117,7 @@
117
117
  ],
118
118
  "last_threat_review": "2026-05-01",
119
119
  "signature": "vSVqu4wBm+d68ujZmM6Rto/HzViCkE0gPUcv/MYE/bjFiqamf/s0On4kTOo1KIveV9cOwYNxiItaGEWlVkRFDg==",
120
- "signed_at": "2026-05-21T13:36:49.119Z",
120
+ "signed_at": "2026-05-21T14:14:25.597Z",
121
121
  "cwe_refs": [
122
122
  "CWE-1039",
123
123
  "CWE-1426",
@@ -180,7 +180,7 @@
180
180
  ],
181
181
  "last_threat_review": "2026-05-01",
182
182
  "signature": "RIgXKvolQjgJdnlrDnVOd90IOY1B7VHHZD/YJQRzouL+wUeOLclPrdK/EgEuFyiu7lR4bi+Pl6aGB9G9tOxYCQ==",
183
- "signed_at": "2026-05-21T13:36:49.119Z",
183
+ "signed_at": "2026-05-21T14:14:25.598Z",
184
184
  "cwe_refs": [
185
185
  "CWE-22",
186
186
  "CWE-345",
@@ -226,7 +226,7 @@
226
226
  "framework_gaps": [],
227
227
  "last_threat_review": "2026-05-01",
228
228
  "signature": "RYOxeq/o3uTwTWq4H7RcdH2Aclg9UyCERfUH9Frwkzncsowg7LgxpaEDc3swTCv73HMEGbU8wVbXguZ4JxHUCQ==",
229
- "signed_at": "2026-05-21T13:36:49.120Z"
229
+ "signed_at": "2026-05-21T14:14:25.598Z"
230
230
  },
231
231
  {
232
232
  "name": "compliance-theater",
@@ -257,7 +257,7 @@
257
257
  ],
258
258
  "last_threat_review": "2026-05-01",
259
259
  "signature": "DneJCPKCPcoe6nQ82XptqSqNfSRdt1orKaO+o7K36YCciDrzwJb+1BuBLusPDtpcdDaGY0y0e+AqiTYJklhBAQ==",
260
- "signed_at": "2026-05-21T13:36:49.120Z"
260
+ "signed_at": "2026-05-21T14:14:25.599Z"
261
261
  },
262
262
  {
263
263
  "name": "exploit-scoring",
@@ -286,7 +286,7 @@
286
286
  ],
287
287
  "last_threat_review": "2026-05-01",
288
288
  "signature": "NA1hoQycvQhSUoG5rwlXX0mOVmGxoXRVezkELGEA2nZOdGis4gXkHT3O6Sfw7zxE4JuMrsCb65TEeOWk9WEPDg==",
289
- "signed_at": "2026-05-21T13:36:49.121Z"
289
+ "signed_at": "2026-05-21T14:14:25.599Z"
290
290
  },
291
291
  {
292
292
  "name": "rag-pipeline-security",
@@ -323,7 +323,7 @@
323
323
  ],
324
324
  "last_threat_review": "2026-05-01",
325
325
  "signature": "XgrzcA2brPhXrSTxrcLnJec0OpgGYJBoSTUlJ10UdePHffxqb9LTVGnfbmEk1ykQifXREZexui2bG7X/+eFfCQ==",
326
- "signed_at": "2026-05-21T13:36:49.121Z",
326
+ "signed_at": "2026-05-21T14:14:25.600Z",
327
327
  "cwe_refs": [
328
328
  "CWE-1395",
329
329
  "CWE-1426"
@@ -380,7 +380,7 @@
380
380
  ],
381
381
  "last_threat_review": "2026-05-01",
382
382
  "signature": "9+hZlZOqZdeACUmamQk66L5levZhhwnFXuYRhdT6Mce99eQaKT7wNfWq12hXQztkRcVRKaFH+a01zwJQwsRQCA==",
383
- "signed_at": "2026-05-21T13:36:49.121Z",
383
+ "signed_at": "2026-05-21T14:14:25.600Z",
384
384
  "d3fend_refs": [
385
385
  "D3-CA",
386
386
  "D3-CSPP",
@@ -415,7 +415,7 @@
415
415
  "framework_gaps": [],
416
416
  "last_threat_review": "2026-05-01",
417
417
  "signature": "ciqhVloMWWXEigPZvvwoV2c54tEqsDqsoc+sS/mNTFFJk2H+tz2+XUrgfEPRuYw0FeyNB6/+27pL2NpKHzUqAg==",
418
- "signed_at": "2026-05-21T13:36:49.122Z",
418
+ "signed_at": "2026-05-21T14:14:25.600Z",
419
419
  "cwe_refs": [
420
420
  "CWE-1188"
421
421
  ]
@@ -443,7 +443,7 @@
443
443
  "framework_gaps": [],
444
444
  "last_threat_review": "2026-05-01",
445
445
  "signature": "xiHAhhdufm9hCKU8PLiPE0MX65ej2F4OZwtlWLGLCiie9/km+Kiqbt192LcMvr94v83C98pb9wIaqFsFWft6AQ==",
446
- "signed_at": "2026-05-21T13:36:49.122Z"
446
+ "signed_at": "2026-05-21T14:14:25.601Z"
447
447
  },
448
448
  {
449
449
  "name": "global-grc",
@@ -475,7 +475,7 @@
475
475
  "framework_gaps": [],
476
476
  "last_threat_review": "2026-05-01",
477
477
  "signature": "oYsSk35N2Uzq7MRofACykylcVwkgPhI4luWZ14vmQT+gUKLyZiKVOUJbe1+7lGl6BYPRN0sUDQ0f7S5Eu5w2Ag==",
478
- "signed_at": "2026-05-21T13:36:49.122Z"
478
+ "signed_at": "2026-05-21T14:14:25.601Z"
479
479
  },
480
480
  {
481
481
  "name": "zeroday-gap-learn",
@@ -502,7 +502,7 @@
502
502
  "framework_gaps": [],
503
503
  "last_threat_review": "2026-05-01",
504
504
  "signature": "igRqYyU1unRFH40BsPyAR62SPrk8QZv8dPGb8S9O9EvLCNOZAzm3t+HdT/NKqzWHwrpomOzkkkyLfYI/0qTUDA==",
505
- "signed_at": "2026-05-21T13:36:49.123Z"
505
+ "signed_at": "2026-05-21T14:14:25.602Z"
506
506
  },
507
507
  {
508
508
  "name": "pqc-first",
@@ -554,7 +554,7 @@
554
554
  ],
555
555
  "last_threat_review": "2026-05-01",
556
556
  "signature": "vhc3wuQEro/86s1ro2b/KakUXg8QVnySYTBqA7ebzv9oeR2HYO5bvGEJp3oOHWtL37JDqcCAHYadSN/qxIyCCA==",
557
- "signed_at": "2026-05-21T13:36:49.123Z",
557
+ "signed_at": "2026-05-21T14:14:25.602Z",
558
558
  "cwe_refs": [
559
559
  "CWE-327"
560
560
  ],
@@ -601,7 +601,7 @@
601
601
  ],
602
602
  "last_threat_review": "2026-05-01",
603
603
  "signature": "MS35nWm8djfJGn4OOoT0JKJ2aO+Dkbb6wOOWJYvNZlRKT3UGA59o2gxg1JOnD20hb/RwxtkmCujhl2tuYSR+AQ==",
604
- "signed_at": "2026-05-21T13:36:49.123Z"
604
+ "signed_at": "2026-05-21T14:14:25.603Z"
605
605
  },
606
606
  {
607
607
  "name": "security-maturity-tiers",
@@ -638,7 +638,7 @@
638
638
  ],
639
639
  "last_threat_review": "2026-05-01",
640
640
  "signature": "8Px1s2lDj10/Q6erwEQlXgUHM1+OTruUR8qAHPX7Oo3k/l69N6P9sm0PsafS9wDFtj9l5C/OiLiFgzMlMt6vBw==",
641
- "signed_at": "2026-05-21T13:36:49.124Z",
641
+ "signed_at": "2026-05-21T14:14:25.604Z",
642
642
  "cwe_refs": [
643
643
  "CWE-1188"
644
644
  ]
@@ -673,7 +673,7 @@
673
673
  "framework_gaps": [],
674
674
  "last_threat_review": "2026-05-11",
675
675
  "signature": "WAu5fRirzSOcnnZsTx2d/JJZwa/LPpXCi+31qATTGLmoNuhyy81k3ooPe9kCM3E0CLMtvTePg9DagYqBninZDQ==",
676
- "signed_at": "2026-05-21T13:36:49.124Z"
676
+ "signed_at": "2026-05-21T14:14:25.604Z"
677
677
  },
678
678
  {
679
679
  "name": "attack-surface-pentest",
@@ -744,7 +744,7 @@
744
744
  "PTES revision incorporating AI-surface enumeration"
745
745
  ],
746
746
  "signature": "7eEwCXFd9pDKUw7yCUbRJSjfzozE44dwwwemCQUPm8JBPztLltibD9bL/RszSbYyCrYJmVb5Drncz2cGe62gCw==",
747
- "signed_at": "2026-05-21T13:36:49.124Z"
747
+ "signed_at": "2026-05-21T14:14:25.604Z"
748
748
  },
749
749
  {
750
750
  "name": "fuzz-testing-strategy",
@@ -804,7 +804,7 @@
804
804
  "OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
805
805
  ],
806
806
  "signature": "Z7ypCUnXx8JpLtgxxB6RHNi39w74AmrGY1N4ofAGCXhkuM2EaFVm1AU0dvl9UQ1bVLfHKEDGqMO/TwlIY7RABg==",
807
- "signed_at": "2026-05-21T13:36:49.125Z"
807
+ "signed_at": "2026-05-21T14:14:25.605Z"
808
808
  },
809
809
  {
810
810
  "name": "dlp-gap-analysis",
@@ -879,7 +879,7 @@
879
879
  "Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
880
880
  ],
881
881
  "signature": "fgxG344JGYBWWWwFXZ1IzGipWKP7EyBhrsvsbsb0CCGXfv/MvNHVNI6G0zQddCsWX1JeQbhZT3Vk8v1uJKDTDA==",
882
- "signed_at": "2026-05-21T13:36:49.125Z"
882
+ "signed_at": "2026-05-21T14:14:25.605Z"
883
883
  },
884
884
  {
885
885
  "name": "supply-chain-integrity",
@@ -956,7 +956,7 @@
956
956
  "OpenSSF model-signing — emerging Sigstore-based signing standard for ML model weights; track for production adoption"
957
957
  ],
958
958
  "signature": "pcLrM98A3vUSZRjwNAk0aZ9umvOwB41XCLLsCOy/IebB2F/06oIrGUKkMHtHwm4pTVPShMMcKdZQQ3jz30FnCg==",
959
- "signed_at": "2026-05-21T13:36:49.125Z"
959
+ "signed_at": "2026-05-21T14:14:25.605Z"
960
960
  },
961
961
  {
962
962
  "name": "defensive-countermeasure-mapping",
@@ -1013,7 +1013,7 @@
1013
1013
  ],
1014
1014
  "last_threat_review": "2026-05-11",
1015
1015
  "signature": "gqF8eU3VBrZhO2WnlcqKa7wm1d2mmWtvpbmx0kNCgHojNV+qEt+Ij84RO6bZvaUqhfYPWizWL79Fa4DL0curAQ==",
1016
- "signed_at": "2026-05-21T13:36:49.126Z"
1016
+ "signed_at": "2026-05-21T14:14:25.606Z"
1017
1017
  },
1018
1018
  {
1019
1019
  "name": "identity-assurance",
@@ -1080,7 +1080,7 @@
1080
1080
  "d3fend_refs": [],
1081
1081
  "last_threat_review": "2026-05-11",
1082
1082
  "signature": "Wv5hGMeHjlaQK1zwicVCA7AvdKgJBgvcjdpGM9Ywahh9tagAKhbkOjybowDQZzu7OZ3bDkbh6pBYc1Sdwr6NAA==",
1083
- "signed_at": "2026-05-21T13:36:49.126Z"
1083
+ "signed_at": "2026-05-21T14:14:25.606Z"
1084
1084
  },
1085
1085
  {
1086
1086
  "name": "ot-ics-security",
@@ -1136,7 +1136,7 @@
1136
1136
  "d3fend_refs": [],
1137
1137
  "last_threat_review": "2026-05-11",
1138
1138
  "signature": "8t5qKHd3yWi57dvG36YQkLN/X9bQWqtEiYjay4IfSmqhJpM/xXPaQVKNGz3wscrO8OLKUZ0OaX7Mj5kzpgBKBQ==",
1139
- "signed_at": "2026-05-21T13:36:49.126Z"
1139
+ "signed_at": "2026-05-21T14:14:25.606Z"
1140
1140
  },
1141
1141
  {
1142
1142
  "name": "coordinated-vuln-disclosure",
@@ -1188,7 +1188,7 @@
1188
1188
  "NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
1189
1189
  ],
1190
1190
  "signature": "GDGt4UPqBa04PjlpSmpyihGzd3OgfBN7jaAK5tfwp+LRSs3ygKOdbeivUCCHNagTY1hE6hG2Ou40ADfBFuXeAg==",
1191
- "signed_at": "2026-05-21T13:36:49.127Z"
1191
+ "signed_at": "2026-05-21T14:14:25.607Z"
1192
1192
  },
1193
1193
  {
1194
1194
  "name": "threat-modeling-methodology",
@@ -1238,7 +1238,7 @@
1238
1238
  "PASTA v2 updates incorporating AI/ML application threats"
1239
1239
  ],
1240
1240
  "signature": "rFBpOQEJUPpl+v88Lw/WqVJRhTl80vy0VbPAbzQj3Q0suJRRrJg368I9uKu5LXIBKFDvKxnGIcIzbGg9NUtaCA==",
1241
- "signed_at": "2026-05-21T13:36:49.127Z"
1241
+ "signed_at": "2026-05-21T14:14:25.607Z"
1242
1242
  },
1243
1243
  {
1244
1244
  "name": "webapp-security",
@@ -1312,7 +1312,7 @@
1312
1312
  "d3fend_refs": [],
1313
1313
  "last_threat_review": "2026-05-11",
1314
1314
  "signature": "ux85YI4t2mVHOyt744Yin1HHy+z11JIFygjKfFfQOBBl5QVV3A267jeIy7utix85irMcpZm/T3yx/ooqiK2tBA==",
1315
- "signed_at": "2026-05-21T13:36:49.127Z"
1315
+ "signed_at": "2026-05-21T14:14:25.607Z"
1316
1316
  },
1317
1317
  {
1318
1318
  "name": "ai-risk-management",
@@ -1362,7 +1362,7 @@
1362
1362
  "d3fend_refs": [],
1363
1363
  "last_threat_review": "2026-05-11",
1364
1364
  "signature": "IIXnkZ5ZNqFwOto5KfytADTLLZLoyXNZACD1ORZ40P1HUAQxe6u2uyXFzzsfuob4Uy06jNkRGr2FFgCphUH1Cw==",
1365
- "signed_at": "2026-05-21T13:36:49.128Z"
1365
+ "signed_at": "2026-05-21T14:14:25.608Z"
1366
1366
  },
1367
1367
  {
1368
1368
  "name": "sector-healthcare",
@@ -1422,7 +1422,7 @@
1422
1422
  "d3fend_refs": [],
1423
1423
  "last_threat_review": "2026-05-11",
1424
1424
  "signature": "AhF9KF8ZBlDteciV+F8IBSmFVYCvQOn44GmD4rZjgLoPxfIv/QE1/vSkK32zyqDKtHWkLSXExbkkPkxA/V6dDw==",
1425
- "signed_at": "2026-05-21T13:36:49.128Z"
1425
+ "signed_at": "2026-05-21T14:14:25.609Z"
1426
1426
  },
1427
1427
  {
1428
1428
  "name": "sector-financial",
@@ -1503,7 +1503,7 @@
1503
1503
  "TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
1504
1504
  ],
1505
1505
  "signature": "HQgZvb4ReziEz5rNFr8i/O8/rJEZR+iHRROT7m/D2QUqhrcNISPkYXENsUZlG8xapzy/Ik92ehkseyj4hdmhCQ==",
1506
- "signed_at": "2026-05-21T13:36:49.129Z"
1506
+ "signed_at": "2026-05-21T14:14:25.610Z"
1507
1507
  },
1508
1508
  {
1509
1509
  "name": "sector-federal-government",
@@ -1572,7 +1572,7 @@
1572
1572
  "Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
1573
1573
  ],
1574
1574
  "signature": "linxmsXZiOYtcs71sSWgGCrvb8xQfmxmtTY5PRvZJ0/8FgJulo0tQtejzexYG775s7XhjAmGsDP238BQTQ8ADA==",
1575
- "signed_at": "2026-05-21T13:36:49.129Z"
1575
+ "signed_at": "2026-05-21T14:14:25.610Z"
1576
1576
  },
1577
1577
  {
1578
1578
  "name": "sector-energy",
@@ -1637,7 +1637,7 @@
1637
1637
  "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"
1638
1638
  ],
1639
1639
  "signature": "JjBfc0ovta560Clk0x3QGRM5osFJDwcvpy3rT7QEGdCIL827jzE8QCow1C8deXq+4JhY2sA/d7/8IsxikdlkCg==",
1640
- "signed_at": "2026-05-21T13:36:49.130Z"
1640
+ "signed_at": "2026-05-21T14:14:25.611Z"
1641
1641
  },
1642
1642
  {
1643
1643
  "name": "sector-telecom",
@@ -1723,7 +1723,7 @@
1723
1723
  "O-RAN SFG / WG11 security specifications"
1724
1724
  ],
1725
1725
  "signature": "JWVxKFoKrbX4d+Tko1d4OBdwyg25MfFFKn4CT6E/CzH+YwnU3T6Y76uBQIKg3+gIGTvPduqyvQwQQ5FxKDuPBw==",
1726
- "signed_at": "2026-05-21T13:36:49.130Z"
1726
+ "signed_at": "2026-05-21T14:14:25.611Z"
1727
1727
  },
1728
1728
  {
1729
1729
  "name": "api-security",
@@ -1792,7 +1792,7 @@
1792
1792
  "d3fend_refs": [],
1793
1793
  "last_threat_review": "2026-05-11",
1794
1794
  "signature": "BmCRCestWqr55+fCynEhtAl5NWLT+xLTkpwS0Icp3SaoZOw/ce3Y6TtqjHRSKn4CBJq7YDiLRWxmhO3MStvOAA==",
1795
- "signed_at": "2026-05-21T13:36:49.130Z"
1795
+ "signed_at": "2026-05-21T14:14:25.611Z"
1796
1796
  },
1797
1797
  {
1798
1798
  "name": "cloud-security",
@@ -1873,7 +1873,7 @@
1873
1873
  "CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
1874
1874
  ],
1875
1875
  "signature": "/DV3pmZwrRySrk1OCbyI+0BQESacjupJfUX3eC2NGtXuYOBro0vndIP+z27heFxumnjU3a9sfla7/U9X+pqnDw==",
1876
- "signed_at": "2026-05-21T13:36:49.131Z"
1876
+ "signed_at": "2026-05-21T14:14:25.612Z"
1877
1877
  },
1878
1878
  {
1879
1879
  "name": "container-runtime-security",
@@ -1935,7 +1935,7 @@
1935
1935
  "d3fend_refs": [],
1936
1936
  "last_threat_review": "2026-05-11",
1937
1937
  "signature": "E2UGSf9ATyYgzBr8uM/0ubOUmDqo1jVA7f9mVxv6LHfWGCNuQNXDyuNou9VAmUCeeXEeUYIi3AFjXkJqpOkxDA==",
1938
- "signed_at": "2026-05-21T13:36:49.131Z"
1938
+ "signed_at": "2026-05-21T14:14:25.612Z"
1939
1939
  },
1940
1940
  {
1941
1941
  "name": "mlops-security",
@@ -2006,7 +2006,7 @@
2006
2006
  "MITRE ATLAS v5.6.0 (released February 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: ATLAS v5.5 / v6.0 — track next-cadence updates to agentic-AI TTPs and MLOps-pipeline-specific techniques"
2007
2007
  ],
2008
2008
  "signature": "BGNE6ZQWBA1LmsUFe8tU0L67iGDSrFqiuqaZD2f1KqfcyqqzQfMs9PWNHFzxxaJmXeKlm87eU8lgELF0bX+RBA==",
2009
- "signed_at": "2026-05-21T13:36:49.131Z"
2009
+ "signed_at": "2026-05-21T14:14:25.613Z"
2010
2010
  },
2011
2011
  {
2012
2012
  "name": "incident-response-playbook",
@@ -2068,7 +2068,7 @@
2068
2068
  "NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
2069
2069
  ],
2070
2070
  "signature": "FkZQerh3VHVJAwIcCktDyMRh5KE2+Em/i0ek8zEz7JG/PXtQx8ujHWTh3VjZbOLhPNtdB2qxgXOIAYIofaVOAQ==",
2071
- "signed_at": "2026-05-21T13:36:49.132Z"
2071
+ "signed_at": "2026-05-21T14:14:25.613Z"
2072
2072
  },
2073
2073
  {
2074
2074
  "name": "ransomware-response",
@@ -2148,7 +2148,7 @@
2148
2148
  ],
2149
2149
  "last_threat_review": "2026-05-15",
2150
2150
  "signature": "n3UToNuN3A1HgLvcuqmIx8vrZY71+r/79waK92jG+rSX4uYOzkmxMUpROrE5K9bDwMezNBHdjWv8Uul6zugyDQ==",
2151
- "signed_at": "2026-05-21T13:36:49.132Z"
2151
+ "signed_at": "2026-05-21T14:14:25.614Z"
2152
2152
  },
2153
2153
  {
2154
2154
  "name": "email-security-anti-phishing",
@@ -2201,7 +2201,7 @@
2201
2201
  "d3fend_refs": [],
2202
2202
  "last_threat_review": "2026-05-11",
2203
2203
  "signature": "rK+WnuS+9tqEABmwc0jO/PEmxcLjG1/tmUb897HsClQeKzf+TQOlwBE+OsbtuKxpjYNwur62Xxs3TxObkwm8Cw==",
2204
- "signed_at": "2026-05-21T13:36:49.132Z"
2204
+ "signed_at": "2026-05-21T14:14:25.614Z"
2205
2205
  },
2206
2206
  {
2207
2207
  "name": "age-gates-child-safety",
@@ -2269,7 +2269,7 @@
2269
2269
  "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"
2270
2270
  ],
2271
2271
  "signature": "+OO0RhQ303RJV7kaH38IuZpLeQbapep6Ds4Re/WEZu0FHBwKSlwvF7jbtP7KQ57xldJYn/xZm2jaszyOacMfDg==",
2272
- "signed_at": "2026-05-21T13:36:49.133Z"
2272
+ "signed_at": "2026-05-21T14:14:25.615Z"
2273
2273
  },
2274
2274
  {
2275
2275
  "name": "cloud-iam-incident",
@@ -2349,7 +2349,7 @@
2349
2349
  ],
2350
2350
  "last_threat_review": "2026-05-15",
2351
2351
  "signature": "e/kij7GtKaytROyIj7V5RH+FC9WtmVFzrmG2kIlNDNn29ep/CRNlIQKwXLpzo/81AIf634pmdr1qy/+vwIuUDA==",
2352
- "signed_at": "2026-05-21T13:36:49.133Z"
2352
+ "signed_at": "2026-05-21T14:14:25.615Z"
2353
2353
  },
2354
2354
  {
2355
2355
  "name": "idp-incident-response",
@@ -2430,11 +2430,11 @@
2430
2430
  ],
2431
2431
  "last_threat_review": "2026-05-15",
2432
2432
  "signature": "ew9Kglc9fAZzbn0ZIfGP7WSK/j4eV2VhSvpy+s5bEfNEVYIMa2kZjnGBapgUsyGDLes9H9K2ovjQyX17+GKiBw==",
2433
- "signed_at": "2026-05-21T13:36:49.133Z"
2433
+ "signed_at": "2026-05-21T14:14:25.615Z"
2434
2434
  }
2435
2435
  ],
2436
2436
  "manifest_signature": {
2437
2437
  "algorithm": "Ed25519",
2438
- "signature_base64": "fBH0Bn3i2Zd9wSqpmXxFtFMNP/LLblr6K7GqjP5S9M7bObYHCPe9n/+kkPaKFmD8JeFRe5aupw2v42LEY/jQAg=="
2438
+ "signature_base64": "yzoa4nQKqqtR5YIwboVmjqBZe16FBPqLjiMLIlnOfPwls5DkBUnZVrClvq04gc7nWDyzxrSkj0ZDhT3WkMc7CA=="
2439
2439
  }
2440
2440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.13.43",
3
+ "version": "0.13.44",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 10 catalogs (312 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 7476 RFCs), 34 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:84eca508-82ac-48fd-a76a-8da0f63e8cd0",
4
+ "serialNumber": "urn:uuid:b68630e1-862f-416e-9970-9a04675a7b54",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2096-09-01T08:34:16.000Z",
7
+ "timestamp": "2123-01-15T16:20:49.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.13.43"
12
+ "version": "0.13.44"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.43",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.44",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.13.43",
19
+ "version": "0.13.44",
20
20
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 10 catalogs (312 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 7476 RFCs), 34 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.13.43",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.44",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "ccd1718b7ea2dde128a031519a09bdea00d381b3a47b615f6e48f743ba584d79"
32
+ "content": "06a310132e91fa95c1f50c6e78a4f2f2916cc22f46b49eb58b8644d2d27c49ef"
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.13.43"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.44"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -86,11 +86,11 @@
86
86
  "hashes": [
87
87
  {
88
88
  "alg": "SHA-256",
89
- "content": "746ea19ed2019d0b1b838f4a8f2a58ee2b23c51869d52ff28ef5cfad65352d27"
89
+ "content": "76ce2fe9bafe6488775f69afae5fce015101e38b6c61c8978a196c26c6f3a63c"
90
90
  },
91
91
  {
92
92
  "alg": "SHA3-512",
93
- "content": "c21665a68dd2c69befeec2abef4e884a1337304c46ac1e9e838428cfbccfb5fc80bde52654ad9b6ccb309af97d86903f0c8a17eb8770038b3af6552b66dd4923"
93
+ "content": "5b1624ea5458aad9470b1d0696f9307b8ab964e818966b5590fd7437412e02fd88b897af0f4cc1d734590edff26c7f1ffc87597c81d82f4dcc6ee18e66b010a0"
94
94
  }
95
95
  ]
96
96
  },
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "1e83723db6d7acb8b6b331125e0beeb40632bde827672734274b504feca480c2"
119
+ "content": "3268d2f2fe6cf4ee67c0c07df0daffc94499c37c5dd2d1225d7a853af7e70808"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "3ccd524f1dbf0d26089d7b9475a15168a387eb76deafb25dc5b93ceec27a30addd30cf59046f1069a712ff07cd817a223de2b356e070f1625a5c357db0a9ed0b"
123
+ "content": "35a0de028e257c7ff3541ef4d4015e7ebe0e4c89b772348e7fc6908203ef94b97cdf1eca7981ebdaa7396b791e86de1edfa71d1183750d1ae8138e05d52b56e3"
124
124
  }
125
125
  ]
126
126
  },
@@ -889,6 +889,21 @@
889
889
  }
890
890
  ]
891
891
  },
892
+ {
893
+ "bom-ref": "file:lib/collectors/cicd-pipeline-compromise.js",
894
+ "type": "file",
895
+ "name": "lib/collectors/cicd-pipeline-compromise.js",
896
+ "hashes": [
897
+ {
898
+ "alg": "SHA-256",
899
+ "content": "132922cdbe7cb211fef1c3f4e4dab9b167ffaebb14483ba2d63652fbee15d200"
900
+ },
901
+ {
902
+ "alg": "SHA3-512",
903
+ "content": "2d8a56dbad0c5828008fcbdf861db9d28e7a07fef65e0f7c9c663814bda49facc355221d45778155247e49febec4a73f6a62936d9d74feefb7a0ee0905fca744"
904
+ }
905
+ ]
906
+ },
892
907
  {
893
908
  "bom-ref": "file:lib/collectors/containers.js",
894
909
  "type": "file",
@@ -1646,11 +1661,11 @@
1646
1661
  "hashes": [
1647
1662
  {
1648
1663
  "alg": "SHA-256",
1649
- "content": "b56fa964197403bfaeba55f1ae97c663bf447852a6fc0e418965a8faf6eb3387"
1664
+ "content": "eee433070d0e766d2ea4810837835afd85d8a36b8307c3b4d66051b083c35f0a"
1650
1665
  },
1651
1666
  {
1652
1667
  "alg": "SHA3-512",
1653
- "content": "7bb61363bcfa3d898bef149c9707ac69c4728b4ac2f826c7f21382519b2c9c268633e8e69c5a062f1ef228d8094471d87981043143cc4f1181acc399de6f2992"
1668
+ "content": "30ef6fac362e41a84b9828fe29664016259352b56aad18d79c14ef21944473f303fc2aa4904ad8e2bb39e25490fd0ee1c95335e627237a14ec4cdd9bbdb581c4"
1654
1669
  }
1655
1670
  ]
1656
1671
  },