@blamejs/exceptd-skills 0.16.30 → 0.16.31
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 +4 -0
- package/data/_indexes/_meta.json +2 -2
- package/lib/refresh-external.js +33 -3
- package/manifest.json +53 -53
- package/package.json +1 -1
- package/sbom.cdx.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.31 — 2026-06-13
|
|
4
|
+
|
|
5
|
+
The data refresh no longer overwrites a curator-pinned CVSS score or vector with NVD's same-version re-score. A curated catalog entry — the hand-verified norm — keeps its maintainer-set CVSS; the NVD delta is surfaced in the refresh report for a maintainer to accept deliberately, instead of silently lowering a curated 10.0 to NVD's 9.8. Raw auto-imported drafts, which are not yet curated, still take NVD's score directly. This extends the existing curated-data protections — the CVSS version-downgrade guard and the CISA-KEV de-listing guard — to same-version CVSS re-scores: an upstream that disagrees with curated intel is surfaced, never silently applied.
|
|
6
|
+
|
|
3
7
|
## 0.16.30 — 2026-06-12
|
|
4
8
|
|
|
5
9
|
The analyze-phase cross-reference layer now returns the correlations it always claimed to. The `byCwe`/`byTtp`/`bySkill` skill links, the per-CVE framework-gap and compliance-theater-test correlations, and the global framework context were reading index and catalog records under field names the data never carried, so every lookup came back empty. They now read the real fields and populate — a CWE resolves its skills, a CVE resolves its framework gaps and theater tests, and the global framework context spans the catalogs it documents.
|
package/data/_indexes/_meta.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "1.1.0",
|
|
3
|
-
"generated_at": "2026-06-
|
|
3
|
+
"generated_at": "2026-06-13T14:42:56.398Z",
|
|
4
4
|
"generator": "scripts/build-indexes.js",
|
|
5
5
|
"source_count": 64,
|
|
6
6
|
"source_hashes": {
|
|
7
|
-
"manifest.json": "
|
|
7
|
+
"manifest.json": "c11cdd490e2de2c62ce2d25caa613abdf8d425419efe1e9e7b3ab356686c664f",
|
|
8
8
|
"README.md": "e7b854e7db9a364a1b368b5084b4f0c2a8282f0459ce39800ac1d1dabdc06074",
|
|
9
9
|
"data/atlas-ttps.json": "29f3447ac5c45f42f50b3ed8a46010c2b8ecbcc8094bb19b5db57ba4707b396c",
|
|
10
10
|
"data/attack-techniques.json": "6506db66fdd69bb3564e12aef8f727edddc55d0e6e99f60833a200a57e8ee65e",
|
package/lib/refresh-external.js
CHANGED
|
@@ -444,7 +444,7 @@ const NVD_SOURCE = {
|
|
|
444
444
|
if (r.status === "unreachable") errors++;
|
|
445
445
|
for (const d of r.discrepancies || []) {
|
|
446
446
|
if (d.field === "cvss_score" || d.field === "cvss_vector") {
|
|
447
|
-
diffs.push(
|
|
447
|
+
diffs.push(cvssDiff(r.cve_id, d.field, d.local, d.fetched, d.severity, ctx.cveCatalog?.[r.cve_id]));
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
450
|
}
|
|
@@ -461,6 +461,10 @@ const NVD_SOURCE = {
|
|
|
461
461
|
const catalogPath = ctx.cvePath || ABS("data/cve-catalog.json");
|
|
462
462
|
await withCatalogLock(catalogPath, (catalog) => {
|
|
463
463
|
for (const d of diffs) {
|
|
464
|
+
// A curator-owned CVSS re-score is surfaced in the report but not
|
|
465
|
+
// applied — the curated value is preserved until a maintainer accepts
|
|
466
|
+
// the upstream delta (symmetric with the KEV review_only path).
|
|
467
|
+
if (d.review_only) continue;
|
|
464
468
|
if (!catalog[d.id]) {
|
|
465
469
|
errors.push(`NVD: no local entry for ${d.id}`);
|
|
466
470
|
continue;
|
|
@@ -885,6 +889,32 @@ function hasCuratedExploitSignal(entry) {
|
|
|
885
889
|
return false;
|
|
886
890
|
}
|
|
887
891
|
|
|
892
|
+
// A catalog entry is curator-owned (its CVSS is hand-verified, not an upstream
|
|
893
|
+
// auto-import) unless it carries `_auto_imported: true`. An NVD CVSS re-score on
|
|
894
|
+
// a curator-owned entry is surfaced for review rather than auto-applied — the
|
|
895
|
+
// same principle as the curated-KEV de-listing guard above. The version-
|
|
896
|
+
// downgrade guards already suppress a v3.x→v2 regression; this additionally
|
|
897
|
+
// keeps a *same-version* NVD re-score (e.g. a curated 10.0 the maintainer pinned
|
|
898
|
+
// dropping to NVD's 9.8) from silently overwriting the curated value. Raw
|
|
899
|
+
// auto-imported drafts (`_auto_imported: true`) are not yet curated, so NVD is
|
|
900
|
+
// their source of truth and their CVSS applies normally.
|
|
901
|
+
function isCuratorOwnedCvss(entry) {
|
|
902
|
+
return !!entry && typeof entry === "object" && entry._auto_imported !== true;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
// Build an NVD CVSS diff, marking it review-only when the local entry is
|
|
906
|
+
// curator-owned so applyDiff preserves the curated value while the report still
|
|
907
|
+
// surfaces the upstream delta for a maintainer to accept deliberately.
|
|
908
|
+
function cvssDiff(id, field, before, after, severity, local) {
|
|
909
|
+
const d = { id, field, before, after, severity };
|
|
910
|
+
if (isCuratorOwnedCvss(local)) {
|
|
911
|
+
d.review_only = true;
|
|
912
|
+
d.cvss_review = true;
|
|
913
|
+
d.note = `NVD ${field} change held for review: ${id} is curator-owned (hand-verified CVSS). Confirm and re-curate to accept NVD's ${after} over the curated ${before}; not auto-applied so the curated value is preserved.`;
|
|
914
|
+
}
|
|
915
|
+
return d;
|
|
916
|
+
}
|
|
917
|
+
|
|
888
918
|
// Below this many entries the cached KEV feed is treated as truncated /
|
|
889
919
|
// incomplete rather than a genuine CISA snapshot. CISA KEV has carried well
|
|
890
920
|
// over a thousand entries since 2021 and only grows; a feed this small means
|
|
@@ -1006,10 +1036,10 @@ function nvdDiffFromCache(ctx) {
|
|
|
1006
1036
|
up.version != null && localVersion != null && up.version < localVersion;
|
|
1007
1037
|
if (!isDowngrade) {
|
|
1008
1038
|
if (up.baseScore != null && local.cvss_score != null && Math.abs(up.baseScore - local.cvss_score) > 0.05) {
|
|
1009
|
-
diffs.push(
|
|
1039
|
+
diffs.push(cvssDiff(id, "cvss_score", local.cvss_score, up.baseScore, "high", local));
|
|
1010
1040
|
}
|
|
1011
1041
|
if (up.vector && local.cvss_vector && up.vector !== local.cvss_vector) {
|
|
1012
|
-
diffs.push(
|
|
1042
|
+
diffs.push(cvssDiff(id, "cvss_vector", local.cvss_vector, up.vector, "medium", local));
|
|
1013
1043
|
}
|
|
1014
1044
|
}
|
|
1015
1045
|
}
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceptd-security",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.31",
|
|
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": "0H+JfyUVmo/pVFEi5rLENATHjlukPVUqnOWmNPEH77wm8svKGK0aNJ46k6QU5GdHb8c9X9pVJKiuhON6AxDjDw==",
|
|
56
|
-
"signed_at": "2026-06-
|
|
56
|
+
"signed_at": "2026-06-13T14:38:15.676Z",
|
|
57
57
|
"cwe_refs": [
|
|
58
58
|
"CWE-125",
|
|
59
59
|
"CWE-362",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
],
|
|
124
124
|
"last_threat_review": "2026-06-10",
|
|
125
125
|
"signature": "WfqxU2x/feWgatYrCeO9PD3dIY0FAfs4nkVdQRac4fg5BDQPG/vhzhvYVN6Mg11oITACghbPOtZXvS37sACsCA==",
|
|
126
|
-
"signed_at": "2026-06-
|
|
126
|
+
"signed_at": "2026-06-13T14:38:15.678Z",
|
|
127
127
|
"cwe_refs": [
|
|
128
128
|
"CWE-1039",
|
|
129
129
|
"CWE-1426",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
],
|
|
197
197
|
"last_threat_review": "2026-06-10",
|
|
198
198
|
"signature": "9bNOW4MzmUlFgkXH5tIZkq8YpzhMM+r8YVcNEM39kdEZwfRNG4Bj+Dgr7v4Qgp9D4q7hGNFpK0ywX+dPd3VWAg==",
|
|
199
|
-
"signed_at": "2026-06-
|
|
199
|
+
"signed_at": "2026-06-13T14:38:15.679Z",
|
|
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-06-10",
|
|
250
250
|
"signature": "5A08+nAu5jwNQ1+vGbFgFAJA/kYD3oiaevhCxT4/2FeW++F070Pm4MD1+oXdv8R2DbtYr+7yXnCGM7UbUPR2AA==",
|
|
251
|
-
"signed_at": "2026-06-
|
|
251
|
+
"signed_at": "2026-06-13T14:38:15.679Z"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"name": "compliance-theater",
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
],
|
|
280
280
|
"last_threat_review": "2026-06-10",
|
|
281
281
|
"signature": "RCgbI0sMNTKAscXUtrVU25u7OuE64uQvO5JKsB8vIJFWguvT6nZyD7euKuIxIzYhLTyHBiD7Rhp70btlK+JkCg==",
|
|
282
|
-
"signed_at": "2026-06-
|
|
282
|
+
"signed_at": "2026-06-13T14:38:15.680Z"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"name": "exploit-scoring",
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
],
|
|
309
309
|
"last_threat_review": "2026-06-10",
|
|
310
310
|
"signature": "JJrs+B22/hYxvdYs+abmoire5PbQXPb2uVYyjInZ3UbT8gEjs/5SyfGKx7z86jbtvB3ItApQVAx1AuseIgdyAQ==",
|
|
311
|
-
"signed_at": "2026-06-
|
|
311
|
+
"signed_at": "2026-06-13T14:38:15.680Z"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"name": "rag-pipeline-security",
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
],
|
|
346
346
|
"last_threat_review": "2026-06-10",
|
|
347
347
|
"signature": "Z6WbTqG98bQVRd6+kXDb6xIEe0ZryAeGxVSuKKxdK1PoZqew7NJcMsa6sJVSq+0r7KMsFwfTEdKorp6UDdhpCA==",
|
|
348
|
-
"signed_at": "2026-06-
|
|
348
|
+
"signed_at": "2026-06-13T14:38:15.681Z",
|
|
349
349
|
"cwe_refs": [
|
|
350
350
|
"CWE-1395",
|
|
351
351
|
"CWE-1426"
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
],
|
|
406
406
|
"last_threat_review": "2026-06-10",
|
|
407
407
|
"signature": "DLKcrgon+MZrqmivlFLBH4vlzZbJSW1531RsYDm9/KdW2CgcUUHwNMSzAfU1mAsFwFkAHjy/a8e1FbS9msTvDA==",
|
|
408
|
-
"signed_at": "2026-06-
|
|
408
|
+
"signed_at": "2026-06-13T14:38:15.681Z",
|
|
409
409
|
"cwe_refs": [
|
|
410
410
|
"CWE-918"
|
|
411
411
|
],
|
|
@@ -443,7 +443,7 @@
|
|
|
443
443
|
"framework_gaps": [],
|
|
444
444
|
"last_threat_review": "2026-06-10",
|
|
445
445
|
"signature": "eWCOD+mR1c6B8vKDBot8y8UkQrKPCIEBHU3JRQET9xZnYGx8hrOyeRUElcKqCO5aG/2LISs9Atg1H+ehWDNbCw==",
|
|
446
|
-
"signed_at": "2026-06-
|
|
446
|
+
"signed_at": "2026-06-13T14:38:15.682Z",
|
|
447
447
|
"cwe_refs": [
|
|
448
448
|
"CWE-1188"
|
|
449
449
|
],
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
"framework_gaps": [],
|
|
478
478
|
"last_threat_review": "2026-06-10",
|
|
479
479
|
"signature": "kZca725/+BFr1mpxL29+cGzjqsiYhChWScf7VjU6vCTBZrmCps6W9gYYjf4lVORXaM4DAg3UVBOXyhpTst0rAw==",
|
|
480
|
-
"signed_at": "2026-06-
|
|
480
|
+
"signed_at": "2026-06-13T14:38:15.682Z",
|
|
481
481
|
"forward_watch": [
|
|
482
482
|
"New AI attack classes as ATLAS v6 publishes",
|
|
483
483
|
"Post-quantum adversary capability timeline",
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
"framework_gaps": [],
|
|
517
517
|
"last_threat_review": "2026-05-01",
|
|
518
518
|
"signature": "b5miTiY0cnxETd2btxorfZBdJKt/fLnQx20sGYUb9zEqGqtm0LMLpghkW68j4/9k48KNyuGMtNWiKTSnodUGBw==",
|
|
519
|
-
"signed_at": "2026-06-
|
|
519
|
+
"signed_at": "2026-06-13T14:38:15.683Z"
|
|
520
520
|
},
|
|
521
521
|
{
|
|
522
522
|
"name": "zeroday-gap-learn",
|
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
"framework_gaps": [],
|
|
544
544
|
"last_threat_review": "2026-06-10",
|
|
545
545
|
"signature": "NVBY4I5a+v2/nUeCYcy3LLVKk3Tg9gmz+sCKyvnf8t2fXMNSIGtoy+P8K4Gfos1rGzRRMaU01V7L4kh/IQ8UBQ==",
|
|
546
|
-
"signed_at": "2026-06-
|
|
546
|
+
"signed_at": "2026-06-13T14:38:15.683Z",
|
|
547
547
|
"forward_watch": [
|
|
548
548
|
"New CISA KEV entries",
|
|
549
549
|
"New ATLAS TTP additions in each ATLAS release",
|
|
@@ -607,7 +607,7 @@
|
|
|
607
607
|
],
|
|
608
608
|
"last_threat_review": "2026-06-10",
|
|
609
609
|
"signature": "U54OxIjPT+W9yafjpeFgY7klXMltLYBuSCtu/AAlXxOIPehJrbf/vbGgnBn58nqOd7RjoKjmKz9WQs4DMqWcDw==",
|
|
610
|
-
"signed_at": "2026-06-
|
|
610
|
+
"signed_at": "2026-06-13T14:38:15.683Z",
|
|
611
611
|
"cwe_refs": [
|
|
612
612
|
"CWE-327"
|
|
613
613
|
],
|
|
@@ -655,7 +655,7 @@
|
|
|
655
655
|
],
|
|
656
656
|
"last_threat_review": "2026-06-10",
|
|
657
657
|
"signature": "QsJMwvnUJXHwoBPJ4BiUx3FO9giXfos/sMbx5tyO83AJ2JxdVskeC6g/WDfO+rVkWNXRgWi4h1eSYz6T8/tpAg==",
|
|
658
|
-
"signed_at": "2026-06-
|
|
658
|
+
"signed_at": "2026-06-13T14:38:15.684Z"
|
|
659
659
|
},
|
|
660
660
|
{
|
|
661
661
|
"name": "security-maturity-tiers",
|
|
@@ -692,7 +692,7 @@
|
|
|
692
692
|
],
|
|
693
693
|
"last_threat_review": "2026-05-01",
|
|
694
694
|
"signature": "8KbLVVPI1QgYa+HAnEYvKf1cXnxQ3zsncqTGrAOrBP4rwUeZsxJm8KyFCwI0XytnZG35PZ830BFlG/okPW3sBQ==",
|
|
695
|
-
"signed_at": "2026-06-
|
|
695
|
+
"signed_at": "2026-06-13T14:38:15.684Z",
|
|
696
696
|
"cwe_refs": [
|
|
697
697
|
"CWE-1188"
|
|
698
698
|
]
|
|
@@ -727,7 +727,7 @@
|
|
|
727
727
|
"framework_gaps": [],
|
|
728
728
|
"last_threat_review": "2026-05-11",
|
|
729
729
|
"signature": "iJWevUBurLvt2v8X+Ch2eHmZkPWpKeAtIpxTIP4MwbUHyco3igDeBywJCyaR2vURYRx8LkzzIMM8DxQM4LAXBQ==",
|
|
730
|
-
"signed_at": "2026-06-
|
|
730
|
+
"signed_at": "2026-06-13T14:38:15.684Z"
|
|
731
731
|
},
|
|
732
732
|
{
|
|
733
733
|
"name": "attack-surface-pentest",
|
|
@@ -799,7 +799,7 @@
|
|
|
799
799
|
"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"
|
|
800
800
|
],
|
|
801
801
|
"signature": "ZnFi+Rk4CWrjFEVU4hC6Q66UbDmndNL/ICLWQNA1TQYFGSTnng+nboM4tfi6h0yMbbDj7dOXYqqeHNK+M5ZiBA==",
|
|
802
|
-
"signed_at": "2026-06-
|
|
802
|
+
"signed_at": "2026-06-13T14:38:15.685Z"
|
|
803
803
|
},
|
|
804
804
|
{
|
|
805
805
|
"name": "fuzz-testing-strategy",
|
|
@@ -859,7 +859,7 @@
|
|
|
859
859
|
"OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
|
|
860
860
|
],
|
|
861
861
|
"signature": "45ICz7vcnmHYE1+RIDv8wQjScKj6p8hqJQ5m6I0tDdKVnGdMXCYIgZnYqFJgHBDXYAXlGx7D7UxhFz6WOCDqAQ==",
|
|
862
|
-
"signed_at": "2026-06-
|
|
862
|
+
"signed_at": "2026-06-13T14:38:15.685Z"
|
|
863
863
|
},
|
|
864
864
|
{
|
|
865
865
|
"name": "dlp-gap-analysis",
|
|
@@ -934,7 +934,7 @@
|
|
|
934
934
|
"Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
|
|
935
935
|
],
|
|
936
936
|
"signature": "k6A7QcFEzgGXYWftt/elhQe7kU4F67c0ol3a8DZfj1XW4UrH99SLhPHr6ih3R3EYCl/Ey/zXt/x3a9fDT3RmAw==",
|
|
937
|
-
"signed_at": "2026-06-
|
|
937
|
+
"signed_at": "2026-06-13T14:38:15.686Z"
|
|
938
938
|
},
|
|
939
939
|
{
|
|
940
940
|
"name": "supply-chain-integrity",
|
|
@@ -1013,7 +1013,7 @@
|
|
|
1013
1013
|
"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"
|
|
1014
1014
|
],
|
|
1015
1015
|
"signature": "5shKqNcLC8Obt0EdvKnck8OwWIuRMgZuuZd12pvWqJIltsYMyTrw2M+lgbQfqg3x2KO6qsJljGAhTew5jM58DQ==",
|
|
1016
|
-
"signed_at": "2026-06-
|
|
1016
|
+
"signed_at": "2026-06-13T14:38:15.687Z"
|
|
1017
1017
|
},
|
|
1018
1018
|
{
|
|
1019
1019
|
"name": "defensive-countermeasure-mapping",
|
|
@@ -1070,7 +1070,7 @@
|
|
|
1070
1070
|
],
|
|
1071
1071
|
"last_threat_review": "2026-06-10",
|
|
1072
1072
|
"signature": "lfa5Wgep26mK3o2ZSe5qN2vVxg+xRRURRpmnqP4JdQvvecW3T2+PxHqjT48DegXJHRXJ6DPzyIElFc7no86TAg==",
|
|
1073
|
-
"signed_at": "2026-06-
|
|
1073
|
+
"signed_at": "2026-06-13T14:38:15.688Z"
|
|
1074
1074
|
},
|
|
1075
1075
|
{
|
|
1076
1076
|
"name": "identity-assurance",
|
|
@@ -1137,7 +1137,7 @@
|
|
|
1137
1137
|
"d3fend_refs": [],
|
|
1138
1138
|
"last_threat_review": "2026-05-11",
|
|
1139
1139
|
"signature": "UV3458QXSkEpenzrOmdlTTfPHUD4hNyKMDHoeZDq/kiFb4mAG0ghQGTTgI9Ru8cJbSmYM1++m9N5TFIJ6JJPBg==",
|
|
1140
|
-
"signed_at": "2026-06-
|
|
1140
|
+
"signed_at": "2026-06-13T14:38:15.688Z"
|
|
1141
1141
|
},
|
|
1142
1142
|
{
|
|
1143
1143
|
"name": "ot-ics-security",
|
|
@@ -1193,7 +1193,7 @@
|
|
|
1193
1193
|
"d3fend_refs": [],
|
|
1194
1194
|
"last_threat_review": "2026-06-10",
|
|
1195
1195
|
"signature": "afJ00EDXgARQJrbRqN6xe1+E/kbHF7O2fxQFVvrLLXdrKfK86RK/oJU1AwpxX6mclX9f+5ivy6FvFIuRMA4dBQ==",
|
|
1196
|
-
"signed_at": "2026-06-
|
|
1196
|
+
"signed_at": "2026-06-13T14:38:15.690Z"
|
|
1197
1197
|
},
|
|
1198
1198
|
{
|
|
1199
1199
|
"name": "coordinated-vuln-disclosure",
|
|
@@ -1245,7 +1245,7 @@
|
|
|
1245
1245
|
"NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
|
|
1246
1246
|
],
|
|
1247
1247
|
"signature": "VzivMW82mRrG9+07ZX8sj4j9O9YjE/m07m1UHgSwEgex+FLaVPvIj3y1Vk6qeFOvDURmtVaztWlpSlk7iSn0DA==",
|
|
1248
|
-
"signed_at": "2026-06-
|
|
1248
|
+
"signed_at": "2026-06-13T14:38:15.691Z"
|
|
1249
1249
|
},
|
|
1250
1250
|
{
|
|
1251
1251
|
"name": "threat-modeling-methodology",
|
|
@@ -1295,7 +1295,7 @@
|
|
|
1295
1295
|
"PASTA v2 updates incorporating AI/ML application threats"
|
|
1296
1296
|
],
|
|
1297
1297
|
"signature": "Fk5LzzeS/bH5SQJNySgZqSdeQf1udwdRs3FVLwig5kuqyyKkuIJcF4HW+xHF/1e66HR+gjgRUoqWZGsv58lLAg==",
|
|
1298
|
-
"signed_at": "2026-06-
|
|
1298
|
+
"signed_at": "2026-06-13T14:38:15.693Z"
|
|
1299
1299
|
},
|
|
1300
1300
|
{
|
|
1301
1301
|
"name": "webapp-security",
|
|
@@ -1369,7 +1369,7 @@
|
|
|
1369
1369
|
"d3fend_refs": [],
|
|
1370
1370
|
"last_threat_review": "2026-06-10",
|
|
1371
1371
|
"signature": "1skHJsPPOIXLQdU5MGHirP/Q07aCYTirtDmfWDO7ZNuto58NlCttW5ZjCpyh37vASlMljIZx0/R+PIl2PfwTBw==",
|
|
1372
|
-
"signed_at": "2026-06-
|
|
1372
|
+
"signed_at": "2026-06-13T14:38:15.693Z",
|
|
1373
1373
|
"forward_watch": [
|
|
1374
1374
|
"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"
|
|
1375
1375
|
]
|
|
@@ -1422,7 +1422,7 @@
|
|
|
1422
1422
|
"d3fend_refs": [],
|
|
1423
1423
|
"last_threat_review": "2026-05-15",
|
|
1424
1424
|
"signature": "SBB7c3wNYfIdkyOp4g4nW0WP7xS+YokMzg32aaeJdbf14LTGQRzQUvSqb2TCj2HFUSHESOyKT1JpkAfyHLSQBQ==",
|
|
1425
|
-
"signed_at": "2026-06-
|
|
1425
|
+
"signed_at": "2026-06-13T14:38:15.695Z"
|
|
1426
1426
|
},
|
|
1427
1427
|
{
|
|
1428
1428
|
"name": "sector-healthcare",
|
|
@@ -1482,7 +1482,7 @@
|
|
|
1482
1482
|
"d3fend_refs": [],
|
|
1483
1483
|
"last_threat_review": "2026-06-10",
|
|
1484
1484
|
"signature": "yyAGG3nUC6/XWQGRF2ufzILfiJitMFczqWNY83lZShCgYSxfFCul0UsICClOc7Xjw76052uydm8kLH9gIzhsAg==",
|
|
1485
|
-
"signed_at": "2026-06-
|
|
1485
|
+
"signed_at": "2026-06-13T14:38:15.695Z"
|
|
1486
1486
|
},
|
|
1487
1487
|
{
|
|
1488
1488
|
"name": "sector-financial",
|
|
@@ -1563,7 +1563,7 @@
|
|
|
1563
1563
|
"TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
|
|
1564
1564
|
],
|
|
1565
1565
|
"signature": "/+df91Qhl1TIxEAqzgqB7+YJ6mneX6Dif+h6RaCbxOLGE6KRTFst1Q/Fu5SStt8Zx5JI62bkQ2BBrNOKfUlPBg==",
|
|
1566
|
-
"signed_at": "2026-06-
|
|
1566
|
+
"signed_at": "2026-06-13T14:38:15.696Z"
|
|
1567
1567
|
},
|
|
1568
1568
|
{
|
|
1569
1569
|
"name": "sector-federal-government",
|
|
@@ -1632,7 +1632,7 @@
|
|
|
1632
1632
|
"Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
|
|
1633
1633
|
],
|
|
1634
1634
|
"signature": "k6MAPS8HJivu0DNwC1azPvyKeig2xLGz/hcqYd8T+s5GvIypPGfkeYRRKmdqMgHUe24f7bQeRZ7AxcQ9Bi6SCg==",
|
|
1635
|
-
"signed_at": "2026-06-
|
|
1635
|
+
"signed_at": "2026-06-13T14:38:15.697Z"
|
|
1636
1636
|
},
|
|
1637
1637
|
{
|
|
1638
1638
|
"name": "sector-energy",
|
|
@@ -1697,7 +1697,7 @@
|
|
|
1697
1697
|
"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"
|
|
1698
1698
|
],
|
|
1699
1699
|
"signature": "IYKXn009jfhpKdQKiGB4xb7VgxsJXa6PZawoguP42khU6S/TTemp/YsK1YQCUyabE+2biElL/PP1Hi8zCkSSBw==",
|
|
1700
|
-
"signed_at": "2026-06-
|
|
1700
|
+
"signed_at": "2026-06-13T14:38:15.697Z"
|
|
1701
1701
|
},
|
|
1702
1702
|
{
|
|
1703
1703
|
"name": "sector-telecom",
|
|
@@ -1783,7 +1783,7 @@
|
|
|
1783
1783
|
"O-RAN SFG / WG11 security specifications"
|
|
1784
1784
|
],
|
|
1785
1785
|
"signature": "NAtyzfLPXlUuB78Snb9nWmbZalC1CNlIYN9rYhdEmtB/xQGC6vVnThgrEAHlm7v/jMCFuknvEpUHKdscUnUADw==",
|
|
1786
|
-
"signed_at": "2026-06-
|
|
1786
|
+
"signed_at": "2026-06-13T14:38:15.698Z"
|
|
1787
1787
|
},
|
|
1788
1788
|
{
|
|
1789
1789
|
"name": "api-security",
|
|
@@ -1852,7 +1852,7 @@
|
|
|
1852
1852
|
"d3fend_refs": [],
|
|
1853
1853
|
"last_threat_review": "2026-06-10",
|
|
1854
1854
|
"signature": "HUjhPGpZeZeVi1nzBIsEAYh18x5ltlIXnt1yQ5YKz+jC2Dvxw7vV/Clx1/1gDBLAuBvRW9wcNtDr4c0RxhfGDQ==",
|
|
1855
|
-
"signed_at": "2026-06-
|
|
1855
|
+
"signed_at": "2026-06-13T14:38:15.698Z",
|
|
1856
1856
|
"forward_watch": [
|
|
1857
1857
|
"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",
|
|
1858
1858
|
"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",
|
|
@@ -1938,7 +1938,7 @@
|
|
|
1938
1938
|
"CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
|
|
1939
1939
|
],
|
|
1940
1940
|
"signature": "xa1kr/92/0fBds7LVtRy9aCM2tQRWAfNSFoC6ygbOU7QjamUo8Wt2h2n9W+nZT34STN3woYhXqtfmm8NSjXdBQ==",
|
|
1941
|
-
"signed_at": "2026-06-
|
|
1941
|
+
"signed_at": "2026-06-13T14:38:15.698Z"
|
|
1942
1942
|
},
|
|
1943
1943
|
{
|
|
1944
1944
|
"name": "container-runtime-security",
|
|
@@ -2000,7 +2000,7 @@
|
|
|
2000
2000
|
"d3fend_refs": [],
|
|
2001
2001
|
"last_threat_review": "2026-06-10",
|
|
2002
2002
|
"signature": "60hyXAiYfY9lI+EpHG3iFFxa+oF5n71c0tTMa6iXFLNjBJKPevTsdNgQlQsBEnmRJ+dWtOjb/GNBW1KiBx4XAQ==",
|
|
2003
|
-
"signed_at": "2026-06-
|
|
2003
|
+
"signed_at": "2026-06-13T14:38:15.699Z",
|
|
2004
2004
|
"forward_watch": [
|
|
2005
2005
|
"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"
|
|
2006
2006
|
]
|
|
@@ -2074,7 +2074,7 @@
|
|
|
2074
2074
|
"MITRE ATLAS v2026.05 (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"
|
|
2075
2075
|
],
|
|
2076
2076
|
"signature": "IEECw5lO6ZdpkE/j7Hv6/3Jg2vj9fpXlozY+h85Hrn9QYOJuI0gfBjHoBEchJ2GUTmPwUKoiBoI72PBAQw9RCQ==",
|
|
2077
|
-
"signed_at": "2026-06-
|
|
2077
|
+
"signed_at": "2026-06-13T14:38:15.699Z"
|
|
2078
2078
|
},
|
|
2079
2079
|
{
|
|
2080
2080
|
"name": "incident-response-playbook",
|
|
@@ -2136,7 +2136,7 @@
|
|
|
2136
2136
|
"NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
|
|
2137
2137
|
],
|
|
2138
2138
|
"signature": "pN1Qa5NRyNJ6h0pmbbqpy3xWdkMANDMUbBst5SKR5fmmqMFopmyrzwIGagiiNgqxjjCunj9J9Wbzs1sL48sMCQ==",
|
|
2139
|
-
"signed_at": "2026-06-
|
|
2139
|
+
"signed_at": "2026-06-13T14:38:15.700Z"
|
|
2140
2140
|
},
|
|
2141
2141
|
{
|
|
2142
2142
|
"name": "ransomware-response",
|
|
@@ -2216,7 +2216,7 @@
|
|
|
2216
2216
|
],
|
|
2217
2217
|
"last_threat_review": "2026-06-10",
|
|
2218
2218
|
"signature": "sXPA1lvWvZpf5sHxZXRkO0Kcs6gnXiYq0mWA53y1HeBwQGJ+viSPMt5IMobkjd5qLFYchg0CpW/nBUIvUE6/DA==",
|
|
2219
|
-
"signed_at": "2026-06-
|
|
2219
|
+
"signed_at": "2026-06-13T14:38:15.700Z"
|
|
2220
2220
|
},
|
|
2221
2221
|
{
|
|
2222
2222
|
"name": "email-security-anti-phishing",
|
|
@@ -2269,7 +2269,7 @@
|
|
|
2269
2269
|
"d3fend_refs": [],
|
|
2270
2270
|
"last_threat_review": "2026-05-18",
|
|
2271
2271
|
"signature": "FVBn4ex2qPIo9SHMVJ6tntoz4tVwjbIq3m6wDjjZyv2JODlS+90GBYCOkNamxxkmw/6de6SMs0YHQiF/xjo/DQ==",
|
|
2272
|
-
"signed_at": "2026-06-
|
|
2272
|
+
"signed_at": "2026-06-13T14:38:15.701Z"
|
|
2273
2273
|
},
|
|
2274
2274
|
{
|
|
2275
2275
|
"name": "age-gates-child-safety",
|
|
@@ -2337,7 +2337,7 @@
|
|
|
2337
2337
|
"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"
|
|
2338
2338
|
],
|
|
2339
2339
|
"signature": "7Wdii9uwYmDrzQohoWRWDa5A4aDRKOmdLPq5Jsql86O0Gm7pQANnj9tX+cHpQcQ/Ui8VLuNVP8UFdKxxHeDnBg==",
|
|
2340
|
-
"signed_at": "2026-06-
|
|
2340
|
+
"signed_at": "2026-06-13T14:38:15.701Z"
|
|
2341
2341
|
},
|
|
2342
2342
|
{
|
|
2343
2343
|
"name": "cloud-iam-incident",
|
|
@@ -2417,7 +2417,7 @@
|
|
|
2417
2417
|
],
|
|
2418
2418
|
"last_threat_review": "2026-05-15",
|
|
2419
2419
|
"signature": "r9ii4nb3HJELdtKCGF5qy9PHOiot3GC24yfxfGAKlLENHkdRvRkvvL99eV/6RXyfUaMyrnc2Te8tPQcNu5bsDg==",
|
|
2420
|
-
"signed_at": "2026-06-
|
|
2420
|
+
"signed_at": "2026-06-13T14:38:15.702Z",
|
|
2421
2421
|
"forward_watch": [
|
|
2422
2422
|
"AWS IAM Identity Center session-policy refresh and step-up-on-admin enforcement (anticipated 2026-H2 release)",
|
|
2423
2423
|
"GCP Workload Identity Federation principal-set attribute mapping tightening (post-2026 Q3 Federation hardening guide)",
|
|
@@ -2511,7 +2511,7 @@
|
|
|
2511
2511
|
],
|
|
2512
2512
|
"last_threat_review": "2026-05-15",
|
|
2513
2513
|
"signature": "9mfDtMApMAg9V/lmwpniNxo/6gNZoOEoYDfyFvyWvKrPMtc7H9F8uz06FVoARe/J49saAKTVXOurNE1D/KtpCQ==",
|
|
2514
|
-
"signed_at": "2026-06-
|
|
2514
|
+
"signed_at": "2026-06-13T14:38:15.702Z",
|
|
2515
2515
|
"forward_watch": [
|
|
2516
2516
|
"Entra ID conditional access evolution post-Midnight Blizzard — Microsoft's 2025-2026 commitments on legacy-tenant MFA enforcement and OAuth-app consent gating",
|
|
2517
2517
|
"Okta IPSIE (Interoperability Profile for Secure Identity in the Enterprise) OpenID Foundation working-group output and adoption timeline",
|
|
@@ -2583,7 +2583,7 @@
|
|
|
2583
2583
|
"d3fend_refs": [],
|
|
2584
2584
|
"last_threat_review": "2026-06-02",
|
|
2585
2585
|
"signature": "dOFgANMtHm64uSFRjMfeA0fWZS9ISwMTt59I2CbjaF1PgTtbtb8yg/f+3pC4eXcXIET0KPGxRRmENycfIz3rAw==",
|
|
2586
|
-
"signed_at": "2026-06-
|
|
2586
|
+
"signed_at": "2026-06-13T14:38:15.702Z"
|
|
2587
2587
|
},
|
|
2588
2588
|
{
|
|
2589
2589
|
"name": "mail-server-hardening",
|
|
@@ -2642,7 +2642,7 @@
|
|
|
2642
2642
|
"d3fend_refs": [],
|
|
2643
2643
|
"last_threat_review": "2026-06-02",
|
|
2644
2644
|
"signature": "5x8RGzKo/T2IbYnFkYMZs16ThD9a5FEdrKHsnwvtMuGxdyyfZsKNIJVWw2I8O0um0UOXwwkl17Z3zhch26ymCQ==",
|
|
2645
|
-
"signed_at": "2026-06-
|
|
2645
|
+
"signed_at": "2026-06-13T14:38:15.703Z"
|
|
2646
2646
|
},
|
|
2647
2647
|
{
|
|
2648
2648
|
"name": "network-trust",
|
|
@@ -2698,7 +2698,7 @@
|
|
|
2698
2698
|
"d3fend_refs": [],
|
|
2699
2699
|
"last_threat_review": "2026-06-02",
|
|
2700
2700
|
"signature": "C/RdmnGjXKreKiGkwJfUESIxUwQzisGJ9A7KBdE9cBRBHBYHkAcScV89L+Z3kOG032Qax6LeIQai7Lr3nrQBCA==",
|
|
2701
|
-
"signed_at": "2026-06-
|
|
2701
|
+
"signed_at": "2026-06-13T14:38:15.703Z"
|
|
2702
2702
|
},
|
|
2703
2703
|
{
|
|
2704
2704
|
"name": "audit-log-integrity",
|
|
@@ -2753,7 +2753,7 @@
|
|
|
2753
2753
|
"d3fend_refs": [],
|
|
2754
2754
|
"last_threat_review": "2026-06-02",
|
|
2755
2755
|
"signature": "LvUAq+rXCA8PgNy9lTKOmFqa8T9EJg4JEH0axXvEAf9MIHqbR51ergUkFMLaTuvFuApwsPu0r1C30QgScZbiAw==",
|
|
2756
|
-
"signed_at": "2026-06-
|
|
2756
|
+
"signed_at": "2026-06-13T14:38:15.704Z"
|
|
2757
2757
|
},
|
|
2758
2758
|
{
|
|
2759
2759
|
"name": "self-update-integrity",
|
|
@@ -2807,7 +2807,7 @@
|
|
|
2807
2807
|
"d3fend_refs": [],
|
|
2808
2808
|
"last_threat_review": "2026-06-02",
|
|
2809
2809
|
"signature": "BOQZ8G9LdyG/tfpz6rCU4THz5Dq2HGJkUV7uCqSTCMrqnXH6seNXKM41FWawYo0s2VUlXtRgaO7ETp5qgxw+CQ==",
|
|
2810
|
-
"signed_at": "2026-06-
|
|
2810
|
+
"signed_at": "2026-06-13T14:38:15.704Z"
|
|
2811
2811
|
},
|
|
2812
2812
|
{
|
|
2813
2813
|
"name": "multitenancy-isolation",
|
|
@@ -2865,7 +2865,7 @@
|
|
|
2865
2865
|
"d3fend_refs": [],
|
|
2866
2866
|
"last_threat_review": "2026-06-02",
|
|
2867
2867
|
"signature": "bncN0VE4ns0lxtPe48xDR33lerw54BPVkSwX7XlrLQcMHTrV94lmjO8z4ZP4Ko61n+KpuP2SNU8v9JT0bGMmAA==",
|
|
2868
|
-
"signed_at": "2026-06-
|
|
2868
|
+
"signed_at": "2026-06-13T14:38:15.705Z"
|
|
2869
2869
|
},
|
|
2870
2870
|
{
|
|
2871
2871
|
"name": "decompression-dos",
|
|
@@ -2923,7 +2923,7 @@
|
|
|
2923
2923
|
"d3fend_refs": [],
|
|
2924
2924
|
"last_threat_review": "2026-06-02",
|
|
2925
2925
|
"signature": "03i0ZO5ScHIOjGvDKUEsws6m+20fnlJrEhSBtMU7PJzQutrPpmW9gULE0wbayTD5H9URh5nSKZuuVjvjVhZNCg==",
|
|
2926
|
-
"signed_at": "2026-06-
|
|
2926
|
+
"signed_at": "2026-06-13T14:38:15.705Z"
|
|
2927
2927
|
},
|
|
2928
2928
|
{
|
|
2929
2929
|
"name": "log-injection-telemetry",
|
|
@@ -2978,7 +2978,7 @@
|
|
|
2978
2978
|
"d3fend_refs": [],
|
|
2979
2979
|
"last_threat_review": "2026-06-02",
|
|
2980
2980
|
"signature": "twTmA2l+Am2k2PCzB2DNxDQwoYlGopJp/3QgQwBsP7h2LF+uNudisqfuOVV/bYnWfrUhuYZUWbsR3mhzbJCUBw==",
|
|
2981
|
-
"signed_at": "2026-06-
|
|
2981
|
+
"signed_at": "2026-06-13T14:38:15.705Z"
|
|
2982
2982
|
},
|
|
2983
2983
|
{
|
|
2984
2984
|
"name": "privacy-consent-ops",
|
|
@@ -3033,11 +3033,11 @@
|
|
|
3033
3033
|
"d3fend_refs": [],
|
|
3034
3034
|
"last_threat_review": "2026-06-02",
|
|
3035
3035
|
"signature": "0sfKSVrIf555c9bDGkXB96fUClN52fMAMYoQsNQ9eUUSzDiWUwdou+q0gYt43nObtj3m9Yb9X6q3oCXDVMgUDg==",
|
|
3036
|
-
"signed_at": "2026-06-
|
|
3036
|
+
"signed_at": "2026-06-13T14:38:15.706Z"
|
|
3037
3037
|
}
|
|
3038
3038
|
],
|
|
3039
3039
|
"manifest_signature": {
|
|
3040
3040
|
"algorithm": "Ed25519",
|
|
3041
|
-
"signature_base64": "
|
|
3041
|
+
"signature_base64": "NTNls4grN7uk3xPYIs49FaFMGLxP4uq6eoqH6TPn9z/aZRTmY5PWi6eNP48q3+IAQPdOvqD/B5bdDMyomkCcCw=="
|
|
3042
3042
|
}
|
|
3043
3043
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blamejs/exceptd-skills",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.31",
|
|
4
4
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 51 skills, 11 catalogs (439 CVEs / 177 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",
|
package/sbom.cdx.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bomFormat": "CycloneDX",
|
|
3
3
|
"specVersion": "1.6",
|
|
4
|
-
"serialNumber": "urn:uuid:
|
|
4
|
+
"serialNumber": "urn:uuid:348fa4b0-bb90-421a-94dd-b1f2046bd8e2",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"metadata": {
|
|
7
|
-
"timestamp": "
|
|
7
|
+
"timestamp": "2053-12-11T08:30:40.000Z",
|
|
8
8
|
"tools": [
|
|
9
9
|
{
|
|
10
10
|
"vendor": "blamejs",
|
|
11
11
|
"name": "scripts/refresh-sbom.js",
|
|
12
|
-
"version": "0.16.
|
|
12
|
+
"version": "0.16.31"
|
|
13
13
|
}
|
|
14
14
|
],
|
|
15
15
|
"component": {
|
|
16
|
-
"bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.16.
|
|
16
|
+
"bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.16.31",
|
|
17
17
|
"type": "application",
|
|
18
18
|
"name": "@blamejs/exceptd-skills",
|
|
19
|
-
"version": "0.16.
|
|
19
|
+
"version": "0.16.31",
|
|
20
20
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 51 skills, 11 catalogs (439 CVEs / 177 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.",
|
|
21
21
|
"licenses": [
|
|
22
22
|
{
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
],
|
|
28
|
-
"purl": "pkg:npm/%40blamejs/exceptd-skills@0.16.
|
|
28
|
+
"purl": "pkg:npm/%40blamejs/exceptd-skills@0.16.31",
|
|
29
29
|
"hashes": [
|
|
30
30
|
{
|
|
31
31
|
"alg": "SHA-256",
|
|
32
|
-
"content": "
|
|
32
|
+
"content": "50ec4d5be25e973de59e250637e07fe71543f583d23bad37702beb0b65fa72e4"
|
|
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.16.
|
|
38
|
+
"url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.16.31"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"type": "vcs",
|
|
@@ -116,11 +116,11 @@
|
|
|
116
116
|
"hashes": [
|
|
117
117
|
{
|
|
118
118
|
"alg": "SHA-256",
|
|
119
|
-
"content": "
|
|
119
|
+
"content": "6097a6845e555e87c9c223a4188eeef48a7def06da030bc5b40b083dd13f41aa"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
"alg": "SHA3-512",
|
|
123
|
-
"content": "
|
|
123
|
+
"content": "af78e89ae5c4f83624a2b21321bf3456075807b790e4f9186d6a22cc4eaa1809fdce9a9e6d76eef6fe9a3b131ce6c3bc49058ed0ea23c23ddbead8738e23f56a"
|
|
124
124
|
}
|
|
125
125
|
]
|
|
126
126
|
},
|
|
@@ -1496,11 +1496,11 @@
|
|
|
1496
1496
|
"hashes": [
|
|
1497
1497
|
{
|
|
1498
1498
|
"alg": "SHA-256",
|
|
1499
|
-
"content": "
|
|
1499
|
+
"content": "970cc8f57019847aaed4277a132be4755c25de5834d6eb10761683ffee355e3e"
|
|
1500
1500
|
},
|
|
1501
1501
|
{
|
|
1502
1502
|
"alg": "SHA3-512",
|
|
1503
|
-
"content": "
|
|
1503
|
+
"content": "dc337dceeaf1e40b95d95147d2fd16025de1c1c670bff9d0e8a05ca048d8d61c17c448137cb83b1cd18da92b57b4319f057d34f908cbb9781822336060baef60"
|
|
1504
1504
|
}
|
|
1505
1505
|
]
|
|
1506
1506
|
},
|
|
@@ -1901,11 +1901,11 @@
|
|
|
1901
1901
|
"hashes": [
|
|
1902
1902
|
{
|
|
1903
1903
|
"alg": "SHA-256",
|
|
1904
|
-
"content": "
|
|
1904
|
+
"content": "c11cdd490e2de2c62ce2d25caa613abdf8d425419efe1e9e7b3ab356686c664f"
|
|
1905
1905
|
},
|
|
1906
1906
|
{
|
|
1907
1907
|
"alg": "SHA3-512",
|
|
1908
|
-
"content": "
|
|
1908
|
+
"content": "d17602bb378c59e4cf2f087d74aecbb64d955935f3159f8f5da338295dd07d4911423de0c2eb93008fbdd253d8f117a7d500db7128388c35a8a144740b2bf150"
|
|
1909
1909
|
}
|
|
1910
1910
|
]
|
|
1911
1911
|
},
|