@blamejs/exceptd-skills 0.10.3 → 0.11.1

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.
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-12T14:08:27.651Z",
3
+ "generated_at": "2026-05-12T15:12:14.697Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 49,
6
6
  "source_hashes": {
7
- "manifest.json": "35c0e5e79c31c68c0a45e0bcad009fd34c935df5d0ba738e1f106a9be0c3d357",
7
+ "manifest.json": "c9d65112c41d74b26c533cc37160fe6d450789ad8910fcb8cc4dae6225940ef3",
8
8
  "data/atlas-ttps.json": "1500b5830dab070c4252496964a8c0948e1052a656e2c7c6e1efaf0350645e13",
9
9
  "data/cve-catalog.json": "a81d3e4b491b27ccc084596b063a6108ff10c9eb01d7776922fc393980b534fe",
10
10
  "data/cwe-catalog.json": "c3367d469b4b3d31e4c56397dd7a8305a0be338ecd85afa27804c0c9ce12157b",
@@ -143,16 +143,69 @@ function preflight(playbook, runOpts = {}) {
143
143
  }
144
144
  }
145
145
 
146
- // 3. Mutex
146
+ // 3. Mutex — both intra-process (in-memory Set) AND cross-process
147
+ // (filesystem lockfile under .exceptd/locks/<playbook>.lock). v0.11.0 only
148
+ // enforced intra-process; v0.11.1 adds cross-process so two parallel CLI
149
+ // invocations of mutex-conflicting playbooks correctly race-detect.
147
150
  for (const conflictId of meta.mutex || []) {
148
151
  if (_activeRuns.has(conflictId)) {
149
- return { ok: false, blocked_by: 'mutex', reason: `Mutex conflict: playbook ${conflictId} is currently active and listed in this playbook's mutex set.`, issues };
152
+ return { ok: false, blocked_by: 'mutex', reason: `Mutex conflict (intra-process): playbook ${conflictId} is currently active and listed in this playbook's mutex set.`, issues };
153
+ }
154
+ const lockPath = lockFilePath(conflictId);
155
+ if (lockPath && fs.existsSync(lockPath)) {
156
+ // Stale-lock detection: if the recorded PID is dead, ignore the lock.
157
+ try {
158
+ const lock = JSON.parse(fs.readFileSync(lockPath, 'utf8'));
159
+ if (lock.pid && !pidAlive(lock.pid)) {
160
+ fs.unlinkSync(lockPath); // GC stale
161
+ } else {
162
+ return {
163
+ ok: false,
164
+ blocked_by: 'mutex',
165
+ reason: `Mutex conflict (cross-process): playbook ${conflictId} has an active lock at ${lockPath} (pid ${lock.pid}, started ${lock.started_at}).`,
166
+ issues,
167
+ };
168
+ }
169
+ } catch { /* malformed lockfile — treat as stale and remove */
170
+ try { fs.unlinkSync(lockPath); } catch {}
171
+ }
150
172
  }
151
173
  }
152
174
 
153
175
  return { ok: true, issues };
154
176
  }
155
177
 
178
+ function lockDir() {
179
+ const dir = path.join(process.cwd(), '.exceptd', 'locks');
180
+ try { fs.mkdirSync(dir, { recursive: true }); } catch {}
181
+ return dir;
182
+ }
183
+
184
+ function lockFilePath(playbookId) {
185
+ try { return path.join(lockDir(), `${playbookId}.lock`); }
186
+ catch { return null; }
187
+ }
188
+
189
+ function acquireLock(playbookId) {
190
+ const p = lockFilePath(playbookId);
191
+ if (!p) return null;
192
+ try {
193
+ fs.writeFileSync(p, JSON.stringify({ pid: process.pid, started_at: new Date().toISOString(), playbook: playbookId }, null, 2), { flag: 'wx' });
194
+ return p;
195
+ } catch { return null; /* already locked or unwritable */ }
196
+ }
197
+
198
+ function releaseLock(lockPath) {
199
+ if (!lockPath) return;
200
+ try { fs.unlinkSync(lockPath); } catch {}
201
+ }
202
+
203
+ function pidAlive(pid) {
204
+ if (typeof pid !== 'number') return false;
205
+ try { process.kill(pid, 0); return true; }
206
+ catch (e) { return e.code !== 'ESRCH'; }
207
+ }
208
+
156
209
  // --- phase 1: govern ---
157
210
 
158
211
  /**
@@ -774,6 +827,26 @@ function buildEvidenceBundle(format, playbook, analyze, validate, agentSignals)
774
827
  };
775
828
  }
776
829
 
830
+ // v0.11.0 redesign #39: --format summary emits a 5-line digest for CI gates
831
+ // and human triage. Drops everything except verdict + RWEP + blast +
832
+ // feeds_into + jurisdiction clock count.
833
+ if (format === 'summary') {
834
+ return {
835
+ format: 'summary',
836
+ summary: {
837
+ playbook: playbook._meta.id,
838
+ verdict: analyze.compliance_theater_check?.verdict || 'pending',
839
+ matched_cves: analyze.matched_cves.length,
840
+ rwep_adjusted: analyze.rwep?.adjusted || 0,
841
+ rwep_threshold_escalate: analyze.rwep?.threshold?.escalate || null,
842
+ blast_radius_score: analyze.blast_radius_score || 0,
843
+ feeds_into: null, // populated by close()
844
+ jurisdiction_clocks_active: null, // populated by close()
845
+ remediation_recommended: validate.selected_remediation?.id || null,
846
+ }
847
+ };
848
+ }
849
+
777
850
  if (format === 'markdown') {
778
851
  const lines = [
779
852
  `# exceptd finding: ${playbook.domain.name}`,
@@ -797,14 +870,107 @@ function buildEvidenceBundle(format, playbook, analyze, validate, agentSignals)
797
870
 
798
871
  // --- orchestrate: full run in one call ---
799
872
 
873
+ /**
874
+ * v0.11.0 flat submission shape → v0.10.x nested shape. The flat shape is:
875
+ *
876
+ * {
877
+ * observations: {
878
+ * <artifact-id>: { captured, value, indicator?, result? } | "<precondition-value>",
879
+ * },
880
+ * verdict: { theater, classification, blast_radius }
881
+ * }
882
+ *
883
+ * Already-nested submissions pass through unchanged.
884
+ */
885
+ function normalizeSubmission(submission, playbook) {
886
+ if (!submission || typeof submission !== "object") return submission || {};
887
+ if (submission.artifacts || submission.signal_overrides || submission.signals) return submission;
888
+ if (!submission.observations && !submission.verdict) return submission;
889
+
890
+ const out = { artifacts: {}, signal_overrides: {}, signals: {}, precondition_checks: {} };
891
+ const knownPreconditions = new Set((playbook?._meta?.preconditions || []).map(p => p.id));
892
+ const knownArtifacts = new Set((playbook?.phases?.look?.artifacts || []).map(a => a.id));
893
+
894
+ for (const [key, val] of Object.entries(submission.observations || {})) {
895
+ if (knownPreconditions.has(key)) {
896
+ out.precondition_checks[key] = val === "ok" || val === true || val === "true";
897
+ continue;
898
+ }
899
+ if (typeof val === "object" && val !== null) {
900
+ const aid = knownArtifacts.has(key) ? key : (val.artifact || key);
901
+ out.artifacts[aid] = { value: val.value, captured: val.captured !== false };
902
+ if (val.indicator && val.result) out.signal_overrides[val.indicator] = val.result;
903
+ }
904
+ }
905
+
906
+ const v = submission.verdict || {};
907
+ if (v.theater) out.signals.theater_verdict = v.theater === "actual_security" ? "clear" : v.theater;
908
+ if (v.classification) out.signals.detection_classification = v.classification;
909
+ if (v.blast_radius !== undefined) out.signals.blast_radius_score = v.blast_radius;
910
+
911
+ // Carry over precondition_checks if the operator supplied them at the top
912
+ // level even in the flat shape.
913
+ if (submission.precondition_checks) Object.assign(out.precondition_checks, submission.precondition_checks);
914
+
915
+ return out;
916
+ }
917
+
918
+ /**
919
+ * Smart precondition auto-detect (redesign #9). Some preconditions are
920
+ * mechanically answerable by the runner itself — host platform, cwd
921
+ * readability, command-on-PATH. The AI shouldn't have to declare these;
922
+ * we resolve them ourselves and only escalate to AI declaration when the
923
+ * check requires intent (e.g. "operator authorized this scan").
924
+ */
925
+ function autoDetectPreconditions(submission, playbook) {
926
+ const fs = require('fs');
927
+ const out = { ...(submission || {}) };
928
+ out.precondition_checks = { ...(submission?.precondition_checks || {}) };
929
+ for (const pc of (playbook?._meta?.preconditions || [])) {
930
+ if (out.precondition_checks[pc.id] !== undefined) continue; // operator already supplied
931
+ const check = (pc.check || '').toLowerCase();
932
+ if (check.includes("host.platform == 'linux'") || check.includes("host.platform == \"linux\"")) {
933
+ out.precondition_checks[pc.id] = process.platform === 'linux';
934
+ } else if (check.includes("host.platform == 'darwin'") || check.includes("host.platform == \"darwin\"")) {
935
+ out.precondition_checks[pc.id] = process.platform === 'darwin';
936
+ } else if (check.includes("cwd_readable")) {
937
+ try { fs.readdirSync(process.cwd()); out.precondition_checks[pc.id] = true; }
938
+ catch { out.precondition_checks[pc.id] = false; }
939
+ } else if (check.includes("agent_has_filesystem_read")) {
940
+ out.precondition_checks[pc.id] = true; // Node has fs by definition
941
+ } else if (check.match(/agent_has_command\(['"]([^'"]+)['"]\)/)) {
942
+ const cmdName = check.match(/agent_has_command\(['"]([^'"]+)['"]\)/)[1];
943
+ const { spawnSync } = require('child_process');
944
+ const probe = spawnSync(process.platform === 'win32' ? 'where' : 'which', [cmdName], { stdio: 'ignore' });
945
+ out.precondition_checks[pc.id] = probe.status === 0;
946
+ }
947
+ // Intent-requiring checks (e.g. "operator_authorized == true") are NOT
948
+ // auto-resolved — the AI / operator still declares them. We leave them
949
+ // undefined and the preflight gate handles missing values per on_fail.
950
+ }
951
+ return out;
952
+ }
953
+
800
954
  function run(playbookId, directiveId, agentSubmission = {}, runOpts = {}) {
801
955
  const playbook = loadPlaybook(playbookId);
802
- const pre = preflight(playbook, runOpts);
956
+
957
+ // v0.11.0: accept flat submission shape (observations + verdict). Normalize
958
+ // to the engine's internal nested shape before preflight/detect. Smart
959
+ // precondition auto-detect (redesign #9) fires here when the cwd is readable
960
+ // / the host platform matches — the runner can answer those itself rather
961
+ // than blocking on AI declaration.
962
+ agentSubmission = normalizeSubmission(agentSubmission, playbook);
963
+ agentSubmission = autoDetectPreconditions(agentSubmission, playbook);
964
+
965
+ const pre = preflight(playbook, { ...runOpts, precondition_checks: { ...(agentSubmission.precondition_checks || {}), ...(runOpts.precondition_checks || {}) } });
803
966
  if (!pre.ok) {
804
967
  return { ok: false, phase: 'preflight', blocked_by: pre.blocked_by, reason: pre.reason, issues: pre.issues };
805
968
  }
806
969
 
807
970
  _activeRuns.add(playbookId);
971
+ // Cross-process mutex lock for this run. preflight verified no other lock
972
+ // exists; we acquire ours and release in the finally block.
973
+ const lockPath = acquireLock(playbookId);
808
974
  try {
809
975
  const phases = {
810
976
  govern: govern(playbookId, directiveId, runOpts),
@@ -837,6 +1003,7 @@ function run(playbookId, directiveId, agentSubmission = {}, runOpts = {}) {
837
1003
  };
838
1004
  } finally {
839
1005
  _activeRuns.delete(playbookId);
1006
+ releaseLock(lockPath);
840
1007
  }
841
1008
  }
842
1009
 
@@ -996,13 +1163,24 @@ function plan(opts = {}) {
996
1163
  session_id: opts.session_id || crypto.randomBytes(8).toString('hex'),
997
1164
  playbooks: ids.map(id => {
998
1165
  const pb = loadPlaybook(id);
1166
+ const baseDirect = pb.phases?.direct || {};
999
1167
  return {
1000
1168
  id,
1001
1169
  domain: pb.domain,
1002
1170
  scope: pb._meta.scope || null,
1003
1171
  threat_currency_score: pb._meta.threat_currency_score,
1004
1172
  air_gap_mode: !!pb._meta.air_gap_mode,
1005
- directives: pb.directives.map(d => ({ id: d.id, title: d.title, applies_to: d.applies_to }))
1173
+ directives: pb.directives.map(d => {
1174
+ const overrideDirect = d.phase_overrides?.direct || {};
1175
+ const threatContext = overrideDirect.threat_context || baseDirect.threat_context || null;
1176
+ // Bug #46: include description by default (not just under --directives).
1177
+ // Operators picking a directive need operator-facing prose.
1178
+ const desc = d.description
1179
+ || (threatContext ? (threatContext.split(/(?<=[.!?])\s+/)[0] || "").slice(0, 240) : null)
1180
+ || pb.domain?.name
1181
+ || null;
1182
+ return { id: d.id, title: d.title, description: desc, applies_to: d.applies_to };
1183
+ })
1006
1184
  };
1007
1185
  })
1008
1186
  };
@@ -1022,6 +1200,8 @@ module.exports = {
1022
1200
  close,
1023
1201
  run,
1024
1202
  vexFilterFromDoc,
1203
+ normalizeSubmission,
1204
+ autoDetectPreconditions,
1025
1205
  // internal helpers exposed for tests
1026
1206
  _resolvedPhase: resolvedPhase,
1027
1207
  _deepMerge: deepMerge,
@@ -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-12T14:06:22.523Z",
3
+ "_generated_at": "2026-05-12T15:10:59.836Z",
4
4
  "atlas_version": "5.1.0",
5
5
  "skill_count": 38,
6
6
  "skills": [
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.10.3",
3
+ "version": "0.11.1",
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": "WprHkO1KOjQtCBj6/EJghBTNyNKJhn7O2HDbAQZPi5jn4flwHpSrtP8LC15a4Unoh+xiIIgGhvTHZIQFHGMpBQ==",
55
- "signed_at": "2026-05-12T14:06:21.967Z",
55
+ "signed_at": "2026-05-12T15:10:59.392Z",
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": "fg20bOXGRkPUdLmegeXpTM4hnzl/ArgcVc88rItZN5DdsnFnzPgUU1PwCI82zooyj2GfxJHYjxNkq5qd2zNPBg==",
119
- "signed_at": "2026-05-12T14:06:21.969Z",
119
+ "signed_at": "2026-05-12T15:10:59.394Z",
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": "6JuSzkSSFzFHEZ3ANzqjtIbKPOkwJeKhQ+8WAPB4+dTRvDSeg46n3D88XfGaNd2z7pmg/i8p9ZoImQcHFS4BCg==",
182
- "signed_at": "2026-05-12T14:06:21.970Z",
182
+ "signed_at": "2026-05-12T15:10:59.395Z",
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": "PYSw9abiYfW+y7IkY8udJG5LSds2a4rMimlw3rrdD0zE3vunEeV/y7oTmDD4o83OqHSCKNzF/7vMhvd/noqICQ==",
228
- "signed_at": "2026-05-12T14:06:21.970Z"
228
+ "signed_at": "2026-05-12T15:10:59.395Z"
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": "BMFmmJYP3HsHIjUqnhw8E3MiMGZJsI/eDq51we+nxUicZ8nFUQT9DhmRntAqOs6BUnsfiQNNLc/rrsNh8yg1CQ==",
259
- "signed_at": "2026-05-12T14:06:21.971Z"
259
+ "signed_at": "2026-05-12T15:10:59.396Z"
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": "VGPyDwy5BRlpn1lZthhPB6ytb4ZcU2j0KtCZbaMkyLdMugQJtK2yEuwrsDH4yEtAhTB6/A4B3eSygJckum49Ag==",
288
- "signed_at": "2026-05-12T14:06:21.971Z"
288
+ "signed_at": "2026-05-12T15:10:59.396Z"
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": "XkFGpsNnXBVslkQ48usEu9l1LjPiV2ppW+M4B63zXFBP2Puh52qYCffEPjUHYhoO5bjgTM7yCbK8XF/Dzk5wBw==",
325
- "signed_at": "2026-05-12T14:06:21.971Z",
325
+ "signed_at": "2026-05-12T15:10:59.396Z",
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": "1Xqy7Kxxy6GpTvuYJPdllPzVDRFxb7N6AuxKuoaO4v91CiZLmiXt0sTIWImKJ3p9Eup6rJNDdsY71dolFhHNBA==",
382
- "signed_at": "2026-05-12T14:06:21.972Z",
382
+ "signed_at": "2026-05-12T15:10:59.396Z",
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": "QNLOmAL54S/Cmk4cdO4L2BCGkqZ/FgY4UBsKWtg/EEW+YXF5ev+a8XsUT8q5veuUa2VYcYna7rD1iAnE+2PDBA==",
417
- "signed_at": "2026-05-12T14:06:21.972Z",
417
+ "signed_at": "2026-05-12T15:10:59.397Z",
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": "aFHq4cSl3CKchnVITxx+BrAEWD33WtFFJoQtwAug5g9R3/3ABtjaXYGVQaZcdcG1AIZkMoGSPywgLQWDY7ZDCw==",
445
- "signed_at": "2026-05-12T14:06:21.972Z"
445
+ "signed_at": "2026-05-12T15:10:59.397Z"
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": "viCTUWdy6euvd2KTAo6sLvarK/FZkDtYGocxBt0H+fY94kLQGW8K5cSpqIWdUF5NUytSHBCiG4YcSze8P9Z/BQ==",
477
- "signed_at": "2026-05-12T14:06:21.973Z"
477
+ "signed_at": "2026-05-12T15:10:59.398Z"
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": "6PkUaHQi3Hxuqq/Jp4GYckvfqVEofmeT87NUH0T+pwyjlc+xZkoqNPn65f7ldciEPL86JIPi3/dDTKQbIFFBCw==",
504
- "signed_at": "2026-05-12T14:06:21.973Z"
504
+ "signed_at": "2026-05-12T15:10:59.398Z"
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": "ZenFTEzWx+DzrSXlNXhbZ70vOdJSXfrnKkAwqMlBf5nlDf38V1/hG4XCKj43snQXWr4mVJOX6ilqFLTYNIjnBw==",
556
- "signed_at": "2026-05-12T14:06:21.974Z",
556
+ "signed_at": "2026-05-12T15:10:59.398Z",
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": "ih0vpd2v2zS31JSJv7SnABoya8JlJdrXZXx4rBnrsV3Assj+dbjAP0pQ1HMT/5RX8yTTswRQsg0bJV3qmbJ3Bw==",
603
- "signed_at": "2026-05-12T14:06:21.974Z"
603
+ "signed_at": "2026-05-12T15:10:59.399Z"
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": "Lv8dHiwIqUbNsywCCB/+pYWGF+MHCvxVn1IAvR7Cnif5fy0sICv0N4SVsSb621qAAkHNshpfxqwuhbuQnE1TBA==",
640
- "signed_at": "2026-05-12T14:06:21.975Z",
640
+ "signed_at": "2026-05-12T15:10:59.399Z",
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": "BS+wrL28HHYhBpe+v84VLoq9KPBXu6alfG968katfGIoLNYQueaHP931bRmlkrjfeb6qbDf067GWdPEh7nroAw==",
675
- "signed_at": "2026-05-12T14:06:21.975Z"
675
+ "signed_at": "2026-05-12T15:10:59.399Z"
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": "vLhIYT/CC3IzxMRa+UPeqGSZTvthuwUeTMGNFMm37+TaEk0TtfwPrPyrBJLHw4W6Wt7+pufjHs46X3nTgzoRAg==",
746
- "signed_at": "2026-05-12T14:06:21.975Z"
746
+ "signed_at": "2026-05-12T15:10:59.399Z"
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": "TOcQLy/427cuf0Lw90J7A0oIeuhUmf9NXb6tOUS5K3SazCKTJujPgYSVAPZOYf1zZrRAY/aq0iqELd5cLyk5DA==",
806
- "signed_at": "2026-05-12T14:06:21.975Z"
806
+ "signed_at": "2026-05-12T15:10:59.400Z"
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": "u4IN7escQa5V+OgdtaJXLdvhmNiGZsdmGOvebTLZ30WoImT+WiksvaqSa0POGdbr6HzFkALe2RrZEH9Tr0U6Dg==",
881
- "signed_at": "2026-05-12T14:06:21.976Z"
881
+ "signed_at": "2026-05-12T15:10:59.400Z"
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": "eTGQJ3gnG24WggfwuFNNIFOWV/ttPxTa3pvx9OH28m5KDS1a4ZmOR7K8y01wk/su8bH0ClYYRfoBfKQOtRswAg==",
958
- "signed_at": "2026-05-12T14:06:21.976Z"
958
+ "signed_at": "2026-05-12T15:10:59.401Z"
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": "q7gFLPoqf/8bqATR6gt/nj0EoyUOlfzi+bZ0bT3pC9KW7O6M/ji9fT+AXSGNp6PKd+70ACb3mkMGmWgjLpQXCg==",
1015
- "signed_at": "2026-05-12T14:06:21.976Z"
1015
+ "signed_at": "2026-05-12T15:10:59.402Z"
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": "pX8rhrrzuyG3iRrPORLqTZAjzGdWK/bKPUGJG5WHSZcv4LB0kQXOit4sHG0exdXxI6HY8jyX67QY4r5vEHHACw==",
1082
- "signed_at": "2026-05-12T14:06:21.976Z"
1082
+ "signed_at": "2026-05-12T15:10:59.402Z"
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": "ypb8kNZQRdyu5mWeveB7sjCjNKXS1yXvjDJv88muzwhOs/a4Fu/Gb532js5NKyy+eCw/emrphpTZaL8R9a2lBA==",
1138
- "signed_at": "2026-05-12T14:06:21.977Z"
1138
+ "signed_at": "2026-05-12T15:10:59.402Z"
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": "346Lt+277ycRNsyAOGwLSONi4awgxKy3hP9G+BWjwaa8ySmTeqbYsbyyhtxjeohk9bV2SF+Hl2q4JdSvc/2qCQ==",
1190
- "signed_at": "2026-05-12T14:06:21.977Z"
1190
+ "signed_at": "2026-05-12T15:10:59.402Z"
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": "ewTvG5vu3ngFHyXgBur5vSKDFQsOZx0x79djGMricl7LCvQf5//OG6LZKXa+AOuEq58prRS+HgzrFA1DiTfeCQ==",
1240
- "signed_at": "2026-05-12T14:06:21.977Z"
1240
+ "signed_at": "2026-05-12T15:10:59.403Z"
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": "ZHjbKu0Em92Kimr2esL1g93mf9TmcsChBhVEMWf/lFrjeLcg8nyHEIcDstIZ3FWYgc6MQNHnc3Rup3Xp/Za1Cw==",
1314
- "signed_at": "2026-05-12T14:06:21.978Z"
1314
+ "signed_at": "2026-05-12T15:10:59.403Z"
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": "1KRxjCbAX0Rs5NTOioi1w/f1SOzDQrtRoXjTDtzEwJ+d1QzFf9cqmBlp0uXmGpL0bzEaHWIctjigSychmoL2Dw==",
1364
- "signed_at": "2026-05-12T14:06:21.978Z"
1364
+ "signed_at": "2026-05-12T15:10:59.403Z"
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": "eiajFh7w7d4g+/crGalTtw9Qsu0deVsdHkdthZSy595ifGmgu0zaFD8usKThbPhOdUCCclTYkZYz5GalQmkhCw==",
1424
- "signed_at": "2026-05-12T14:06:21.978Z"
1424
+ "signed_at": "2026-05-12T15:10:59.404Z"
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": "iSZR/fYESQVyjkcqj+O+yzU0BQfaELH5s7WizzUTWvDPDTD2ZyOnZTT1r/Zfx2l4mbPmVeFGWdYnnVFTk/i3Aw==",
1505
- "signed_at": "2026-05-12T14:06:21.979Z"
1505
+ "signed_at": "2026-05-12T15:10:59.404Z"
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": "Wjdo5YXEL8XeNZkaEueG1DOUoyalstNPzQkxD/cwP5iMrJWg/Ly+sC0Oluuqm3aU7d63z55PrbGQCJD0XVZqBg==",
1574
- "signed_at": "2026-05-12T14:06:21.979Z"
1574
+ "signed_at": "2026-05-12T15:10:59.404Z"
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": "c/l7dOHe0Zj6Ag3abUaEie6o0f8M4rhY5aPI9/wG4z6FDue9PzCVw8vUGoITFgg89g97lMfy2C3CE2PegQoFCw==",
1639
- "signed_at": "2026-05-12T14:06:21.980Z"
1639
+ "signed_at": "2026-05-12T15:10:59.405Z"
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": "9FgcJvYeo07QxQ+mnVRQk4jYLDMO/AVSXMs8cueO2f/qMOTQmrhBMVhj5ze7hzvXpGkp7EK/3Q1XKqde61JMAg==",
1708
- "signed_at": "2026-05-12T14:06:21.980Z"
1708
+ "signed_at": "2026-05-12T15:10:59.405Z"
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": "xRA0XZf7VPtuBtbsm41bay9yBLphw/hlL3YxIUrpko5g9ldM3oJe9o1qSwzIj/wSnQSI29qqPpNsnlks+HEOCA==",
1789
- "signed_at": "2026-05-12T14:06:21.980Z"
1789
+ "signed_at": "2026-05-12T15:10:59.405Z"
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": "GcU50DStuN1gU/Evm/sFRgeieQbqffVp12rgbGnasRX89Q7kM4ltFXB+bgCXHIvICzYb78hPIifWQb9UVupWBQ==",
1851
- "signed_at": "2026-05-12T14:06:21.980Z"
1851
+ "signed_at": "2026-05-12T15:10:59.406Z"
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": "onIazpFoL1t4PMNRsoF06ggnl7BzCKjt0x+ZmVfWfyt1V06DgllsrbN3AAz4+g4jW2Sc71q0vIFKfwEUWpGVAQ==",
1922
- "signed_at": "2026-05-12T14:06:21.981Z"
1922
+ "signed_at": "2026-05-12T15:10:59.406Z"
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": "P0Yv4CtqbnBNP6nSIxQUYYHL7T7ci+iE7iE2UXVfnMPeWVdKG2nvRePjBXc3JZTLima1Txn/I5ocDNhLTIeUAQ==",
1984
- "signed_at": "2026-05-12T14:06:21.981Z"
1984
+ "signed_at": "2026-05-12T15:10:59.406Z"
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": "2pv81lLRbazpHqundCANb3YiLB4lkVsYctIDvI8rxSvHxhPS9jYXqmAoB5APSdDuOaew6XqpfZOehQUj9WmyBw==",
2037
- "signed_at": "2026-05-12T14:06:21.982Z"
2037
+ "signed_at": "2026-05-12T15:10:59.407Z"
2038
2038
  },
2039
2039
  {
2040
2040
  "name": "age-gates-child-safety",
@@ -2102,7 +2102,7 @@
2102
2102
  "US state adult-site age-verification laws — 19+ states by mid-2026 (TX HB 18 upheld by SCOTUS June 2025 in Free Speech Coalition v. Paxton); track ongoing challenges in remaining states"
2103
2103
  ],
2104
2104
  "signature": "BJ/YYnGVXeSBaR9oWAVrcNX7Wz+kE8R4CghX6+XEI/qY89fyrkKNNwo2veqqf49wffJhHVJ1wTp8ZDECjNp+Dw==",
2105
- "signed_at": "2026-05-12T14:06:21.982Z"
2105
+ "signed_at": "2026-05-12T15:10:59.407Z"
2106
2106
  }
2107
2107
  ]
2108
2108
  }