@blamejs/exceptd-skills 0.13.37 → 0.13.38

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. Six 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`); 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. Seven 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`); 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.38 — 2026-05-20
4
+
5
+ Seventh reference collector.
6
+
7
+ ### Features
8
+
9
+ - **`lib/collectors/cred-stores.js`** — inspects local credential carriers (`~/.aws/credentials`, `~/.kube/config`, `~/.docker/config.json`, `~/.npmrc`, `~/.pypirc`, `~/.config/gcloud/application_default_credentials.json`, plus project-level `.npmrc` / `.pypirc` under cwd). Flips seven deterministic indicators from the `cred-stores` playbook: `aws-static-key-present` (any `aws_access_key_id` profile with no `sso_session` / `credential_process` / `role_arn` sibling), `kube-static-token` (any `users[].user.token` field non-null with no `exec:` provider on the same user), `gcp-service-account-json-adc` (`type: "service_account"` in `application_default_credentials.json`), `docker-cleartext-auth` (any `auths[<registry>].auth` field with no `credsStore` / `credHelpers[<registry>]` covering it), `npm-pat-present` (`:_authToken=npm_[A-Za-z0-9]{36,}` in either home or project `.npmrc`), `pypi-token-present` (`password = pypi-[A-Za-z0-9_-]{40,}` in either home or project `.pypirc`), `credentials-file-bad-perms` (POSIX only — any of the listed carriers with mode != 0600). The `aws-sso-cache`, `gcloud-credentials` (SQLite path), `gpg-keys`, `ssh-keys-inventory`, `ssh-config`, `keychain-inventory` artifacts are explicitly marked `captured: false` with a `reason` so the runner records partial-evidence coverage — `ssh-key-rsa-short-bits` / `ssh-key-old` / `gpg-key-old-or-weak` / `all-stores-empty-or-federated` need ssh-keygen / gpg / keychain access that would force a child_process out of the stdlib-only collector contract; left to operator-supplied evidence.
10
+
3
11
  ## 0.13.37 — 2026-05-20
4
12
 
5
13
  Sixth reference collector.
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-21T03:49:45.015Z",
3
+ "generated_at": "2026-05-21T04:46:54.898Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "5eeb28b7edf5ebf368b201b1988d0b6ccbb7ca838ee7fe45e63a878e7d3650f9",
7
+ "manifest.json": "5fa40751e228263289b76f7f5a4803e967fb9f45268b61a6783f23a8ad0c5b96",
8
8
  "data/atlas-ttps.json": "d296c1d3e71807c9279b731f047e57796e85137f186586743a8cdad214b408f9",
9
9
  "data/attack-techniques.json": "49b6010b317edd219def135171ea8f3b1bbf1e00e9c5a08bf7237215ff54e2c3",
10
10
  "data/cve-catalog.json": "a09c83af3f9679a7ea73935726a1ff9de2cab94b4ab6321fc017fc147747d7c3",
@@ -0,0 +1,471 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * lib/collectors/cred-stores.js
5
+ *
6
+ * Companion collector for the `cred-stores` playbook. Inspects local
7
+ * credential carriers (~/.aws/credentials, ~/.kube/config, ~/.docker/
8
+ * config.json, ~/.npmrc, ~/.pypirc, ~/.config/gcloud/application_
9
+ * default_credentials.json, project-level .npmrc / .pypirc), and
10
+ * flips signal_overrides for the deterministic indicators. Defers
11
+ * non-deterministic indicators (ssh-key-rsa-short-bits, ssh-key-old,
12
+ * gpg-key-old-or-weak, all-stores-empty-or-federated) so the runner
13
+ * returns inconclusive rather than a forced miss.
14
+ *
15
+ * Scope: $HOME credential dotfiles + project-level .npmrc / .pypirc
16
+ * under cwd. Posix-mode-bits indicators are skipped on win32 (ACL
17
+ * audit out of scope).
18
+ *
19
+ * Interface: see lib/collectors/README.md
20
+ */
21
+
22
+ const fs = require("node:fs");
23
+ const path = require("node:path");
24
+ const os = require("node:os");
25
+
26
+ const COLLECTOR_ID = "cred-stores";
27
+
28
+ function readSafe(full, max = 512 * 1024) {
29
+ try {
30
+ const s = fs.statSync(full);
31
+ if (s.size > max) return null;
32
+ return fs.readFileSync(full, "utf8");
33
+ } catch { return null; }
34
+ }
35
+
36
+ function statSafe(full) {
37
+ try { return fs.statSync(full); } catch { return null; }
38
+ }
39
+
40
+ function modeOf(full) {
41
+ const s = statSafe(full);
42
+ if (!s) return null;
43
+ return s.mode & 0o777;
44
+ }
45
+
46
+ function fileExists(full) {
47
+ try { return fs.statSync(full).isFile(); } catch { return false; }
48
+ }
49
+
50
+ // AWS credentials INI: any [profile] block carrying
51
+ // `aws_access_key_id` AND no `sso_session` / `credential_process`.
52
+ function parseAwsCredentials(content) {
53
+ if (!content) return { staticProfiles: [], federatedProfiles: [] };
54
+ const lines = content.split(/\r?\n/);
55
+ const profiles = {};
56
+ let current = null;
57
+ for (const raw of lines) {
58
+ const line = raw.replace(/[#;].*$/, "").trim();
59
+ if (!line) continue;
60
+ const sec = line.match(/^\[([^\]]+)\]$/);
61
+ if (sec) {
62
+ current = sec[1].trim();
63
+ profiles[current] = {};
64
+ continue;
65
+ }
66
+ if (!current) continue;
67
+ const kv = line.match(/^([A-Za-z0-9_-]+)\s*=\s*(.*)$/);
68
+ if (!kv) continue;
69
+ profiles[current][kv[1].trim().toLowerCase()] = kv[2].trim();
70
+ }
71
+ const staticProfiles = [];
72
+ const federatedProfiles = [];
73
+ for (const [name, kv] of Object.entries(profiles)) {
74
+ const hasKey = !!kv["aws_access_key_id"];
75
+ const hasFederation = !!(kv["sso_session"] || kv["credential_process"] || kv["role_arn"]);
76
+ if (hasKey && !hasFederation) staticProfiles.push(name);
77
+ if (hasFederation) federatedProfiles.push(name);
78
+ }
79
+ return { staticProfiles, federatedProfiles };
80
+ }
81
+
82
+ // kubeconfig: users[].user.token field present (non-empty) with no
83
+ // users[].user.exec sibling. Use a tolerant line-based scan rather
84
+ // than pulling a YAML parser into the stdlib-only contract.
85
+ function parseKubeConfig(content) {
86
+ if (!content) return { hasStaticToken: false, hasExec: false };
87
+ // Find every users: block + each `- name: ...` user entry and
88
+ // its sub-keys. The kubeconfig schema is regular enough that a
89
+ // line-window scan is reliable.
90
+ const lines = content.split(/\r?\n/);
91
+ let inUsers = false;
92
+ let userIndent = -1;
93
+ let blocks = [];
94
+ let buf = [];
95
+ let blockIndent = -1;
96
+ for (const raw of lines) {
97
+ if (/^users:\s*$/.test(raw)) { inUsers = true; userIndent = -1; continue; }
98
+ if (inUsers) {
99
+ const m = raw.match(/^(\s*)-\s+name:/);
100
+ if (m) {
101
+ if (buf.length) { blocks.push(buf.join("\n")); buf = []; }
102
+ userIndent = m[1].length;
103
+ blockIndent = userIndent;
104
+ buf.push(raw);
105
+ continue;
106
+ }
107
+ if (buf.length) {
108
+ // If we leave the users list (dedent), close current block.
109
+ if (raw.trim() === "" || /^\S/.test(raw)) {
110
+ if (/^\S/.test(raw) && !/^users:/.test(raw)) {
111
+ blocks.push(buf.join("\n")); buf = [];
112
+ inUsers = false;
113
+ continue;
114
+ }
115
+ }
116
+ buf.push(raw);
117
+ }
118
+ }
119
+ }
120
+ if (buf.length) blocks.push(buf.join("\n"));
121
+
122
+ // Match `token:` / `token-data:` ONLY at the user-block indent level
123
+ // (i.e. inside `user:`). Auth-provider blocks carry sub-keys like
124
+ // `access-token`, `id-token`, `refresh-token` which are dynamic /
125
+ // cached tokens, not static-credential evidence. Use a line-prefix
126
+ // anchor + auth-provider-vs-user proximity check to refuse those.
127
+ let hasStaticToken = false;
128
+ let hasExec = false;
129
+ const userKvRe = /^(\s+)(token|token-data)\s*:\s*(\S[^\n]*)/gm;
130
+ for (const block of blocks) {
131
+ const execPresent = /^\s+exec\s*:\s*(?:\n|$)/m.test(block);
132
+ if (execPresent) hasExec = true;
133
+ let blockHasStatic = false;
134
+ for (const m of block.matchAll(userKvRe)) {
135
+ const upto = block.slice(0, m.index);
136
+ const lastUserAt = upto.lastIndexOf("\n user:");
137
+ const lastAuthProviderAt = upto.lastIndexOf("auth-provider:");
138
+ // Reject when the closest enclosing key is auth-provider rather
139
+ // than user — those are dynamic tokens, not static credentials.
140
+ if (lastAuthProviderAt > lastUserAt) continue;
141
+ const value = m[3];
142
+ if (!value || value.startsWith("null")) continue;
143
+ blockHasStatic = true;
144
+ break;
145
+ }
146
+ if (blockHasStatic && !execPresent) hasStaticToken = true;
147
+ }
148
+ return { hasStaticToken, hasExec };
149
+ }
150
+
151
+ function parseGcloudAdc(content) {
152
+ if (!content) return { hasServiceAccount: false };
153
+ try {
154
+ const j = JSON.parse(content);
155
+ return { hasServiceAccount: j?.type === "service_account" };
156
+ } catch {
157
+ return { hasServiceAccount: false };
158
+ }
159
+ }
160
+
161
+ function parseDockerConfig(content) {
162
+ if (!content) return { hasCleartext: false, hasCredHelper: false, registriesWithCleartext: [] };
163
+ let j;
164
+ try { j = JSON.parse(content); } catch { return { hasCleartext: false, hasCredHelper: false, registriesWithCleartext: [] }; }
165
+ const auths = (j && typeof j.auths === "object") ? j.auths : {};
166
+ const credHelpers = (j && typeof j.credHelpers === "object") ? j.credHelpers : {};
167
+ const credsStore = typeof j?.credsStore === "string" ? j.credsStore : "";
168
+ const registriesWithCleartext = [];
169
+ for (const [registry, entry] of Object.entries(auths)) {
170
+ if (!entry || typeof entry !== "object") continue;
171
+ const hasAuth = typeof entry.auth === "string" && entry.auth.length > 0;
172
+ if (!hasAuth) continue;
173
+ if (credsStore || credHelpers[registry]) continue;
174
+ registriesWithCleartext.push(registry);
175
+ }
176
+ return {
177
+ hasCleartext: registriesWithCleartext.length > 0,
178
+ hasCredHelper: !!credsStore || Object.keys(credHelpers).length > 0,
179
+ registriesWithCleartext,
180
+ };
181
+ }
182
+
183
+ const NPM_PAT_RE = /:_authToken\s*=\s*npm_[A-Za-z0-9]{36,}/;
184
+ const PYPI_TOKEN_RE = /password\s*=\s*pypi-[A-Za-z0-9_-]{40,}/;
185
+
186
+ function collect({ cwd = process.cwd(), env = process.env, args = {} } = {}) {
187
+ const errors = [];
188
+ const startTime = Date.now();
189
+ const root = path.resolve(cwd);
190
+ const home = (env && env.HOME) || (env && env.USERPROFILE) || os.homedir();
191
+ const isPosix = process.platform !== "win32";
192
+
193
+ const carriers = {
194
+ "aws-credentials": path.join(home, ".aws", "credentials"),
195
+ "aws-config": path.join(home, ".aws", "config"),
196
+ "kube-config": path.join(home, ".kube", "config"),
197
+ "docker-config": path.join(home, ".docker", "config.json"),
198
+ "npmrc-home": path.join(home, ".npmrc"),
199
+ "pypirc-home": path.join(home, ".pypirc"),
200
+ "gcloud-adc": path.join(home, ".config", "gcloud", "application_default_credentials.json"),
201
+ "npmrc-project": path.join(root, ".npmrc"),
202
+ "pypirc-project": path.join(root, ".pypirc"),
203
+ };
204
+ const ssoCacheDir = path.join(home, ".aws", "sso", "cache");
205
+
206
+ const presence = {};
207
+ for (const [id, p] of Object.entries(carriers)) presence[id] = fileExists(p);
208
+
209
+ // Read carriers we care about.
210
+ const awsCredsContent = presence["aws-credentials"] ? readSafe(carriers["aws-credentials"]) : null;
211
+ const awsCfgContent = presence["aws-config"] ? readSafe(carriers["aws-config"]) : null;
212
+ const kubeContent = presence["kube-config"] ? readSafe(carriers["kube-config"]) : null;
213
+ const dockerContent = presence["docker-config"] ? readSafe(carriers["docker-config"]) : null;
214
+ const npmrcHomeContent = presence["npmrc-home"] ? readSafe(carriers["npmrc-home"]) : null;
215
+ const pypirHomeContent = presence["pypirc-home"] ? readSafe(carriers["pypirc-home"]) : null;
216
+ const npmrcProjContent = presence["npmrc-project"] ? readSafe(carriers["npmrc-project"]) : null;
217
+ const pypirProjContent = presence["pypirc-project"] ? readSafe(carriers["pypirc-project"]) : null;
218
+ const gcloudAdcContent = presence["gcloud-adc"] ? readSafe(carriers["gcloud-adc"]) : null;
219
+
220
+ // Indicator predicates.
221
+ const awsCredsParsed = parseAwsCredentials(awsCredsContent);
222
+ const awsCfgParsed = parseAwsCredentials(awsCfgContent);
223
+ const ssoCacheFiles = (() => {
224
+ try { return fs.readdirSync(ssoCacheDir).filter(f => f.endsWith(".json")); }
225
+ catch { return []; }
226
+ })();
227
+ // aws-static-key-present: any AKIA* key with no federation. Apply
228
+ // the playbook's catalogued FP[0] (AWS-published doc-fixture key)
229
+ // and FP[2] (break-glass profile-name pattern) directly in the
230
+ // collector — they're deterministic and the collector has the
231
+ // evidence locally. FP[1] requires `aws sts get-caller-identity`
232
+ // which is out of stdlib scope, so the collector cannot attest it;
233
+ // the runner downgrades hit → inconclusive with that one
234
+ // unsatisfied, which is the honest outcome.
235
+ const AWS_DOC_FIXTURE_KEY = "AKIAIOSFODNN7EXAMPLE";
236
+ const realAwsProfiles = awsCredsParsed.staticProfiles.filter(p => {
237
+ // Parse the raw INI again for this profile's key value + name.
238
+ // For doc-fixture demotion (FP[0]) we look up the key value; for
239
+ // break-glass demotion (FP[2]) we check the profile name pattern.
240
+ const block = (awsCredsContent || "").split(/^\[/m).find(b => b.startsWith(p + "]"));
241
+ if (!block) return true;
242
+ if (block.includes(AWS_DOC_FIXTURE_KEY)) return false; // FP[0]
243
+ if (/^breakglass-/i.test(p) || /^break-glass-/i.test(p)) return false; // FP[2]
244
+ return true;
245
+ });
246
+ const awsStaticKey = realAwsProfiles.length > 0;
247
+
248
+ const kubeParsed = parseKubeConfig(kubeContent);
249
+ const gcloudParsed = parseGcloudAdc(gcloudAdcContent);
250
+ const dockerParsed = parseDockerConfig(dockerContent);
251
+
252
+ // docker-cleartext-auth FP checks (per playbook):
253
+ // FP[0] — vendor-token user pattern (decoded `user:pass`) is
254
+ // `<token>` / `AWS` / `oauth2accesstoken` / a zero-UUID;
255
+ // treat as a deliberately published convention, demote.
256
+ // FP[1] — local-only registry (loopback IP, *.local, *.svc.
257
+ // cluster.local, kind.local) on a dev workstation, demote.
258
+ // FP[2] — global credsStore overrides per-registry omission —
259
+ // the collector already accounts for this via
260
+ // parseDockerConfig.hasCredHelper.
261
+ const VENDOR_TOKEN_USERS = new Set([
262
+ "<token>", "AWS", "oauth2accesstoken",
263
+ "00000000-0000-0000-0000-000000000000",
264
+ ]);
265
+ function isLocalOnlyRegistry(registry) {
266
+ return /^(?:127\.0\.0\.1|localhost)(?::\d+)?$/.test(registry) ||
267
+ /\.local(?::\d+)?$/.test(registry) ||
268
+ /\.svc\.cluster\.local(?::\d+)?$/.test(registry) ||
269
+ /^kind\.local(?::\d+)?$/.test(registry);
270
+ }
271
+ function dockerAuthDemoted(registry, entry) {
272
+ // FP[1]: local-only registry → demote.
273
+ if (isLocalOnlyRegistry(registry)) return true;
274
+ // FP[0]: decode `auth` base64 and check for vendor-token user.
275
+ try {
276
+ const decoded = Buffer.from(entry.auth, "base64").toString("utf8");
277
+ const [user] = decoded.split(":", 1);
278
+ if (VENDOR_TOKEN_USERS.has(user)) return true;
279
+ } catch { /* unparseable, treat as real */ }
280
+ return false;
281
+ }
282
+ const realCleartextRegistries = dockerParsed.registriesWithCleartext.filter(reg => {
283
+ const entry = (() => { try { return JSON.parse(dockerContent || "{}").auths[reg]; } catch { return null; } })();
284
+ if (!entry) return false;
285
+ return !dockerAuthDemoted(reg, entry);
286
+ });
287
+ const dockerCleartext = realCleartextRegistries.length > 0;
288
+
289
+ const npmPatPresent =
290
+ (npmrcHomeContent && NPM_PAT_RE.test(npmrcHomeContent)) ||
291
+ (npmrcProjContent && NPM_PAT_RE.test(npmrcProjContent));
292
+ const pypiTokenPresent =
293
+ (pypirHomeContent && PYPI_TOKEN_RE.test(pypirHomeContent)) ||
294
+ (pypirProjContent && PYPI_TOKEN_RE.test(pypirProjContent));
295
+
296
+ // credentials-file-bad-perms: POSIX only. Any of the listed
297
+ // carriers with mode != 0600. Per playbook the indicator covers
298
+ // `~/.config/gcloud/*` too, so include the gcloud ADC file (and
299
+ // its parent dir mode != 0700 expectation per the spec).
300
+ let credsFileBadPerms;
301
+ const permViolations = [];
302
+ if (isPosix) {
303
+ const permTargets = [
304
+ ["aws-credentials", carriers["aws-credentials"], 0o600],
305
+ ["aws-config", carriers["aws-config"], 0o600],
306
+ ["kube-config", carriers["kube-config"], 0o600],
307
+ ["docker-config", carriers["docker-config"], 0o600],
308
+ ["npmrc-home", carriers["npmrc-home"], 0o600],
309
+ ["pypirc-home", carriers["pypirc-home"], 0o600],
310
+ ["gcloud-adc", carriers["gcloud-adc"], 0o600],
311
+ ];
312
+ for (const [id, p, expectedMode] of permTargets) {
313
+ if (!presence[id]) continue;
314
+ // FP[1]: 0-byte placeholder OR symlink to broker socket / tmpfs —
315
+ // mode bits don't carry the same blast radius. Skip these.
316
+ let lstat;
317
+ try { lstat = fs.lstatSync(p); } catch { continue; }
318
+ if (lstat.size === 0) continue;
319
+ if (lstat.isSymbolicLink()) continue;
320
+ const m = modeOf(p);
321
+ if (m == null) continue;
322
+ if (m !== expectedMode) {
323
+ permViolations.push({ id, mode_octal: "0" + m.toString(8) });
324
+ }
325
+ }
326
+ // Also check the gcloud directory itself (expected 0700 per spec).
327
+ const gcloudDir = path.join(home, ".config", "gcloud");
328
+ try {
329
+ const gs = fs.statSync(gcloudDir);
330
+ if (gs.isDirectory()) {
331
+ const dm = gs.mode & 0o777;
332
+ if (dm !== 0o700) {
333
+ permViolations.push({ id: "gcloud-dir", mode_octal: "0" + dm.toString(8) });
334
+ }
335
+ }
336
+ } catch { /* not present, no violation */ }
337
+ credsFileBadPerms = permViolations.length > 0 ? "hit" : "miss";
338
+ }
339
+
340
+ const signal_overrides = {
341
+ "aws-static-key-present": awsStaticKey ? "hit" : "miss",
342
+ "kube-static-token": kubeParsed.hasStaticToken ? "hit" : "miss",
343
+ "gcp-service-account-json-adc": gcloudParsed.hasServiceAccount ? "hit" : "miss",
344
+ "docker-cleartext-auth": dockerCleartext ? "hit" : "miss",
345
+ "npm-pat-present": npmPatPresent ? "hit" : "miss",
346
+ "pypi-token-present": pypiTokenPresent ? "hit" : "miss",
347
+ };
348
+ if (credsFileBadPerms !== undefined) {
349
+ signal_overrides["credentials-file-bad-perms"] = credsFileBadPerms;
350
+ }
351
+
352
+ // Per-indicator __fp_checks attestation. The runner gates a 'hit'
353
+ // verdict on false_positive_checks_required[] entries; an
354
+ // unsatisfied check downgrades to 'inconclusive'. Attest exactly
355
+ // the checks the collector itself ran (don't attest network /
356
+ // operator-judgement checks). Use the index-keyed form because
357
+ // false_positive_checks_required entries are free-text prose, not
358
+ // ids — the index is the stable cross-reference.
359
+ //
360
+ // aws-static-key-present:
361
+ // [0] doc-fixture demotion (AKIAIOSFODNN7EXAMPLE) — DONE
362
+ // [1] live-key sts check — NOT DONE (needs network)
363
+ // [2] break-glass profile-name pattern — DONE
364
+ //
365
+ // docker-cleartext-auth:
366
+ // [0] vendor-token user pattern — DONE
367
+ // [1] local-only registry — DONE
368
+ // [2] global credsStore — DONE
369
+ //
370
+ // credentials-file-bad-perms:
371
+ // [0] Windows / WSL skip — DONE (POSIX guard)
372
+ // [1] 0-byte / symlink skip — DONE
373
+ // [2] ACL-by-design (operator interview) — NOT DONE
374
+ if (awsStaticKey) {
375
+ signal_overrides["aws-static-key-present__fp_checks"] = { "0": true, "2": true };
376
+ }
377
+ if (dockerCleartext) {
378
+ signal_overrides["docker-cleartext-auth__fp_checks"] = { "0": true, "1": true, "2": true };
379
+ }
380
+ if (credsFileBadPerms === "hit") {
381
+ signal_overrides["credentials-file-bad-perms__fp_checks"] = { "0": true, "1": true };
382
+ }
383
+
384
+ // Artifact-level captures (one entry per artifact id in
385
+ // data/playbooks/cred-stores.json look.artifacts[]). We only
386
+ // populate the ones the collector actually reads; the rest are
387
+ // marked captured=false with a "reason" so the runner records
388
+ // partial-evidence coverage rather than a phantom miss.
389
+ const artifacts = {
390
+ "aws-credentials": presence["aws-credentials"]
391
+ ? { value: `present (${awsCredsParsed.staticProfiles.length} static profile(s), ${awsCredsParsed.federatedProfiles.length} federated)`, captured: true }
392
+ : { value: "absent", captured: true },
393
+ "aws-sso-cache": {
394
+ value: ssoCacheFiles.length > 0 ? `${ssoCacheFiles.length} cached SSO session(s)` : "empty",
395
+ captured: true,
396
+ },
397
+ "kube-config": presence["kube-config"]
398
+ ? { value: `present; static_token=${kubeParsed.hasStaticToken}; exec_provider=${kubeParsed.hasExec}`, captured: true }
399
+ : { value: "absent", captured: true },
400
+ "gcloud-credentials": presence["gcloud-adc"]
401
+ ? { value: `application_default_credentials.json present; service_account=${gcloudParsed.hasServiceAccount}`, captured: true }
402
+ : { value: "absent", captured: true, reason: "application_default_credentials.json not found; credentials.db SQLite inspection skipped (no stdlib SQLite reader)" },
403
+ "docker-config": presence["docker-config"]
404
+ ? { value: `auths_present=${Object.keys(dockerParsed.registriesWithCleartext).length > 0 || dockerParsed.hasCredHelper}; cleartext_registries=[${dockerParsed.registriesWithCleartext.join(", ")}]; cred_helper=${dockerParsed.hasCredHelper}`, captured: true }
405
+ : { value: "absent", captured: true },
406
+ "npmrc": {
407
+ value: [
408
+ presence["npmrc-home"] ? "~/.npmrc=present" : "~/.npmrc=absent",
409
+ presence["npmrc-project"] ? "project .npmrc=present" : "project .npmrc=absent",
410
+ `_authToken_present=${!!npmPatPresent}`,
411
+ ].join("; "),
412
+ captured: true,
413
+ },
414
+ "pypirc": {
415
+ value: [
416
+ presence["pypirc-home"] ? "~/.pypirc=present" : "~/.pypirc=absent",
417
+ presence["pypirc-project"] ? "project .pypirc=present" : "project .pypirc=absent",
418
+ `token_present=${!!pypiTokenPresent}`,
419
+ ].join("; "),
420
+ captured: true,
421
+ },
422
+ "gpg-keys": {
423
+ value: "skipped — gpg CLI invocation deferred to operator/AI evidence",
424
+ captured: false,
425
+ reason: "deterministic gpg-key-old-or-weak parsing requires gpg --list-secret-keys; left to operator-supplied evidence",
426
+ },
427
+ "ssh-keys-inventory": {
428
+ value: "skipped — ssh-keygen invocation deferred to operator/AI evidence",
429
+ captured: false,
430
+ reason: "ssh-key-rsa-short-bits / ssh-key-old need ssh-keygen output + mtime correlation with ssh-config; left to operator-supplied evidence",
431
+ },
432
+ "ssh-config": {
433
+ value: "skipped — ssh-config inspection deferred to operator/AI evidence",
434
+ captured: false,
435
+ reason: "ssh-config CertificateFile / ProxyJump correlation is judgement-shaped; collector leaves it to operator",
436
+ },
437
+ "keychain-inventory": {
438
+ value: "skipped — host keychain access deferred to operator/AI evidence",
439
+ captured: false,
440
+ reason: "secret-tool / security dump-keychain require interactive auth or platform-specific binaries; out of stdlib collector scope",
441
+ },
442
+ };
443
+
444
+ if (permViolations.length > 0) {
445
+ artifacts["credentials-file-perms"] = {
446
+ value: permViolations.map(v => `${v.id} (${v.mode_octal})`).join("; "),
447
+ captured: true,
448
+ };
449
+ }
450
+
451
+ return {
452
+ precondition_checks: {
453
+ "home-dir-readable": fs.existsSync(home),
454
+ },
455
+ artifacts,
456
+ signal_overrides,
457
+ collector_meta: {
458
+ collector_id: COLLECTOR_ID,
459
+ collector_version: "2026-05-20",
460
+ platform: process.platform,
461
+ captured_at: new Date().toISOString(),
462
+ cwd: root,
463
+ home,
464
+ duration_ms: Date.now() - startTime,
465
+ carriers_present: Object.entries(presence).filter(([_, v]) => v).map(([k]) => k),
466
+ },
467
+ collector_errors: errors,
468
+ };
469
+ }
470
+
471
+ 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.37",
3
+ "version": "0.13.38",
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-21T03:46:47.730Z",
56
+ "signed_at": "2026-05-21T04:45:53.157Z",
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-21T03:46:47.731Z",
120
+ "signed_at": "2026-05-21T04:45:53.160Z",
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-21T03:46:47.732Z",
183
+ "signed_at": "2026-05-21T04:45:53.161Z",
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-21T03:46:47.733Z"
229
+ "signed_at": "2026-05-21T04:45:53.161Z"
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-21T03:46:47.733Z"
260
+ "signed_at": "2026-05-21T04:45:53.162Z"
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-21T03:46:47.734Z"
289
+ "signed_at": "2026-05-21T04:45:53.163Z"
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-21T03:46:47.735Z",
326
+ "signed_at": "2026-05-21T04:45:53.164Z",
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-21T03:46:47.735Z",
383
+ "signed_at": "2026-05-21T04:45:53.164Z",
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-21T03:46:47.736Z",
418
+ "signed_at": "2026-05-21T04:45:53.165Z",
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-21T03:46:47.737Z"
446
+ "signed_at": "2026-05-21T04:45:53.166Z"
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-21T03:46:47.737Z"
478
+ "signed_at": "2026-05-21T04:45:53.166Z"
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-21T03:46:47.738Z"
505
+ "signed_at": "2026-05-21T04:45:53.167Z"
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-21T03:46:47.739Z",
557
+ "signed_at": "2026-05-21T04:45:53.167Z",
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-21T03:46:47.739Z"
604
+ "signed_at": "2026-05-21T04:45:53.168Z"
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-21T03:46:47.740Z",
641
+ "signed_at": "2026-05-21T04:45:53.168Z",
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-21T03:46:47.741Z"
676
+ "signed_at": "2026-05-21T04:45:53.169Z"
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-21T03:46:47.742Z"
747
+ "signed_at": "2026-05-21T04:45:53.169Z"
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-21T03:46:47.742Z"
807
+ "signed_at": "2026-05-21T04:45:53.170Z"
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-21T03:46:47.743Z"
882
+ "signed_at": "2026-05-21T04:45:53.170Z"
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-21T03:46:47.744Z"
959
+ "signed_at": "2026-05-21T04:45:53.171Z"
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-21T03:46:47.744Z"
1016
+ "signed_at": "2026-05-21T04:45:53.171Z"
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-21T03:46:47.745Z"
1083
+ "signed_at": "2026-05-21T04:45:53.172Z"
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-21T03:46:47.746Z"
1139
+ "signed_at": "2026-05-21T04:45:53.172Z"
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-21T03:46:47.747Z"
1191
+ "signed_at": "2026-05-21T04:45:53.172Z"
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-21T03:46:47.748Z"
1241
+ "signed_at": "2026-05-21T04:45:53.173Z"
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-21T03:46:47.749Z"
1315
+ "signed_at": "2026-05-21T04:45:53.173Z"
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-21T03:46:47.749Z"
1365
+ "signed_at": "2026-05-21T04:45:53.174Z"
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-21T03:46:47.750Z"
1425
+ "signed_at": "2026-05-21T04:45:53.175Z"
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-21T03:46:47.751Z"
1506
+ "signed_at": "2026-05-21T04:45:53.175Z"
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-21T03:46:47.752Z"
1575
+ "signed_at": "2026-05-21T04:45:53.176Z"
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-21T03:46:47.753Z"
1640
+ "signed_at": "2026-05-21T04:45:53.176Z"
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-21T03:46:47.754Z"
1726
+ "signed_at": "2026-05-21T04:45:53.177Z"
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-21T03:46:47.755Z"
1795
+ "signed_at": "2026-05-21T04:45:53.177Z"
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-21T03:46:47.756Z"
1876
+ "signed_at": "2026-05-21T04:45:53.178Z"
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-21T03:46:47.756Z"
1938
+ "signed_at": "2026-05-21T04:45:53.178Z"
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-21T03:46:47.757Z"
2009
+ "signed_at": "2026-05-21T04:45:53.179Z"
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-21T03:46:47.758Z"
2071
+ "signed_at": "2026-05-21T04:45:53.179Z"
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-21T03:46:47.758Z"
2151
+ "signed_at": "2026-05-21T04:45:53.180Z"
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-21T03:46:47.759Z"
2204
+ "signed_at": "2026-05-21T04:45:53.180Z"
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-21T03:46:47.760Z"
2272
+ "signed_at": "2026-05-21T04:45:53.181Z"
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-21T03:46:47.761Z"
2352
+ "signed_at": "2026-05-21T04:45:53.181Z"
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-21T03:46:47.761Z"
2433
+ "signed_at": "2026-05-21T04:45:53.182Z"
2434
2434
  }
2435
2435
  ],
2436
2436
  "manifest_signature": {
2437
2437
  "algorithm": "Ed25519",
2438
- "signature_base64": "0ypbD57BVIX88UUPnCZ4v5EfsB8+iB4GJm4TTiOWkpP+g7OcthhtDX2t9Ch05KWX4SNl3GY7vmM/X5H6TIGvDg=="
2438
+ "signature_base64": "u2d750B08uFPC5atx6BpLsNaIlmGlOCSbYue26FoWAv+5M4OVBS8VusyS8J7ety06DxHHxND0EkSKq47T+eOBQ=="
2439
2439
  }
2440
2440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.13.37",
3
+ "version": "0.13.38",
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:ba863885-e27a-49d0-bd0d-8c568eafa456",
4
+ "serialNumber": "urn:uuid:47e43e9f-0201-433e-9c39-6cd4e58b02e5",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2125-03-02T10:14:29.000Z",
7
+ "timestamp": "2064-03-21T23:02:55.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.13.37"
12
+ "version": "0.13.38"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.37",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.38",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.13.37",
19
+ "version": "0.13.38",
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.37",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.38",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "c2fe6102f3262bfb5d7719f3d2bfc807ce335319820c07ea6c12019fc8397122"
32
+ "content": "f6db73a4cedc87852d5f3f4ebf32f0b10b5dd9d5fd02f0bda87205b84227460b"
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.37"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.38"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -86,11 +86,11 @@
86
86
  "hashes": [
87
87
  {
88
88
  "alg": "SHA-256",
89
- "content": "09bd32173edb92599872fb5a29dc803d1f7eeaf0681e282bbbe8d25ffb447762"
89
+ "content": "708c392f59f4421f1071a33b13c294c327e99e268b81ff39cda3c51ae2025c2e"
90
90
  },
91
91
  {
92
92
  "alg": "SHA3-512",
93
- "content": "56d44dc4d44cb68ed1b3c86848f1a6a505b081d3248b898b76011784aca354e983cead175bdb48b7cb35662709daf77cdb949ea22f52f0d06c54932ee76829d3"
93
+ "content": "8a327e01974661bac0011a0fe3672855a9591145535845fbe1a5ea6caba36b9ad9fbd7d604f3569cd1a9c03057fdd6c500a7ffa88cf4abd531ededfe39af7451"
94
94
  }
95
95
  ]
96
96
  },
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "bc8077cb304ade5c9229b1562e40ab09676656e1e096ecad22f09b9d9621b592"
119
+ "content": "4146ade515f7dd083771d399bd1f9cabf4b0bfd3a10ca68f003516fef79562c8"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "2bbcf3161bdb764940885886c84439ba0e87b555c67cfb85f8b1b32a98609538c0343a74c7572dafd0445fe3eacaaabb0a95ed7bfc71f4164825b0a562f01c36"
123
+ "content": "93a0ddc806c9799ebd08bc7e0e6d324d75b513d17a6cbdd7489bd5053476f27a15d05916d52fc970b16263d80126ff7b32b334c9b3316f88fd57144488a7a540"
124
124
  }
125
125
  ]
126
126
  },
@@ -889,6 +889,21 @@
889
889
  }
890
890
  ]
891
891
  },
892
+ {
893
+ "bom-ref": "file:lib/collectors/cred-stores.js",
894
+ "type": "file",
895
+ "name": "lib/collectors/cred-stores.js",
896
+ "hashes": [
897
+ {
898
+ "alg": "SHA-256",
899
+ "content": "3844551461b3ee675627c08b03a99a0944a6783ee7f389eb2c2080af38878cc6"
900
+ },
901
+ {
902
+ "alg": "SHA3-512",
903
+ "content": "71612bf63aca6d387c3ad57f0b19c55486defd506de48e09b9f2c71b35bf2331cb7d9c0f7608e87954fe67256d9be150ab7eba4daaa4ee418e300a7e90133a77"
904
+ }
905
+ ]
906
+ },
892
907
  {
893
908
  "bom-ref": "file:lib/collectors/crypto-codebase.js",
894
909
  "type": "file",
@@ -1556,11 +1571,11 @@
1556
1571
  "hashes": [
1557
1572
  {
1558
1573
  "alg": "SHA-256",
1559
- "content": "5eeb28b7edf5ebf368b201b1988d0b6ccbb7ca838ee7fe45e63a878e7d3650f9"
1574
+ "content": "5fa40751e228263289b76f7f5a4803e967fb9f45268b61a6783f23a8ad0c5b96"
1560
1575
  },
1561
1576
  {
1562
1577
  "alg": "SHA3-512",
1563
- "content": "78836660cec949624fede0a9e110834d38f36e6e4319bd6d8a74bacfc9878de982036adc910948dbe3e26269d9008115ccb166c32ae017eff1f3f4342832cb14"
1578
+ "content": "d671f40edaa9b826aa15f42d6d900b0ba88ebc7f6034620aa681d2395a48a55782c37dc2e5c185eaada7dc29a78fb01ba7b6d56208487540e75e4a6d66ebc2ac"
1564
1579
  }
1565
1580
  ]
1566
1581
  },