@blamejs/exceptd-skills 0.12.15 → 0.12.18

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/lib/verify.js CHANGED
@@ -30,6 +30,24 @@
30
30
  * additionalProperties=false at the skill level catches typos and
31
31
  * unknown fields that would otherwise silently be dropped.
32
32
  *
33
+ * Manifest signature contract (must mirror lib/sign.js):
34
+ * The manifest carries a top-level `manifest_signature` field. Before
35
+ * iterating skills, loadManifestValidated() extracts the signature,
36
+ * recomputes the canonical bytes, and verifies against keys/public.pem.
37
+ * On failure, all skill verification is blocked with a structured
38
+ * error. When the field is absent (older v0.11.x / pre-v0.12.17
39
+ * tarballs in the wild), a warning is emitted but verification
40
+ * continues — this preserves backward compatibility for installs that
41
+ * predate manifest signing.
42
+ *
43
+ * Canonical bytes are computed identically to lib/sign.js
44
+ * canonicalManifestBytes():
45
+ * 1. Clone, delete manifest_signature.
46
+ * 2. JSON.stringify with top-level keys sorted lexicographically.
47
+ * 3. Apply normalize() — strip BOM, CRLF → LF.
48
+ * ANY change to the canonical form requires the matching change in
49
+ * lib/sign.js. Round-trip stability is a hard contract.
50
+ *
33
51
  * Signing ceremony: see lib/sign.js
34
52
  * Public key: keys/public.pem (tracked in repo)
35
53
  * Private key: .keys/private.pem (gitignored, kept off-repo)
@@ -112,7 +130,19 @@ function signAll() {
112
130
  const privateKey = loadPrivateKey();
113
131
  if (!privateKey) throw new Error('No private key at .keys/private.pem — run: node lib/sign.js generate-keypair');
114
132
 
115
- const manifest = loadManifestValidated();
133
+ // P1-4: load the manifest without the signature gate. We're about to
134
+ // mutate the manifest (re-sign skills + re-sign the manifest itself),
135
+ // so a stale manifest_signature mismatch here is expected — not a
136
+ // tampering signal. Schema + path validation still apply.
137
+ const manifest = loadManifest();
138
+ const schema = JSON.parse(fs.readFileSync(MANIFEST_SCHEMA_PATH, 'utf8'));
139
+ const errors0 = validateAgainstSchema(manifest, schema, 'manifest');
140
+ if (errors0.length > 0) {
141
+ const detail = errors0.slice(0, 10).map(e => ' - ' + e).join('\n');
142
+ throw new Error(`[verify] manifest.json failed schema validation before re-sign:\n${detail}`);
143
+ }
144
+ for (const skill of (manifest.skills || [])) validateSkillPath(skill.path);
145
+
116
146
  const result = { signed: [], errors: [] };
117
147
 
118
148
  for (const skill of manifest.skills) {
@@ -128,8 +158,20 @@ function signAll() {
128
158
  result.signed.push(skill.name);
129
159
  }
130
160
 
161
+ // P1-4: re-sign the manifest after the per-skill signatures changed.
162
+ delete manifest.manifest_signature;
163
+ const canonical = canonicalManifestBytes(manifest);
164
+ const manifestSig = crypto.sign(null, canonical, {
165
+ key: privateKey, dsaEncoding: 'ieee-p1363',
166
+ });
167
+ manifest.manifest_signature = {
168
+ algorithm: 'Ed25519',
169
+ signature_base64: manifestSig.toString('base64'),
170
+ signed_at: new Date().toISOString(),
171
+ };
172
+
131
173
  fs.writeFileSync(MANIFEST_PATH, JSON.stringify(manifest, null, 2) + '\n', 'utf8');
132
- console.log(`[verify] Signed ${result.signed.length} skills with Ed25519 private key.`);
174
+ console.log(`[verify] Signed ${result.signed.length} skills with Ed25519 private key. Manifest signed.`);
133
175
  return result;
134
176
  }
135
177
 
@@ -244,6 +286,86 @@ function loadManifest() {
244
286
  return JSON.parse(fs.readFileSync(MANIFEST_PATH, 'utf8'));
245
287
  }
246
288
 
289
+ /**
290
+ * Audit I P1-4 — canonical byte form of the manifest.
291
+ *
292
+ * Mirrors lib/sign.js canonicalManifestBytes(). Any divergence here
293
+ * breaks the verify-after-sign round trip; do not modify in isolation.
294
+ *
295
+ * v0.12.17 (codex P1 PR #12): use deep canonicalize() instead of the
296
+ * top-level sortedKeys replacer-array. The replacer-array form acts as
297
+ * a property allowlist applied to EVERY object level — nested fields
298
+ * like skills[].path and skills[].signature got silently dropped from
299
+ * the canonical bytes, letting an attacker swap them without breaking
300
+ * the signature.
301
+ *
302
+ * @param {object} manifest
303
+ * @returns {Buffer} canonical UTF-8 bytes
304
+ */
305
+ function canonicalize(value) {
306
+ if (Array.isArray(value)) return value.map(canonicalize);
307
+ if (value && typeof value === 'object') {
308
+ const out = {};
309
+ for (const key of Object.keys(value).sort()) {
310
+ out[key] = canonicalize(value[key]);
311
+ }
312
+ return out;
313
+ }
314
+ return value;
315
+ }
316
+
317
+ function canonicalManifestBytes(manifest) {
318
+ const clone = { ...manifest };
319
+ delete clone.manifest_signature;
320
+ const json = JSON.stringify(canonicalize(clone), null, 2);
321
+ return Buffer.from(normalize(json), 'utf8');
322
+ }
323
+
324
+ /**
325
+ * Verify the top-level manifest_signature against keys/public.pem.
326
+ *
327
+ * Returns one of:
328
+ * { status: 'missing' } — field absent (legacy tarball; warn-but-proceed)
329
+ * { status: 'valid' } — signature verifies
330
+ * { status: 'invalid', — signature malformed, wrong key, or tampered
331
+ * reason: string }
332
+ * { status: 'no-key', — keys/public.pem absent
333
+ * reason: string }
334
+ *
335
+ * @param {object} manifest
336
+ */
337
+ function verifyManifestSignature(manifest) {
338
+ const sig = manifest && manifest.manifest_signature;
339
+ if (!sig || typeof sig !== 'object') return { status: 'missing' };
340
+ if (typeof sig.signature_base64 !== 'string') {
341
+ return { status: 'invalid', reason: 'manifest_signature.signature_base64 missing or not a string' };
342
+ }
343
+ if (sig.algorithm && sig.algorithm !== 'Ed25519') {
344
+ return { status: 'invalid', reason: `unsupported manifest_signature.algorithm: ${sig.algorithm}` };
345
+ }
346
+ const publicKey = loadPublicKey();
347
+ if (!publicKey) {
348
+ return { status: 'no-key', reason: 'public key missing at keys/public.pem' };
349
+ }
350
+ let signatureBytes;
351
+ try {
352
+ signatureBytes = Buffer.from(sig.signature_base64, 'base64');
353
+ } catch (e) {
354
+ return { status: 'invalid', reason: `malformed base64 in manifest_signature: ${e.message}` };
355
+ }
356
+ const bytes = canonicalManifestBytes(manifest);
357
+ let ok = false;
358
+ try {
359
+ ok = crypto.verify(null, bytes, {
360
+ key: publicKey,
361
+ dsaEncoding: 'ieee-p1363',
362
+ }, signatureBytes);
363
+ } catch (e) {
364
+ return { status: 'invalid', reason: `crypto.verify threw: ${e.message}` };
365
+ }
366
+ return ok ? { status: 'valid' } : { status: 'invalid', reason: 'Ed25519 manifest signature did not verify against keys/public.pem — manifest.json has been tampered or signed with a different key' };
367
+ }
368
+
247
369
  /**
248
370
  * Load the manifest and validate it against
249
371
  * lib/schemas/manifest.schema.json + the path-traversal guard.
@@ -252,6 +374,14 @@ function loadManifest() {
252
374
  * is a fatal-class bug — surface it loudly rather than verify-against-
253
375
  * a-corrupt-manifest.
254
376
  *
377
+ * Audit I P1-4: also verifies the top-level manifest_signature. On
378
+ * invalid signature, throws a structured error blocking all skill
379
+ * verification (a coordinated attacker who rewrote manifest.json +
380
+ * manifest-snapshot.json + manifest-snapshot.sha256 still cannot forge
381
+ * the Ed25519 signature without the private key). When the signature
382
+ * field is absent, emits a stderr warning but proceeds — preserves
383
+ * backward compatibility for v0.12.16-and-earlier tarballs.
384
+ *
255
385
  * @returns {object}
256
386
  */
257
387
  function loadManifestValidated() {
@@ -269,6 +399,21 @@ function loadManifestValidated() {
269
399
  for (const skill of manifest.skills) {
270
400
  validateSkillPath(skill.path);
271
401
  }
402
+ // Audit I P1-4 — manifest signature gate. Runs after schema + path
403
+ // validation so a malformed manifest reports the structural failure
404
+ // before the cryptographic one.
405
+ const sigResult = verifyManifestSignature(manifest);
406
+ if (sigResult.status === 'invalid') {
407
+ throw new Error(`[verify] manifest_signature verification FAILED — ${sigResult.reason}. The manifest has been modified (or signed with a different key) since last sign-all. Refusing to verify any skill against this manifest.`);
408
+ }
409
+ if (sigResult.status === 'missing') {
410
+ console.warn('[verify] WARN: manifest.json has no top-level manifest_signature field. This tarball predates v0.12.17 manifest signing; skills will still be verified but a coordinated rewrite of manifest.json could go undetected. Re-run `node lib/sign.js sign-all` to add the signature.');
411
+ } else if (sigResult.status === 'no-key') {
412
+ // Surfaced separately so the warning matches the missing-key path
413
+ // that verifyAll() already handles — don't fail here, the verifyAll
414
+ // entry point will emit a no_key result of its own.
415
+ console.warn(`[verify] WARN: cannot verify manifest_signature — ${sigResult.reason}.`);
416
+ }
272
417
  return manifest;
273
418
  }
274
419
 
@@ -554,5 +699,7 @@ module.exports = {
554
699
  validateAgainstSchema,
555
700
  publicKeyFingerprint,
556
701
  checkExpectedFingerprint,
702
+ canonicalManifestBytes,
703
+ verifyManifestSignature,
557
704
  EXPECTED_FINGERPRINT_PATH,
558
705
  };
@@ -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-14T15:55:39.383Z",
3
+ "_generated_at": "2026-05-14T18:49:21.239Z",
4
4
  "atlas_version": "5.1.0",
5
5
  "skill_count": 38,
6
6
  "skills": [
@@ -1 +1 @@
1
- ca9d31e533c9d494e1ac5875e0a45176101438c3d75d44387187e367ccae21ad manifest-snapshot.json
1
+ 7e10f4b0b1c6cfa096e35ca28cdd8a95c19e51537cdd3e22628aecb87c72db1b manifest-snapshot.json
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.12.15",
3
+ "version": "0.12.18",
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": "GedX81xfe2Y/oIVTEvakZUcSPFccqsDjBibE+KbiiHezAx2EvCS4AOjlx4TO7F0iuC47G/wvOc12kMYe9iHtDw==",
55
- "signed_at": "2026-05-14T16:47:03.242Z",
55
+ "signed_at": "2026-05-14T19:29:43.828Z",
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": "Rz5jS554rDryT6FPVZy0PwHMCYoJQQhhNDNI9rvOptjDbsnnKtZkpVXlKke5OKmLu5fHEBaNPg856qMIZFq+Ag==",
119
- "signed_at": "2026-05-14T16:47:03.244Z",
119
+ "signed_at": "2026-05-14T19:29:43.829Z",
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": "goSMEVE6QbfcdqCEgq324TNy6rZ2mWwPA28gMPvojy8ZzGFng87hLdyvKhDMo4S3KTK1D6CaTBksAzZw4Go8Cg==",
182
- "signed_at": "2026-05-14T16:47:03.245Z",
182
+ "signed_at": "2026-05-14T19:29:43.830Z",
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": "XFQO+fdOb388MLxMLoTqjOHhmV/PBOPKH0nZTp5NY4uzk5iUTo6G2T/IrgZGV7/CvsuvOvaXWP8+BDllXzOpDw==",
228
- "signed_at": "2026-05-14T16:47:03.245Z"
228
+ "signed_at": "2026-05-14T19:29:43.831Z"
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": "1UD9hHv44RWc1GSvN99pmxk26xaHLC74EbJ1ndn5Sptgd7w2rU9QznqCKf7Qc18uRyNEFhqW3jHvEs9c/XgrAw==",
259
- "signed_at": "2026-05-14T16:47:03.245Z"
259
+ "signed_at": "2026-05-14T19:29:43.831Z"
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": "4tt6UuIkq/Mi8zMhO5cydYlXyG7jKxF2MFBC34Q6Q5l3FHPhhqrL5HLOB4WFgVmq27wBbD6AgUu2czVnKa5MDQ==",
288
- "signed_at": "2026-05-14T16:47:03.245Z"
288
+ "signed_at": "2026-05-14T19:29:43.831Z"
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": "4mstnPFMNhiorB7iEwqb7Jh+OCG79Mhqt2h/RwL5JbnAIPBi0Fcv0JBhQ5msEaHO4gNnpcBrdMfiDxLDwetZCw==",
325
- "signed_at": "2026-05-14T16:47:03.246Z",
325
+ "signed_at": "2026-05-14T19:29:43.832Z",
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": "FjdIy9NqQpSSMhIbyv5WhnJKrVLhO98iBfQ0AHqXw6yqXdVoWucyr729Jwhelq40oAkiBzbXi9RoVo63DHJwDw==",
382
- "signed_at": "2026-05-14T16:47:03.246Z",
382
+ "signed_at": "2026-05-14T19:29:43.832Z",
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": "DxfXhSyoAGUo1emHh0uIIcg324ZreBYxmFdBDVAKOOuPmMlfN4RqNc/JGDSfVmMv5CjgYCUcSmkcYB0A5lk0Cg==",
417
- "signed_at": "2026-05-14T16:47:03.246Z",
417
+ "signed_at": "2026-05-14T19:29:43.832Z",
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": "xwlad/p5XlICc76KqrdWpEpBgwx1D87oM5qlccRQ5LKC/o0pr8vQ8LN3WLiiziBChplwNbruiIN6UETniZpjCg==",
445
- "signed_at": "2026-05-14T16:47:03.247Z"
445
+ "signed_at": "2026-05-14T19:29:43.833Z"
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": "7yVjZkanFMKDQqXdX4B/7oLc2Rz72xHC1zscYd8F/+e5UAbR7ikK8Bn5EKZt3aBEOhHPAviSQNCMxpZD9U00CA==",
477
- "signed_at": "2026-05-14T16:47:03.247Z"
477
+ "signed_at": "2026-05-14T19:29:43.834Z"
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": "pKv1b8JAj1ldwR2KGccvjUKqlor2KNXXzxkKypkv+4O8WbqY7v8fWlbFe1F36OJrL2xYJdnZL5mJzqjYVHLRCg==",
504
- "signed_at": "2026-05-14T16:47:03.248Z"
504
+ "signed_at": "2026-05-14T19:29:43.834Z"
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": "V+qn5FqUlETfsEjvvi6jZGuQdqLFtFejfgPA6KSYxSlBXBTbOBXP3BGk5S+ba9akIzgbKh1j9VGB1MqsIt56DA==",
556
- "signed_at": "2026-05-14T16:47:03.248Z",
556
+ "signed_at": "2026-05-14T19:29:43.834Z",
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": "UayHLLWXAkhnLPaPRsgDpAyE8FGk1tuG1/DYyhw84Uv4tfCKXMamsAhXHOyMIosQfsJq5ZHYVXZz0bYNpnlvDw==",
603
- "signed_at": "2026-05-14T16:47:03.248Z"
603
+ "signed_at": "2026-05-14T19:29:43.835Z"
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": "zjq6ACAHD46xvhvQJKlrCPh5xDCuBuIWBI+QJB8RxcudpC7p7I1pqv+BY8DZdsAgU4tquCU8KC+xlduMIk3/DQ==",
640
- "signed_at": "2026-05-14T16:47:03.248Z",
640
+ "signed_at": "2026-05-14T19:29:43.835Z",
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": "/lGgWehCMQUXjI6w4FUa+5wrbyRnct+txvVcXA+D2/ZEkoJKh+J/psO3j5HPf7Hpv+Y5SmkH71CoO+9qilyVDQ==",
675
- "signed_at": "2026-05-14T16:47:03.249Z"
675
+ "signed_at": "2026-05-14T19:29:43.835Z"
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": "rh+/cr+wTcEmBwrGscBni/jXpxjjYP91pUKDFIGkahZpw+nghCM/3aLKFf5RFRnl3JKTyBRywIrYhUH1YuSlDw==",
746
- "signed_at": "2026-05-14T16:47:03.249Z"
746
+ "signed_at": "2026-05-14T19:29:43.836Z"
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-14T16:47:03.249Z"
806
+ "signed_at": "2026-05-14T19:29:43.836Z"
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": "/BCBGUVjGs1RZzqXfElxBWB8UoD4+MY2G1YekdWsTDbMcHvt3NZJf0/JcqdYHOsEhFQ21NEz3w3+6tmQ8htKDw==",
881
- "signed_at": "2026-05-14T16:47:03.249Z"
881
+ "signed_at": "2026-05-14T19:29:43.837Z"
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": "mySOkGScsNPtEZcHg42EKcvUSBzADIB9mSlNe0L1yPllrB/83ypBj6cCERRw9ql+rtrNxapyc6Do+nCz7E5rDg==",
958
- "signed_at": "2026-05-14T16:47:03.250Z"
958
+ "signed_at": "2026-05-14T19:29:43.837Z"
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": "XZigwq8X/csfrdG10O6Q1V5q0zUqSQGd3QrjRKkZ4fkaodG4mZahYuIQqxc8rU9jjtGAm9LtBXYB+I5csqj9Bw==",
1015
- "signed_at": "2026-05-14T16:47:03.250Z"
1015
+ "signed_at": "2026-05-14T19:29:43.837Z"
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": "k0HrsZMBxiPWB1jl4dRwhv/R5IsqbZ+SLDv1Jx3/sRl51JyXjtm8vyogTNhSwsl5/IkaRakqIPJFRFRl5h/9CQ==",
1082
- "signed_at": "2026-05-14T16:47:03.250Z"
1082
+ "signed_at": "2026-05-14T19:29:43.838Z"
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": "oHxjumOhk8y86WcwhAX8sSWIlPzt60KfTMn4DCJLeRrrQd5+i54fVADKAdZ3vOqfDN+DexO0uX4f5dLPtacRCQ==",
1138
- "signed_at": "2026-05-14T16:47:03.251Z"
1138
+ "signed_at": "2026-05-14T19:29:43.838Z"
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": "UCiNjncvhkZItmLQA/Sm1/NCsOiLMwdCjfUw+067v4NIxhaMMaqRrAeD3KgMyEtov7m2Hq2kfwYSt5+DQsYDCQ==",
1190
- "signed_at": "2026-05-14T16:47:03.251Z"
1190
+ "signed_at": "2026-05-14T19:29:43.838Z"
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": "V9kl8Cf8UMjNFyn3D/fSyhWHLeXWlx3WV/jT9jdF9SrjfDqymimuTt2o91cZ2FOEJndAH9V0JGXB13Ohz8K4CQ==",
1240
- "signed_at": "2026-05-14T16:47:03.251Z"
1240
+ "signed_at": "2026-05-14T19:29:43.839Z"
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": "csC9KRA3ExCSK77+UF6gj0OFPPZzOvuPxQtKEoaUZmLvn3V37My4IpbUjXAN2ZavTHqyFG9yQNfq3ELZeSJ7Cg==",
1314
- "signed_at": "2026-05-14T16:47:03.252Z"
1314
+ "signed_at": "2026-05-14T19:29:43.839Z"
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": "P2D++lB5hea3oi2vl9mf8C7N+E7zASoqt1v4tjKxtaTeb+U0UARgMOaZsoK/sO9TT/PG/au14Rl4EFxv+Xi1BA==",
1364
- "signed_at": "2026-05-14T16:47:03.252Z"
1364
+ "signed_at": "2026-05-14T19:29:43.839Z"
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": "BDuLcpTeFp2BNSf1q4rYOhYKNhlgd3o5RZ0Uw9xW5olyYxPbZSgqekQ+6Ggaec09s7y6sqR37GS0vuAMdbrdDQ==",
1424
- "signed_at": "2026-05-14T16:47:03.252Z"
1424
+ "signed_at": "2026-05-14T19:29:43.840Z"
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": "4IUJePr6XbE1Ns+cPvEFAVgrwdHLImuxdPYiilurxM2SmJym1itRC1prFMcuT6Kh6e1clYXwlzflcKm/eikyDA==",
1505
- "signed_at": "2026-05-14T16:47:03.252Z"
1505
+ "signed_at": "2026-05-14T19:29:43.840Z"
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": "nMsyJ+rp5fM8/VjC7zsZyDjOC4hpxB+noT1VX7W0HBlq5t3SY56cwOGApwES/kBcCuf4qexKY376OxUr93zvCQ==",
1574
- "signed_at": "2026-05-14T16:47:03.253Z"
1574
+ "signed_at": "2026-05-14T19:29:43.841Z"
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": "L1moEqEGkBkqY/3ohJcfqrlJn40UurDCyb2MOP/IwTAeZD+QbVZ17/drdsydkJ6qSXPiyiE6u8HDfZsDS13NBQ==",
1639
- "signed_at": "2026-05-14T16:47:03.253Z"
1639
+ "signed_at": "2026-05-14T19:29:43.841Z"
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": "ad1pHD4QQ8uXkhrzqLuWgnDpESOapzx3qGFchU9rxiX1aeLQkYKwpDzqIItFq82B5xjNsW7g5jXlF1sgK2HmCA==",
1708
- "signed_at": "2026-05-14T16:47:03.253Z"
1708
+ "signed_at": "2026-05-14T19:29:43.842Z"
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": "UEn0305KAEqIfYOdzadLBdPG/PJ+3sJ/8ubvPFNcXfqXp2uOWTfqGUqY65PApA992VEEa1RBQt5R7Nyhd/OjDQ==",
1789
- "signed_at": "2026-05-14T16:47:03.254Z"
1789
+ "signed_at": "2026-05-14T19:29:43.842Z"
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": "4easZDYn25XK4E9MRnwnZohG3xdYMmOLlPznNVmr1ykNfB+343+ooj+R0quG8uEV/IqbTQpR1ink35K6jCghCg==",
1851
- "signed_at": "2026-05-14T16:47:03.254Z"
1851
+ "signed_at": "2026-05-14T19:29:43.842Z"
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": "chbPWzjfx92OjEAwMIm+J4GObxy8uwTahNBvbhMfYL7vTAJe/lf2BaW8wUpchpMIwYL0985A/+WykH8zmk/DBA==",
1922
- "signed_at": "2026-05-14T16:47:03.255Z"
1922
+ "signed_at": "2026-05-14T19:29:43.843Z"
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": "3V7kvM5cxXdCBoMnjvOoTvT3zD+/yZEBHYgiunYQe8tBm+vVnS4jCz1Nzv/ymePIfbYDo/PlzKeGTWStSsGiAg==",
1984
- "signed_at": "2026-05-14T16:47:03.255Z"
1984
+ "signed_at": "2026-05-14T19:29:43.843Z"
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": "RiCryJEd66T2NNcSo/mZTd3sGWDycE3C37guLJanLdVL5co35DrPFmIl8qy3ZM/y+Wzg5vpny8VKgr1//1/bCA==",
2037
- "signed_at": "2026-05-14T16:47:03.255Z"
2037
+ "signed_at": "2026-05-14T19:29:43.843Z"
2038
2038
  },
2039
2039
  {
2040
2040
  "name": "age-gates-child-safety",
@@ -2102,7 +2102,12 @@
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": "MMWvg3lIf5ygm31zyf1E43t3W9MfRbMBBPrqlj1wOa8AxVJL8LICnAXfmyJ/TNJXwpF+rfZeDdoxXkql8wmtBA==",
2105
- "signed_at": "2026-05-14T16:47:03.256Z"
2105
+ "signed_at": "2026-05-14T19:29:43.844Z"
2106
2106
  }
2107
- ]
2107
+ ],
2108
+ "manifest_signature": {
2109
+ "algorithm": "Ed25519",
2110
+ "signature_base64": "TD/DHSjapE7OQbmJ7a4GMh+35vcyhWvyQU0kjXZZWByNZJsvUDPlyYy0bEiz6/BylGv0QLpTsT0iQWHGPu5ECA==",
2111
+ "signed_at": "2026-05-14T19:29:43.845Z"
2112
+ }
2108
2113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.12.15",
3
+ "version": "0.12.18",
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",
package/sbom.cdx.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "bomFormat": "CycloneDX",
3
3
  "specVersion": "1.6",
4
- "serialNumber": "urn:uuid:0fb3661f-4f3b-4d31-98b3-d5fd759aa8c1",
4
+ "serialNumber": "urn:uuid:f814e8e0-7189-4a08-8117-b35a35ae4f30",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2026-05-14T16:47:04.535Z",
7
+ "timestamp": "2026-05-14T19:29:45.003Z",
8
8
  "tools": [
9
9
  {
10
10
  "name": "hand-written",
@@ -13,10 +13,10 @@
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.12.15",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.12.18",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.12.15",
19
+ "version": "0.12.18",
20
20
  "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.",
21
21
  "licenses": [
22
22
  {
@@ -25,11 +25,11 @@
25
25
  }
26
26
  }
27
27
  ],
28
- "purl": "pkg:npm/%40blamejs/exceptd-skills@0.12.15",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.12.18",
29
29
  "externalReferences": [
30
30
  {
31
31
  "type": "distribution",
32
- "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.12.15"
32
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.12.18"
33
33
  },
34
34
  {
35
35
  "type": "vcs",