@blamejs/exceptd-skills 0.14.10 → 0.14.11
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/CHANGELOG.md +20 -0
- package/bin/exceptd.js +112 -42
- package/data/_indexes/_meta.json +2 -2
- package/lib/citation-resolve.js +4 -1
- package/lib/collectors/cicd-pipeline-compromise.js +8 -2
- package/lib/collectors/citation-hygiene.js +10 -5
- package/lib/collectors/crypto-codebase.js +11 -6
- package/lib/collectors/sbom.js +9 -2
- package/lib/collectors/scan-excludes.js +0 -0
- package/lib/collectors/secrets.js +32 -4
- package/lib/cve-cli.js +5 -1
- package/lib/framework-gap.js +21 -2
- package/lib/prefetch.js +5 -1
- package/lib/refresh-external.js +29 -4
- package/lib/refresh-network.js +16 -1
- package/manifest.json +44 -44
- package/orchestrator/index.js +23 -3
- package/package.json +1 -1
- package/sbom.cdx.json +40 -40
package/lib/framework-gap.js
CHANGED
|
@@ -141,7 +141,7 @@ function lagScore(frameworkId, controlGaps, globalFrameworks) {
|
|
|
141
141
|
* @param {object} cveCatalog - Parsed cve-catalog.json (optional)
|
|
142
142
|
* @returns {{ frameworks: object, universal_gaps: object[], theater_risks: object[] }}
|
|
143
143
|
*/
|
|
144
|
-
function gapReport(frameworkIds, threatScenario, controlGaps, cveCatalog = {}) {
|
|
144
|
+
function gapReport(frameworkIds, threatScenario, controlGaps, cveCatalog = {}, opts = {}) {
|
|
145
145
|
const scenario = threatScenario.toLowerCase();
|
|
146
146
|
|
|
147
147
|
const relevantGaps = Object.entries(controlGaps).filter(([, gap]) => {
|
|
@@ -207,6 +207,25 @@ function gapReport(frameworkIds, threatScenario, controlGaps, cveCatalog = {}) {
|
|
|
207
207
|
theater_test_present: !!g.theater_test,
|
|
208
208
|
}));
|
|
209
209
|
|
|
210
|
+
// Summary matching count. With `all` frameworks the summary counts every
|
|
211
|
+
// scenario-relevant gap across the whole catalog (relevantGaps). With an
|
|
212
|
+
// explicit framework filter the summary must agree with the per-framework
|
|
213
|
+
// body the operator actually sees — otherwise `framework-gap nist-800-53
|
|
214
|
+
// <cve>` shows e.g. "2 matching control gap(s)" per-framework but "Summary:
|
|
215
|
+
// 8 matching gaps" (every framework's hits, pre-filter). Sum the per-
|
|
216
|
+
// framework gap_count so body + summary agree. De-duplicate by gap key in
|
|
217
|
+
// case a single gap matches multiple requested frameworks.
|
|
218
|
+
let matchingGapCount;
|
|
219
|
+
if (opts.allFrameworks) {
|
|
220
|
+
matchingGapCount = relevantGaps.length;
|
|
221
|
+
} else {
|
|
222
|
+
const seen = new Set();
|
|
223
|
+
for (const id of frameworkIds) {
|
|
224
|
+
for (const g of frameworkResults[id]?.gaps ?? []) seen.add(g.id);
|
|
225
|
+
}
|
|
226
|
+
matchingGapCount = seen.size;
|
|
227
|
+
}
|
|
228
|
+
|
|
210
229
|
return {
|
|
211
230
|
threat_scenario: threatScenario,
|
|
212
231
|
frameworks: frameworkResults,
|
|
@@ -217,7 +236,7 @@ function gapReport(frameworkIds, threatScenario, controlGaps, cveCatalog = {}) {
|
|
|
217
236
|
})),
|
|
218
237
|
theater_risks: theaterRisks,
|
|
219
238
|
summary: {
|
|
220
|
-
total_gaps:
|
|
239
|
+
total_gaps: matchingGapCount,
|
|
221
240
|
universal_gaps: universalGaps.length,
|
|
222
241
|
theater_risk_controls: theaterRisks.length
|
|
223
242
|
}
|
package/lib/prefetch.js
CHANGED
|
@@ -112,7 +112,7 @@ function parseArgs(argv) {
|
|
|
112
112
|
for (let i = 2; i < argv.length; i++) {
|
|
113
113
|
const a = argv[i];
|
|
114
114
|
if (a === "--force") out.force = true;
|
|
115
|
-
else if (a === "--no-network" || a === "--dry-run") out.noNetwork = true;
|
|
115
|
+
else if (a === "--no-network" || a === "--dry-run" || a === "--air-gap") out.noNetwork = true;
|
|
116
116
|
else if (a === "--quiet") out.quiet = true;
|
|
117
117
|
else if (a === "--help" || a === "-h") out.help = true;
|
|
118
118
|
else if (a === "--source") out.source = argv[++i];
|
|
@@ -122,6 +122,10 @@ function parseArgs(argv) {
|
|
|
122
122
|
else if (a === "--cache-dir") out.cacheDir = path.resolve(argv[++i]);
|
|
123
123
|
else if (a.startsWith("--cache-dir=")) out.cacheDir = path.resolve(a.slice("--cache-dir=".length));
|
|
124
124
|
}
|
|
125
|
+
// The global air-gap switch implies a report-only / no-egress run: treat
|
|
126
|
+
// EXCEPTD_AIR_GAP=1 the same as --no-network so prefetch never plans live
|
|
127
|
+
// fetches under air-gap.
|
|
128
|
+
if (process.env.EXCEPTD_AIR_GAP === "1") out.noNetwork = true;
|
|
125
129
|
return out;
|
|
126
130
|
}
|
|
127
131
|
|
package/lib/refresh-external.js
CHANGED
|
@@ -202,10 +202,11 @@ Outputs:
|
|
|
202
202
|
|
|
203
203
|
Exit codes (refresh's own scheme — distinct from the seven-phase verbs):
|
|
204
204
|
0 applied (or a clean dry-run with no diffs to surface)
|
|
205
|
+
1 apply-mode downstream gate failed (build-indexes, or a per-source error)
|
|
205
206
|
2 error (unknown --source, unreadable fixture, invalid --advisory id, air-gap refusal)
|
|
206
207
|
3 draft produced, editorial review pending (a successful --advisory seed —
|
|
207
208
|
NOT a failure; run --advisory <id> --apply to land it, or curate first)
|
|
208
|
-
4 network/source unreachable
|
|
209
|
+
4 network/source unreachable OR cache precondition refused (unsigned/stale/tampered/unindexed cache)
|
|
209
210
|
Note: exit 3 here means "review needed", which differs from \`exceptd run\`'s
|
|
210
211
|
exit 3 ("ran but no evidence"). Script \`refresh --advisory\` on the body's
|
|
211
212
|
\`ok\` field, not on \`$? == 0\`.
|
|
@@ -1252,8 +1253,18 @@ async function withCatalogLock(catalogPath, mutator) {
|
|
|
1252
1253
|
}
|
|
1253
1254
|
|
|
1254
1255
|
function chosenSources(opts) {
|
|
1255
|
-
|
|
1256
|
+
// Flag-absent (opts.source == null) means "all sources" — the default
|
|
1257
|
+
// refresh behavior. Flag-present-but-empty (`--source ""`, or a value that
|
|
1258
|
+
// trims to nothing like `--source ","`) is an operator error, not a
|
|
1259
|
+
// silent run-everything: refuse and list the valid names so the typo is
|
|
1260
|
+
// visible rather than masquerading as a full refresh.
|
|
1261
|
+
if (opts.source == null) return Object.values(ALL_SOURCES);
|
|
1256
1262
|
const names = opts.source.split(",").map((s) => s.trim()).filter(Boolean);
|
|
1263
|
+
if (names.length === 0) {
|
|
1264
|
+
const err = new Error(`refresh-external: --source requires at least one source name. Valid: ${Object.keys(ALL_SOURCES).join(", ")}`);
|
|
1265
|
+
err._exceptd_unknown_source = true;
|
|
1266
|
+
throw err;
|
|
1267
|
+
}
|
|
1257
1268
|
const out = [];
|
|
1258
1269
|
for (const n of names) {
|
|
1259
1270
|
if (!ALL_SOURCES[n]) {
|
|
@@ -1428,7 +1439,7 @@ async function main() {
|
|
|
1428
1439
|
// the seed is printed to stdout for review.
|
|
1429
1440
|
// An empty --advisory value (`--advisory ""` / `--advisory=`) must error
|
|
1430
1441
|
// rather than silently falling through to a full-refresh dry-run.
|
|
1431
|
-
if (opts.advisory === "") {
|
|
1442
|
+
if (opts.advisory != null && opts.advisory.trim() === "") {
|
|
1432
1443
|
process.stderr.write(JSON.stringify({
|
|
1433
1444
|
ok: false,
|
|
1434
1445
|
error: "refresh: --advisory requires a non-empty identifier (e.g. CVE-2026-1234, GHSA-xxxx-xxxx-xxxx, MAL-2026-1).",
|
|
@@ -1496,11 +1507,22 @@ async function main() {
|
|
|
1496
1507
|
? await Promise.all(sources.map(runOne))
|
|
1497
1508
|
: await sequential(sources, runOne);
|
|
1498
1509
|
|
|
1510
|
+
// Cache-integrity refusals (sha256 mismatch, missing/partial _index.json,
|
|
1511
|
+
// unindexed payload) are thrown by readCachedJson with _exceptd_exit_code=4
|
|
1512
|
+
// but caught inside runOne and returned as a per-source error — so the
|
|
1513
|
+
// throw never reaches main().catch where the code is otherwise honored.
|
|
1514
|
+
// Carry the marker through here so main() can prefer exit 4 (BLOCKED /
|
|
1515
|
+
// precondition refusal) over the generic per-source-failure exit 1.
|
|
1516
|
+
let cacheIntegrityFailure = false;
|
|
1499
1517
|
for (const { src, diff, error } of outcomes) {
|
|
1500
1518
|
if (error) {
|
|
1501
1519
|
log(`\n [${src.name}] ${src.description}`);
|
|
1502
1520
|
log(` error: ${error.message}`);
|
|
1503
1521
|
report.sources[src.name] = { status: "error", error: error.message };
|
|
1522
|
+
if (error._exceptd_cache_integrity || error._exceptd_exit_code === 4) {
|
|
1523
|
+
report.sources[src.name].cache_integrity = true;
|
|
1524
|
+
cacheIntegrityFailure = true;
|
|
1525
|
+
}
|
|
1504
1526
|
hadFailure = true;
|
|
1505
1527
|
continue;
|
|
1506
1528
|
}
|
|
@@ -1550,7 +1572,10 @@ async function main() {
|
|
|
1550
1572
|
// truncate buffered stdout (refresh-report path log line, summary log
|
|
1551
1573
|
// lines piped to a consumer). exitCode + return lets the event loop end
|
|
1552
1574
|
// naturally and stdout drains in full.
|
|
1553
|
-
|
|
1575
|
+
// Prefer the documented BLOCKED (4) code when any source refused on a
|
|
1576
|
+
// cache-integrity precondition; fall back to generic failure (1) for other
|
|
1577
|
+
// per-source errors / downstream gate failures.
|
|
1578
|
+
process.exitCode = cacheIntegrityFailure ? 4 : (hadFailure ? 1 : 0);
|
|
1554
1579
|
}
|
|
1555
1580
|
|
|
1556
1581
|
async function sequential(items, fn) {
|
package/lib/refresh-network.js
CHANGED
|
@@ -45,14 +45,16 @@ const PKG_NAME = "@blamejs/exceptd-skills";
|
|
|
45
45
|
const REQUEST_TIMEOUT_MS = 15000;
|
|
46
46
|
|
|
47
47
|
function parseArgs(argv) {
|
|
48
|
-
const out = { force: false, dryRun: false, timeoutMs: REQUEST_TIMEOUT_MS, json: false };
|
|
48
|
+
const out = { force: false, dryRun: false, timeoutMs: REQUEST_TIMEOUT_MS, json: false, airGap: false };
|
|
49
49
|
for (let i = 2; i < argv.length; i++) {
|
|
50
50
|
const a = argv[i];
|
|
51
51
|
if (a === "--force") out.force = true;
|
|
52
52
|
else if (a === "--dry-run") out.dryRun = true;
|
|
53
53
|
else if (a === "--json") out.json = true;
|
|
54
|
+
else if (a === "--air-gap") out.airGap = true;
|
|
54
55
|
else if (a === "--timeout") out.timeoutMs = parseInt(argv[++i], 10) || REQUEST_TIMEOUT_MS;
|
|
55
56
|
}
|
|
57
|
+
if (process.env.EXCEPTD_AIR_GAP === "1") out.airGap = true;
|
|
56
58
|
return out;
|
|
57
59
|
}
|
|
58
60
|
|
|
@@ -275,6 +277,19 @@ async function main() {
|
|
|
275
277
|
const localPkg = JSON.parse(fs.readFileSync(path.join(ROOT, "package.json"), "utf8"));
|
|
276
278
|
const localVersion = localPkg.version;
|
|
277
279
|
|
|
280
|
+
// Air-gap refusal. --network needs egress to registry.npmjs.org for the
|
|
281
|
+
// /latest metadata + tarball pull. Under air-gap there is no offline
|
|
282
|
+
// substitute (the test fixture path remains available for offline tests),
|
|
283
|
+
// so refuse before any network attempt and point at the offline workflow.
|
|
284
|
+
if (opts.airGap && !process.env.EXCEPTD_REGISTRY_FIXTURE) {
|
|
285
|
+
emit({
|
|
286
|
+
ok: false,
|
|
287
|
+
source: "air-gap",
|
|
288
|
+
error: "air-gap: refresh --network requires network egress; refused. Use --from-cache --apply for the offline path.",
|
|
289
|
+
}, opts.json);
|
|
290
|
+
process.exitCode = 4; return;
|
|
291
|
+
}
|
|
292
|
+
|
|
278
293
|
progress(`local v${localVersion} — querying npm registry...`, opts.json);
|
|
279
294
|
|
|
280
295
|
let meta;
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceptd-security",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.11",
|
|
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-15",
|
|
55
55
|
"signature": "lXhZgoIrrVloO3XaTvo/43AxZn4mwErstd7DR0O/oVhD3AOGODM4HqrageYEou9WKOdMEGP5mJNTjJsXdP5NDA==",
|
|
56
|
-
"signed_at": "2026-05-
|
|
56
|
+
"signed_at": "2026-05-27T20:34:53.045Z",
|
|
57
57
|
"cwe_refs": [
|
|
58
58
|
"CWE-125",
|
|
59
59
|
"CWE-362",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
],
|
|
124
124
|
"last_threat_review": "2026-05-17",
|
|
125
125
|
"signature": "ztSKk/zFMFbT12qRcEeBKpydBn7fTT86KxMmor0DTCoKQWk5fJ0fSInfP1XMSB6rFk4/SuSjKVxQRMKVJ5a+Cg==",
|
|
126
|
-
"signed_at": "2026-05-
|
|
126
|
+
"signed_at": "2026-05-27T20:34:53.047Z",
|
|
127
127
|
"cwe_refs": [
|
|
128
128
|
"CWE-1039",
|
|
129
129
|
"CWE-1426",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
],
|
|
197
197
|
"last_threat_review": "2026-05-17",
|
|
198
198
|
"signature": "K6QdPHNK5c4K5QFjrW0QsUhjp71D7SOisSoulwPNSvKRdi2rY+yg0kdckijBMkLMsVPyUvcC9giu93mKJ1OZDg==",
|
|
199
|
-
"signed_at": "2026-05-
|
|
199
|
+
"signed_at": "2026-05-27T20:34:53.047Z",
|
|
200
200
|
"cwe_refs": [
|
|
201
201
|
"CWE-22",
|
|
202
202
|
"CWE-345",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"framework_gaps": [],
|
|
249
249
|
"last_threat_review": "2026-05-22",
|
|
250
250
|
"signature": "Qd3SBWmUAaaT++e1Ry2wBIz/dCBmNBMl0+4Rb0etvJLES0fIBEAkU1mTbgNZnT5XOg9J5twdUpymWtmKnDDQCQ==",
|
|
251
|
-
"signed_at": "2026-05-
|
|
251
|
+
"signed_at": "2026-05-27T20:34:53.048Z"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"name": "compliance-theater",
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
],
|
|
280
280
|
"last_threat_review": "2026-05-22",
|
|
281
281
|
"signature": "F2Shxae0ua0gPtvwzTRVzzHaIgJcFDRT3/akLUAZ4aaMQhkleKkcTaTpkjp+pTVEdPfLeLGNCeAOMs+whVYOBg==",
|
|
282
|
-
"signed_at": "2026-05-
|
|
282
|
+
"signed_at": "2026-05-27T20:34:53.048Z"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"name": "exploit-scoring",
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
],
|
|
309
309
|
"last_threat_review": "2026-05-18",
|
|
310
310
|
"signature": "NA1hoQycvQhSUoG5rwlXX0mOVmGxoXRVezkELGEA2nZOdGis4gXkHT3O6Sfw7zxE4JuMrsCb65TEeOWk9WEPDg==",
|
|
311
|
-
"signed_at": "2026-05-
|
|
311
|
+
"signed_at": "2026-05-27T20:34:53.049Z"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"name": "rag-pipeline-security",
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
],
|
|
346
346
|
"last_threat_review": "2026-05-22",
|
|
347
347
|
"signature": "W3pS8lnaCP96TQzsJpG5d5yv5IwgaQyS4Z2Ctcz5BOJf6LbajSIgeDgTZ4f4Bhr5m4E7KsgWGjZS4x7Fwd33BQ==",
|
|
348
|
-
"signed_at": "2026-05-
|
|
348
|
+
"signed_at": "2026-05-27T20:34:53.049Z",
|
|
349
349
|
"cwe_refs": [
|
|
350
350
|
"CWE-1395",
|
|
351
351
|
"CWE-1426"
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
],
|
|
406
406
|
"last_threat_review": "2026-05-17",
|
|
407
407
|
"signature": "/WDGygh1Ck4yWlBWDGtEUVCqKB8d+UaJXoAoBXujtt+GAl8JbMNpaN1TvI0WkEltQ9dTxaAzSn20/eVDqv8iDQ==",
|
|
408
|
-
"signed_at": "2026-05-
|
|
408
|
+
"signed_at": "2026-05-27T20:34:53.049Z",
|
|
409
409
|
"d3fend_refs": [
|
|
410
410
|
"D3-CA",
|
|
411
411
|
"D3-CSPP",
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
"framework_gaps": [],
|
|
441
441
|
"last_threat_review": "2026-05-22",
|
|
442
442
|
"signature": "za1NKBpy9LC91F/ESO/qhUfmvVr8GNItQOjR5OJLeHm+2dQ9HHiFWQK2eo53V/n/0uhubuggURA3yS6kJuWwBg==",
|
|
443
|
-
"signed_at": "2026-05-
|
|
443
|
+
"signed_at": "2026-05-27T20:34:53.050Z",
|
|
444
444
|
"cwe_refs": [
|
|
445
445
|
"CWE-1188"
|
|
446
446
|
],
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
"framework_gaps": [],
|
|
475
475
|
"last_threat_review": "2026-05-18",
|
|
476
476
|
"signature": "xiHAhhdufm9hCKU8PLiPE0MX65ej2F4OZwtlWLGLCiie9/km+Kiqbt192LcMvr94v83C98pb9wIaqFsFWft6AQ==",
|
|
477
|
-
"signed_at": "2026-05-
|
|
477
|
+
"signed_at": "2026-05-27T20:34:53.050Z",
|
|
478
478
|
"forward_watch": [
|
|
479
479
|
"New AI attack classes as ATLAS v6 publishes",
|
|
480
480
|
"Post-quantum adversary capability timeline",
|
|
@@ -513,7 +513,7 @@
|
|
|
513
513
|
"framework_gaps": [],
|
|
514
514
|
"last_threat_review": "2026-05-01",
|
|
515
515
|
"signature": "oYsSk35N2Uzq7MRofACykylcVwkgPhI4luWZ14vmQT+gUKLyZiKVOUJbe1+7lGl6BYPRN0sUDQ0f7S5Eu5w2Ag==",
|
|
516
|
-
"signed_at": "2026-05-
|
|
516
|
+
"signed_at": "2026-05-27T20:34:53.051Z"
|
|
517
517
|
},
|
|
518
518
|
{
|
|
519
519
|
"name": "zeroday-gap-learn",
|
|
@@ -540,7 +540,7 @@
|
|
|
540
540
|
"framework_gaps": [],
|
|
541
541
|
"last_threat_review": "2026-05-18",
|
|
542
542
|
"signature": "igRqYyU1unRFH40BsPyAR62SPrk8QZv8dPGb8S9O9EvLCNOZAzm3t+HdT/NKqzWHwrpomOzkkkyLfYI/0qTUDA==",
|
|
543
|
-
"signed_at": "2026-05-
|
|
543
|
+
"signed_at": "2026-05-27T20:34:53.051Z",
|
|
544
544
|
"forward_watch": [
|
|
545
545
|
"New CISA KEV entries",
|
|
546
546
|
"New ATLAS TTP additions in each ATLAS release",
|
|
@@ -604,7 +604,7 @@
|
|
|
604
604
|
],
|
|
605
605
|
"last_threat_review": "2026-05-22",
|
|
606
606
|
"signature": "i/17u4kJiSpcZAz7LnTyRePFugQOstQ1P4kVoe0oGf4E2/j8oIN9U9DccjUn/YHZhKWIJ2AILG/DMhvMrr3bBg==",
|
|
607
|
-
"signed_at": "2026-05-
|
|
607
|
+
"signed_at": "2026-05-27T20:34:53.051Z",
|
|
608
608
|
"cwe_refs": [
|
|
609
609
|
"CWE-327"
|
|
610
610
|
],
|
|
@@ -652,7 +652,7 @@
|
|
|
652
652
|
],
|
|
653
653
|
"last_threat_review": "2026-05-22",
|
|
654
654
|
"signature": "QuOVaQ4E2Sl39TClbhZ7HA9XrYAyRrDL44HY3RTE7aWLue0hV2cxaBt40ALGmHS++631QGFDlZTLZI77Tr6nAA==",
|
|
655
|
-
"signed_at": "2026-05-
|
|
655
|
+
"signed_at": "2026-05-27T20:34:53.052Z"
|
|
656
656
|
},
|
|
657
657
|
{
|
|
658
658
|
"name": "security-maturity-tiers",
|
|
@@ -689,7 +689,7 @@
|
|
|
689
689
|
],
|
|
690
690
|
"last_threat_review": "2026-05-01",
|
|
691
691
|
"signature": "8Px1s2lDj10/Q6erwEQlXgUHM1+OTruUR8qAHPX7Oo3k/l69N6P9sm0PsafS9wDFtj9l5C/OiLiFgzMlMt6vBw==",
|
|
692
|
-
"signed_at": "2026-05-
|
|
692
|
+
"signed_at": "2026-05-27T20:34:53.052Z",
|
|
693
693
|
"cwe_refs": [
|
|
694
694
|
"CWE-1188"
|
|
695
695
|
]
|
|
@@ -724,7 +724,7 @@
|
|
|
724
724
|
"framework_gaps": [],
|
|
725
725
|
"last_threat_review": "2026-05-11",
|
|
726
726
|
"signature": "urRcataVWg6/utyEkSiOWoNxTL8sABRjPR7ShyDfZGnAozFph/yDktSoaPVxQDXwu9EfJE+qhUW5OYR/yJECBQ==",
|
|
727
|
-
"signed_at": "2026-05-
|
|
727
|
+
"signed_at": "2026-05-27T20:34:53.052Z"
|
|
728
728
|
},
|
|
729
729
|
{
|
|
730
730
|
"name": "attack-surface-pentest",
|
|
@@ -796,7 +796,7 @@
|
|
|
796
796
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — Microsoft Edge 4-bug sandbox escape by Orange Tsai (DEVCORE); forward-watch only (browser sandbox, out of current playbook scope); track Microsoft Edge security advisory and KEV add"
|
|
797
797
|
],
|
|
798
798
|
"signature": "C7lv65/Ecm8JJgSKxrX5lxx0YFzKWtrIQSKp+vy50I5e8945s1JmifGUUrnQwRQhq/Pkv7EmfiH5XSO8h75bDg==",
|
|
799
|
-
"signed_at": "2026-05-
|
|
799
|
+
"signed_at": "2026-05-27T20:34:53.053Z"
|
|
800
800
|
},
|
|
801
801
|
{
|
|
802
802
|
"name": "fuzz-testing-strategy",
|
|
@@ -856,7 +856,7 @@
|
|
|
856
856
|
"OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
|
|
857
857
|
],
|
|
858
858
|
"signature": "Z7ypCUnXx8JpLtgxxB6RHNi39w74AmrGY1N4ofAGCXhkuM2EaFVm1AU0dvl9UQ1bVLfHKEDGqMO/TwlIY7RABg==",
|
|
859
|
-
"signed_at": "2026-05-
|
|
859
|
+
"signed_at": "2026-05-27T20:34:53.053Z"
|
|
860
860
|
},
|
|
861
861
|
{
|
|
862
862
|
"name": "dlp-gap-analysis",
|
|
@@ -931,7 +931,7 @@
|
|
|
931
931
|
"Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
|
|
932
932
|
],
|
|
933
933
|
"signature": "IgEnpHOhCftAyfUNdKsjbrd169T9pJkk/rRM2ZEna+H18y7p5x48+1kME2sJMZjJuyAdQFBJi8PJXZFwLGI+DQ==",
|
|
934
|
-
"signed_at": "2026-05-
|
|
934
|
+
"signed_at": "2026-05-27T20:34:53.053Z"
|
|
935
935
|
},
|
|
936
936
|
{
|
|
937
937
|
"name": "supply-chain-integrity",
|
|
@@ -1010,7 +1010,7 @@
|
|
|
1010
1010
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — NVIDIA Megatron Bridge path traversal by haehae; AI training-stack file-system trust boundary; track patch and SBOM-attestation impact"
|
|
1011
1011
|
],
|
|
1012
1012
|
"signature": "pcLrM98A3vUSZRjwNAk0aZ9umvOwB41XCLLsCOy/IebB2F/06oIrGUKkMHtHwm4pTVPShMMcKdZQQ3jz30FnCg==",
|
|
1013
|
-
"signed_at": "2026-05-
|
|
1013
|
+
"signed_at": "2026-05-27T20:34:53.054Z"
|
|
1014
1014
|
},
|
|
1015
1015
|
{
|
|
1016
1016
|
"name": "defensive-countermeasure-mapping",
|
|
@@ -1067,7 +1067,7 @@
|
|
|
1067
1067
|
],
|
|
1068
1068
|
"last_threat_review": "2026-05-11",
|
|
1069
1069
|
"signature": "G5q5elh7Q7eu2xcwTVQJGDTGfvZR0OGQaLSLJPb2wjzCHFF8PWuZfCHZdjjqisiRzRWPyLlzgfHeMJqOdy7cBw==",
|
|
1070
|
-
"signed_at": "2026-05-
|
|
1070
|
+
"signed_at": "2026-05-27T20:34:53.054Z"
|
|
1071
1071
|
},
|
|
1072
1072
|
{
|
|
1073
1073
|
"name": "identity-assurance",
|
|
@@ -1134,7 +1134,7 @@
|
|
|
1134
1134
|
"d3fend_refs": [],
|
|
1135
1135
|
"last_threat_review": "2026-05-11",
|
|
1136
1136
|
"signature": "Wv5hGMeHjlaQK1zwicVCA7AvdKgJBgvcjdpGM9Ywahh9tagAKhbkOjybowDQZzu7OZ3bDkbh6pBYc1Sdwr6NAA==",
|
|
1137
|
-
"signed_at": "2026-05-
|
|
1137
|
+
"signed_at": "2026-05-27T20:34:53.054Z"
|
|
1138
1138
|
},
|
|
1139
1139
|
{
|
|
1140
1140
|
"name": "ot-ics-security",
|
|
@@ -1190,7 +1190,7 @@
|
|
|
1190
1190
|
"d3fend_refs": [],
|
|
1191
1191
|
"last_threat_review": "2026-05-11",
|
|
1192
1192
|
"signature": "8t5qKHd3yWi57dvG36YQkLN/X9bQWqtEiYjay4IfSmqhJpM/xXPaQVKNGz3wscrO8OLKUZ0OaX7Mj5kzpgBKBQ==",
|
|
1193
|
-
"signed_at": "2026-05-
|
|
1193
|
+
"signed_at": "2026-05-27T20:34:53.055Z"
|
|
1194
1194
|
},
|
|
1195
1195
|
{
|
|
1196
1196
|
"name": "coordinated-vuln-disclosure",
|
|
@@ -1242,7 +1242,7 @@
|
|
|
1242
1242
|
"NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
|
|
1243
1243
|
],
|
|
1244
1244
|
"signature": "GDGt4UPqBa04PjlpSmpyihGzd3OgfBN7jaAK5tfwp+LRSs3ygKOdbeivUCCHNagTY1hE6hG2Ou40ADfBFuXeAg==",
|
|
1245
|
-
"signed_at": "2026-05-
|
|
1245
|
+
"signed_at": "2026-05-27T20:34:53.055Z"
|
|
1246
1246
|
},
|
|
1247
1247
|
{
|
|
1248
1248
|
"name": "threat-modeling-methodology",
|
|
@@ -1292,7 +1292,7 @@
|
|
|
1292
1292
|
"PASTA v2 updates incorporating AI/ML application threats"
|
|
1293
1293
|
],
|
|
1294
1294
|
"signature": "rFBpOQEJUPpl+v88Lw/WqVJRhTl80vy0VbPAbzQj3Q0suJRRrJg368I9uKu5LXIBKFDvKxnGIcIzbGg9NUtaCA==",
|
|
1295
|
-
"signed_at": "2026-05-
|
|
1295
|
+
"signed_at": "2026-05-27T20:34:53.055Z"
|
|
1296
1296
|
},
|
|
1297
1297
|
{
|
|
1298
1298
|
"name": "webapp-security",
|
|
@@ -1366,7 +1366,7 @@
|
|
|
1366
1366
|
"d3fend_refs": [],
|
|
1367
1367
|
"last_threat_review": "2026-05-11",
|
|
1368
1368
|
"signature": "ux85YI4t2mVHOyt744Yin1HHy+z11JIFygjKfFfQOBBl5QVV3A267jeIy7utix85irMcpZm/T3yx/ooqiK2tBA==",
|
|
1369
|
-
"signed_at": "2026-05-
|
|
1369
|
+
"signed_at": "2026-05-27T20:34:53.056Z",
|
|
1370
1370
|
"forward_watch": [
|
|
1371
1371
|
"NGINX Rift CVE-2026-42945 (disclosed 2026-05-13, source depthfirst) — KEV-watch predicted CISA KEV listing by 2026-05-29; AI-assisted discovery angle; track for active-exploitation confirmation and patch advisory affecting front-door web app deployments"
|
|
1372
1372
|
]
|
|
@@ -1419,7 +1419,7 @@
|
|
|
1419
1419
|
"d3fend_refs": [],
|
|
1420
1420
|
"last_threat_review": "2026-05-15",
|
|
1421
1421
|
"signature": "IIXnkZ5ZNqFwOto5KfytADTLLZLoyXNZACD1ORZ40P1HUAQxe6u2uyXFzzsfuob4Uy06jNkRGr2FFgCphUH1Cw==",
|
|
1422
|
-
"signed_at": "2026-05-
|
|
1422
|
+
"signed_at": "2026-05-27T20:34:53.056Z"
|
|
1423
1423
|
},
|
|
1424
1424
|
{
|
|
1425
1425
|
"name": "sector-healthcare",
|
|
@@ -1479,7 +1479,7 @@
|
|
|
1479
1479
|
"d3fend_refs": [],
|
|
1480
1480
|
"last_threat_review": "2026-05-11",
|
|
1481
1481
|
"signature": "AhF9KF8ZBlDteciV+F8IBSmFVYCvQOn44GmD4rZjgLoPxfIv/QE1/vSkK32zyqDKtHWkLSXExbkkPkxA/V6dDw==",
|
|
1482
|
-
"signed_at": "2026-05-
|
|
1482
|
+
"signed_at": "2026-05-27T20:34:53.057Z"
|
|
1483
1483
|
},
|
|
1484
1484
|
{
|
|
1485
1485
|
"name": "sector-financial",
|
|
@@ -1560,7 +1560,7 @@
|
|
|
1560
1560
|
"TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
|
|
1561
1561
|
],
|
|
1562
1562
|
"signature": "HQgZvb4ReziEz5rNFr8i/O8/rJEZR+iHRROT7m/D2QUqhrcNISPkYXENsUZlG8xapzy/Ik92ehkseyj4hdmhCQ==",
|
|
1563
|
-
"signed_at": "2026-05-
|
|
1563
|
+
"signed_at": "2026-05-27T20:34:53.057Z"
|
|
1564
1564
|
},
|
|
1565
1565
|
{
|
|
1566
1566
|
"name": "sector-federal-government",
|
|
@@ -1629,7 +1629,7 @@
|
|
|
1629
1629
|
"Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
|
|
1630
1630
|
],
|
|
1631
1631
|
"signature": "linxmsXZiOYtcs71sSWgGCrvb8xQfmxmtTY5PRvZJ0/8FgJulo0tQtejzexYG775s7XhjAmGsDP238BQTQ8ADA==",
|
|
1632
|
-
"signed_at": "2026-05-
|
|
1632
|
+
"signed_at": "2026-05-27T20:34:53.057Z"
|
|
1633
1633
|
},
|
|
1634
1634
|
{
|
|
1635
1635
|
"name": "sector-energy",
|
|
@@ -1694,7 +1694,7 @@
|
|
|
1694
1694
|
"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"
|
|
1695
1695
|
],
|
|
1696
1696
|
"signature": "JjBfc0ovta560Clk0x3QGRM5osFJDwcvpy3rT7QEGdCIL827jzE8QCow1C8deXq+4JhY2sA/d7/8IsxikdlkCg==",
|
|
1697
|
-
"signed_at": "2026-05-
|
|
1697
|
+
"signed_at": "2026-05-27T20:34:53.058Z"
|
|
1698
1698
|
},
|
|
1699
1699
|
{
|
|
1700
1700
|
"name": "sector-telecom",
|
|
@@ -1780,7 +1780,7 @@
|
|
|
1780
1780
|
"O-RAN SFG / WG11 security specifications"
|
|
1781
1781
|
],
|
|
1782
1782
|
"signature": "JWVxKFoKrbX4d+Tko1d4OBdwyg25MfFFKn4CT6E/CzH+YwnU3T6Y76uBQIKg3+gIGTvPduqyvQwQQ5FxKDuPBw==",
|
|
1783
|
-
"signed_at": "2026-05-
|
|
1783
|
+
"signed_at": "2026-05-27T20:34:53.058Z"
|
|
1784
1784
|
},
|
|
1785
1785
|
{
|
|
1786
1786
|
"name": "api-security",
|
|
@@ -1849,7 +1849,7 @@
|
|
|
1849
1849
|
"d3fend_refs": [],
|
|
1850
1850
|
"last_threat_review": "2026-05-18",
|
|
1851
1851
|
"signature": "BmCRCestWqr55+fCynEhtAl5NWLT+xLTkpwS0Icp3SaoZOw/ce3Y6TtqjHRSKn4CBJq7YDiLRWxmhO3MStvOAA==",
|
|
1852
|
-
"signed_at": "2026-05-
|
|
1852
|
+
"signed_at": "2026-05-27T20:34:53.058Z",
|
|
1853
1853
|
"forward_watch": [
|
|
1854
1854
|
"NGINX Rift CVE-2026-42945 (disclosed 2026-05-13, source depthfirst) — KEV-watch predicted CISA KEV listing by 2026-05-29; track for active-exploitation confirmation and patch advisory affecting API gateway / reverse-proxy deployments",
|
|
1855
1855
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — LiteLLM 3-bug SSRF + Code Injection chain by k3vg3n; LLM-proxy API surface; track upstream patch and CVE assignments",
|
|
@@ -1935,7 +1935,7 @@
|
|
|
1935
1935
|
"CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
|
|
1936
1936
|
],
|
|
1937
1937
|
"signature": "/DV3pmZwrRySrk1OCbyI+0BQESacjupJfUX3eC2NGtXuYOBro0vndIP+z27heFxumnjU3a9sfla7/U9X+pqnDw==",
|
|
1938
|
-
"signed_at": "2026-05-
|
|
1938
|
+
"signed_at": "2026-05-27T20:34:53.059Z"
|
|
1939
1939
|
},
|
|
1940
1940
|
{
|
|
1941
1941
|
"name": "container-runtime-security",
|
|
@@ -1997,7 +1997,7 @@
|
|
|
1997
1997
|
"d3fend_refs": [],
|
|
1998
1998
|
"last_threat_review": "2026-05-15",
|
|
1999
1999
|
"signature": "E2UGSf9ATyYgzBr8uM/0ubOUmDqo1jVA7f9mVxv6LHfWGCNuQNXDyuNou9VAmUCeeXEeUYIi3AFjXkJqpOkxDA==",
|
|
2000
|
-
"signed_at": "2026-05-
|
|
2000
|
+
"signed_at": "2026-05-27T20:34:53.059Z",
|
|
2001
2001
|
"forward_watch": [
|
|
2002
2002
|
"Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — NVIDIA Container Toolkit container escape ($50K award) by chompie / IBM X-Force XOR; high-severity container/hypervisor boundary break; track patch and KEV add post-embargo"
|
|
2003
2003
|
]
|
|
@@ -2071,7 +2071,7 @@
|
|
|
2071
2071
|
"MITRE ATLAS v5.6.0 (released May 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: subsequent ATLAS minor and major releases — track next-cadence updates to agentic-AI TTPs and MLOps-pipeline-specific techniques"
|
|
2072
2072
|
],
|
|
2073
2073
|
"signature": "IL+DlRCDJN/p08iiJCFkasKcoyjcB0uWrJ6ORLjQcS1HrUa5Xt62QxVjYPHzaevlm5y36ZdmfESqsZJmzK3lCg==",
|
|
2074
|
-
"signed_at": "2026-05-
|
|
2074
|
+
"signed_at": "2026-05-27T20:34:53.059Z"
|
|
2075
2075
|
},
|
|
2076
2076
|
{
|
|
2077
2077
|
"name": "incident-response-playbook",
|
|
@@ -2133,7 +2133,7 @@
|
|
|
2133
2133
|
"NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
|
|
2134
2134
|
],
|
|
2135
2135
|
"signature": "MmjLjlmOMLjhJJ4ZfR8MYlHam+ZB+eSqfh6Nv+DecaG4O5zeo9DBP/iL3cbyDVZxmhnhivgJild2ccYeWTeZAg==",
|
|
2136
|
-
"signed_at": "2026-05-
|
|
2136
|
+
"signed_at": "2026-05-27T20:34:53.060Z"
|
|
2137
2137
|
},
|
|
2138
2138
|
{
|
|
2139
2139
|
"name": "ransomware-response",
|
|
@@ -2213,7 +2213,7 @@
|
|
|
2213
2213
|
],
|
|
2214
2214
|
"last_threat_review": "2026-05-22",
|
|
2215
2215
|
"signature": "ssueL03g9fWlhXpTe+IiY5l7RqQkunN4DTN5QETKE+VOX+qggdjAR8PONxk77ol4xWYmHrM/VcH8CNtXUEvgBA==",
|
|
2216
|
-
"signed_at": "2026-05-
|
|
2216
|
+
"signed_at": "2026-05-27T20:34:53.060Z"
|
|
2217
2217
|
},
|
|
2218
2218
|
{
|
|
2219
2219
|
"name": "email-security-anti-phishing",
|
|
@@ -2266,7 +2266,7 @@
|
|
|
2266
2266
|
"d3fend_refs": [],
|
|
2267
2267
|
"last_threat_review": "2026-05-18",
|
|
2268
2268
|
"signature": "rK+WnuS+9tqEABmwc0jO/PEmxcLjG1/tmUb897HsClQeKzf+TQOlwBE+OsbtuKxpjYNwur62Xxs3TxObkwm8Cw==",
|
|
2269
|
-
"signed_at": "2026-05-
|
|
2269
|
+
"signed_at": "2026-05-27T20:34:53.060Z"
|
|
2270
2270
|
},
|
|
2271
2271
|
{
|
|
2272
2272
|
"name": "age-gates-child-safety",
|
|
@@ -2334,7 +2334,7 @@
|
|
|
2334
2334
|
"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"
|
|
2335
2335
|
],
|
|
2336
2336
|
"signature": "Rgho5TOFUL1txOzcVR0kASCNdovSU4yt99JlGilJlJRyg0A+BdeeQYrZrhPF6Vx2reUAVG0BeHfcZtSbi+cwCg==",
|
|
2337
|
-
"signed_at": "2026-05-
|
|
2337
|
+
"signed_at": "2026-05-27T20:34:53.061Z"
|
|
2338
2338
|
},
|
|
2339
2339
|
{
|
|
2340
2340
|
"name": "cloud-iam-incident",
|
|
@@ -2414,7 +2414,7 @@
|
|
|
2414
2414
|
],
|
|
2415
2415
|
"last_threat_review": "2026-05-15",
|
|
2416
2416
|
"signature": "e/kij7GtKaytROyIj7V5RH+FC9WtmVFzrmG2kIlNDNn29ep/CRNlIQKwXLpzo/81AIf634pmdr1qy/+vwIuUDA==",
|
|
2417
|
-
"signed_at": "2026-05-
|
|
2417
|
+
"signed_at": "2026-05-27T20:34:53.061Z",
|
|
2418
2418
|
"forward_watch": [
|
|
2419
2419
|
"AWS IAM Identity Center session-policy refresh and step-up-on-admin enforcement (anticipated 2026-H2 release)",
|
|
2420
2420
|
"GCP Workload Identity Federation principal-set attribute mapping tightening (post-2026 Q3 Federation hardening guide)",
|
|
@@ -2508,7 +2508,7 @@
|
|
|
2508
2508
|
],
|
|
2509
2509
|
"last_threat_review": "2026-05-15",
|
|
2510
2510
|
"signature": "ew9Kglc9fAZzbn0ZIfGP7WSK/j4eV2VhSvpy+s5bEfNEVYIMa2kZjnGBapgUsyGDLes9H9K2ovjQyX17+GKiBw==",
|
|
2511
|
-
"signed_at": "2026-05-
|
|
2511
|
+
"signed_at": "2026-05-27T20:34:53.062Z",
|
|
2512
2512
|
"forward_watch": [
|
|
2513
2513
|
"Entra ID conditional access evolution post-Midnight Blizzard — Microsoft's 2025-2026 commitments on legacy-tenant MFA enforcement and OAuth-app consent gating",
|
|
2514
2514
|
"Okta IPSIE (Interoperability Profile for Secure Identity in the Enterprise) OpenID Foundation working-group output and adoption timeline",
|
|
@@ -2526,6 +2526,6 @@
|
|
|
2526
2526
|
],
|
|
2527
2527
|
"manifest_signature": {
|
|
2528
2528
|
"algorithm": "Ed25519",
|
|
2529
|
-
"signature_base64": "
|
|
2529
|
+
"signature_base64": "GiJgwVB+yGfTQxNMFBR3nhzebn0c1LBsNIW3dtRuHaQ7YIvHO50HSWAGieaCzQVS6QVL13RHGZO/rpW+cD6WBQ=="
|
|
2530
2530
|
}
|
|
2531
2531
|
}
|
package/orchestrator/index.js
CHANGED
|
@@ -207,7 +207,8 @@ Examples:
|
|
|
207
207
|
}
|
|
208
208
|
const scenario = args[1];
|
|
209
209
|
|
|
210
|
-
const
|
|
210
|
+
const allFrameworks = args[0].toLowerCase() === 'all';
|
|
211
|
+
const report = gapReport(requested, scenario, controlGaps, cveCatalog, { allFrameworks });
|
|
211
212
|
const theater = theaterCheck(controlGaps, cveCatalog);
|
|
212
213
|
|
|
213
214
|
if (jsonOut) {
|
|
@@ -233,7 +234,8 @@ Examples:
|
|
|
233
234
|
if (report.universal_gaps.length > 0) {
|
|
234
235
|
console.log(`### Universal gaps (no jurisdiction covers these) — ${report.universal_gaps.length}`);
|
|
235
236
|
for (const g of report.universal_gaps) {
|
|
236
|
-
|
|
237
|
+
const req = g.real_requirement || '';
|
|
238
|
+
console.log(` - ${g.id || g.name}: ${req.length > 140 ? req.slice(0, 140) + '…' : req}`);
|
|
237
239
|
}
|
|
238
240
|
console.log();
|
|
239
241
|
}
|
|
@@ -472,7 +474,10 @@ async function runReport(format) {
|
|
|
472
474
|
return;
|
|
473
475
|
}
|
|
474
476
|
|
|
475
|
-
|
|
477
|
+
// Progress line goes to stderr so `report executive > out.md` produces
|
|
478
|
+
// clean markdown on stdout — the first stdout line must be the report
|
|
479
|
+
// header, not this progress notice.
|
|
480
|
+
console.error(`[orchestrator] Generating ${format} report...\n`);
|
|
476
481
|
const scanResult = await scan();
|
|
477
482
|
const plan = dispatch(scanResult.findings);
|
|
478
483
|
const { currency_report } = currencyCheck();
|
|
@@ -1705,6 +1710,21 @@ async function runWatchlistOrgScan(rawArgs = []) {
|
|
|
1705
1710
|
safeExit(EXIT_CODES.GENERIC_FAILURE);
|
|
1706
1711
|
return;
|
|
1707
1712
|
}
|
|
1713
|
+
// Air-gap guard. The org-scan reaches api.github.com on every pattern
|
|
1714
|
+
// query; under air-gap there is no offline substitute, so refuse before
|
|
1715
|
+
// any fetch rather than silently attempting egress. Mirrors the
|
|
1716
|
+
// source-ghsa air-gap refusal shape (ok:false + source + explicit error).
|
|
1717
|
+
if (process.env.EXCEPTD_AIR_GAP === '1' || rawArgs.includes('--air-gap')) {
|
|
1718
|
+
process.stdout.write(JSON.stringify({
|
|
1719
|
+
ok: false,
|
|
1720
|
+
source: 'air-gap',
|
|
1721
|
+
verb: 'watchlist',
|
|
1722
|
+
mode: 'org-scan',
|
|
1723
|
+
error: 'air-gap: watchlist --org-scan requires network egress to api.github.com; refused.',
|
|
1724
|
+
}) + '\n');
|
|
1725
|
+
safeExit(EXIT_CODES.BLOCKED);
|
|
1726
|
+
return;
|
|
1727
|
+
}
|
|
1708
1728
|
// Custom patterns via --pattern <s> (repeatable). Default set from
|
|
1709
1729
|
// the MAL-2026-SHAI-HULUD-OSS catalog entry + NEW-CTRL-052 evidence.
|
|
1710
1730
|
const customPatterns = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blamejs/exceptd-skills",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.11",
|
|
4
4
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (406 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 8888 RFCs), 35 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",
|