@blamejs/exceptd-skills 0.13.99 → 0.13.100
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 +9 -9
- package/data/_indexes/activity-feed.json +2 -2
- package/data/_indexes/catalog-summaries.json +2 -2
- package/data/_indexes/chains.json +385 -0
- package/data/atlas-ttps.json +3 -0
- package/data/attack-techniques.json +3 -0
- package/data/cve-catalog.json +106 -0
- package/data/cwe-catalog.json +1 -0
- package/data/framework-control-gaps.json +8 -0
- package/data/zeroday-lessons.json +50 -0
- package/manifest.json +44 -44
- package/package.json +2 -2
- package/sbom.cdx.json +25 -25
package/data/cve-catalog.json
CHANGED
|
@@ -15381,6 +15381,112 @@
|
|
|
15381
15381
|
"_intake_method": "manual-verified-curation",
|
|
15382
15382
|
"_kev_short_description": "NVIDIA NeMo's SaveRestoreConnector extracts a .nemo (.tar) model archive without path restriction (CWE-22), so a malicious model writes to an arbitrary path and can execute code; fixed in r2.0.0rc0."
|
|
15383
15383
|
},
|
|
15384
|
+
"CVE-2025-32434": {
|
|
15385
|
+
"name": "PyTorch torch.load Remote Code Execution Despite weights_only=True",
|
|
15386
|
+
"type": "RCE",
|
|
15387
|
+
"cvss_score": 9.8,
|
|
15388
|
+
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
|
|
15389
|
+
"cvss_note": "NVD CVSS v3.1 base 9.8 (CRITICAL). torch.load executes code from a crafted checkpoint even when called with weights_only=True (CWE-502) - the very setting the ecosystem recommended as the safe way to load untrusted models.",
|
|
15390
|
+
"cisa_kev": false,
|
|
15391
|
+
"poc_available": true,
|
|
15392
|
+
"poc_description": "Documented in the PyTorch GitHub security advisory GHSA-53q9-r3pm-6pq6: a maliciously crafted model checkpoint executes code when loaded with torch.load, even with weights_only=True set, defeating the recommended safe-load guidance.",
|
|
15393
|
+
"ai_discovered": false,
|
|
15394
|
+
"ai_discovery_source": "human_researcher",
|
|
15395
|
+
"ai_assisted_weaponization": false,
|
|
15396
|
+
"ai_discovery_notes": "Disclosed via the PyTorch project's GitHub security advisory. PyTorch is the foundational deep-learning framework; the abused surface is its primary model-loading API.",
|
|
15397
|
+
"ai_assisted_notes": "No AI-assisted weaponization; unsafe deserialization in the model-loading API, notable because it bypasses the documented safe-load mitigation.",
|
|
15398
|
+
"active_exploitation": "none",
|
|
15399
|
+
"active_exploitation_notes": "Advisory disclosure with a coordinated fix; no confirmed in-the-wild exploitation reported as of curation.",
|
|
15400
|
+
"affected": "PyTorch up to and including 2.5.1 (torch.load); fixed in 2.6.0.",
|
|
15401
|
+
"affected_versions": [
|
|
15402
|
+
"PyTorch <= 2.5.1"
|
|
15403
|
+
],
|
|
15404
|
+
"vector": "PyTorch's torch.load deserializes a model checkpoint in a way that executes attacker-controlled code even when weights_only=True is set (CWE-502). Because weights_only=True was the ecosystem's recommended safe way to load untrusted checkpoints, code that followed that guidance is still vulnerable - loading a malicious model from a hub or untrusted source is remote code execution.",
|
|
15405
|
+
"complexity": "low",
|
|
15406
|
+
"complexity_notes": "NVD AV:N / AC:L / PR:N - loading an untrusted checkpoint; no user interaction beyond the load call.",
|
|
15407
|
+
"patch_available": true,
|
|
15408
|
+
"patch_required_reboot": false,
|
|
15409
|
+
"live_patch_available": false,
|
|
15410
|
+
"live_patch_tools": [],
|
|
15411
|
+
"live_patch_notes": "Remediation is upgrading PyTorch to 2.6.0 or later; no host reboot.",
|
|
15412
|
+
"vendor_update_paths": [
|
|
15413
|
+
"Upgrade PyTorch to 2.6.0 or later. Do not rely on weights_only=True to make untrusted checkpoints safe on <= 2.5.1; only load models from trusted sources, verify provenance, prefer safetensors, and load untrusted models sandboxed."
|
|
15414
|
+
],
|
|
15415
|
+
"framework_control_gaps": {
|
|
15416
|
+
"NIST-800-53-SI-2": "Flaw-remediation cadence does not track the foundational deep-learning framework's model-loading API as managed, RCE-bearing software, nor that the documented safe-load setting (weights_only=True) was bypassable.",
|
|
15417
|
+
"NIST-800-53-SI-10": "Input-validation control is not applied to model checkpoints that torch.load deserializes; the safe-load flag was trusted as sufficient.",
|
|
15418
|
+
"ISO-27001-2022-A.8.8": "Vulnerability management rarely enumerates the DL framework's model-loading path as a code-execution surface.",
|
|
15419
|
+
"NIS2-Art21-patch-management": "Article 21 measures do not reach DL-framework model loading as a privileged execution control plane.",
|
|
15420
|
+
"DORA-Art-9": "ICT protection measures do not model untrusted-checkpoint loading in PyTorch as an ICT-risk event.",
|
|
15421
|
+
"UK-CAF-B4": "System Security objective has no objective for treating model checkpoints as untrusted code.",
|
|
15422
|
+
"AU-ISM-1546": "Patch-application control does not single out the foundational DL framework's model loaders.",
|
|
15423
|
+
"ALL-AI-PIPELINE-INTEGRITY": "No framework treats an ML model checkpoint as untrusted executable input; loading one with torch.load (even weights_only=True on <= 2.5.1) is RCE, and a 'safe' flag proved necessary-but-insufficient."
|
|
15424
|
+
},
|
|
15425
|
+
"atlas_refs": [
|
|
15426
|
+
"AML.T0010",
|
|
15427
|
+
"AML.T0011",
|
|
15428
|
+
"AML.T0011.000"
|
|
15429
|
+
],
|
|
15430
|
+
"attack_refs": [
|
|
15431
|
+
"T1204",
|
|
15432
|
+
"T1059",
|
|
15433
|
+
"T1195.002"
|
|
15434
|
+
],
|
|
15435
|
+
"rwep_score": 33,
|
|
15436
|
+
"rwep_factors": {
|
|
15437
|
+
"cisa_kev": 0,
|
|
15438
|
+
"poc_available": 20,
|
|
15439
|
+
"ai_factor": 0,
|
|
15440
|
+
"active_exploitation": 0,
|
|
15441
|
+
"blast_radius": 28,
|
|
15442
|
+
"patch_available": -15,
|
|
15443
|
+
"live_patch_available": 0,
|
|
15444
|
+
"reboot_required": 0
|
|
15445
|
+
},
|
|
15446
|
+
"rwep_notes": "Standard (RWEP 33, \"patch within 30 days\" band per lib/scoring.js timeline). Not KEV, no confirmed in-the-wild exploitation, patched at disclosure (Hard Rule #3). poc_available=20 + blast_radius=28 (PyTorch is the foundational deep-learning framework) minus patch 15. Note: this bypasses the documented safe-load mitigation, so deployments that 'did the right thing' (weights_only=True on <= 2.5.1) remain exposed.",
|
|
15447
|
+
"epss_score": null,
|
|
15448
|
+
"epss_date": "2026-05-25",
|
|
15449
|
+
"epss_note": "EPSS not pulled for this entry; retrieve via FIRST EPSS API in a future refresh.",
|
|
15450
|
+
"epss_source": "https://api.first.org/data/v1/epss?cve=CVE-2025-32434",
|
|
15451
|
+
"cwe_refs": [
|
|
15452
|
+
"CWE-502"
|
|
15453
|
+
],
|
|
15454
|
+
"iocs": {
|
|
15455
|
+
"behavioral": [
|
|
15456
|
+
"Python subprocess / interpreter activity during torch.load of an externally sourced checkpoint, including when weights_only=True is set.",
|
|
15457
|
+
"A model checkpoint from a hub or shared store whose deserialization resolves to code execution.",
|
|
15458
|
+
"Loading checkpoints without provenance verification through PyTorch <= 2.5.1.",
|
|
15459
|
+
"PyTorch <= 2.5.1 loading untrusted checkpoints - the exposed precondition (weights_only=True does not mitigate on these versions)."
|
|
15460
|
+
],
|
|
15461
|
+
"_ioc_source_note": "Behavioral signatures anchored to the PyTorch GitHub security advisory (https://github.com/pytorch/pytorch/security/advisories/GHSA-53q9-r3pm-6pq6) and NVD CVE-2025-32434 (CWE-502). The torch.load code execution despite weights_only=True is the indicator anchor."
|
|
15462
|
+
},
|
|
15463
|
+
"source_verified": "2026-05-25",
|
|
15464
|
+
"verification_sources": [
|
|
15465
|
+
"https://nvd.nist.gov/vuln/detail/CVE-2025-32434",
|
|
15466
|
+
"https://github.com/pytorch/pytorch/security/advisories/GHSA-53q9-r3pm-6pq6"
|
|
15467
|
+
],
|
|
15468
|
+
"vendor_advisories": [
|
|
15469
|
+
{
|
|
15470
|
+
"vendor": "GitHub Security Advisory (pytorch)",
|
|
15471
|
+
"advisory_id": "GHSA-53q9-r3pm-6pq6",
|
|
15472
|
+
"url": "https://github.com/pytorch/pytorch/security/advisories/GHSA-53q9-r3pm-6pq6",
|
|
15473
|
+
"severity": "critical",
|
|
15474
|
+
"published_date": "2025-04-18"
|
|
15475
|
+
},
|
|
15476
|
+
{
|
|
15477
|
+
"vendor": "NVD",
|
|
15478
|
+
"advisory_id": "CVE-2025-32434",
|
|
15479
|
+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-32434",
|
|
15480
|
+
"severity": "critical",
|
|
15481
|
+
"published_date": "2025-04-18"
|
|
15482
|
+
}
|
|
15483
|
+
],
|
|
15484
|
+
"last_updated": "2026-05-25",
|
|
15485
|
+
"discovery_attribution_note": "Manually curated from NVD (CWE-502; NIST CVSS 9.8) + the PyTorch GitHub security advisory. The foundational DL framework's torch.load executes code even with weights_only=True on <= 2.5.1; same untrusted-model-artifact class as Keras / HF Transformers / NeMo (shares NEW-CTRL-091), and a documented-safe-mitigation bypass.",
|
|
15486
|
+
"_auto_imported": false,
|
|
15487
|
+
"_intake_method": "manual-verified-curation",
|
|
15488
|
+
"_kev_short_description": "PyTorch's torch.load executes code from a crafted checkpoint even with weights_only=True on <= 2.5.1 (CWE-502), defeating the recommended safe-load guidance; fixed in 2.6.0."
|
|
15489
|
+
},
|
|
15384
15490
|
"CVE-2026-41091": {
|
|
15385
15491
|
"name": "Microsoft Defender (Malware Protection Engine) Link-Following LPE to SYSTEM",
|
|
15386
15492
|
"type": "LPE",
|
package/data/cwe-catalog.json
CHANGED
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"CVE-2025-23266",
|
|
64
64
|
"CVE-2025-30165",
|
|
65
65
|
"CVE-2025-30202",
|
|
66
|
+
"CVE-2025-32434",
|
|
66
67
|
"CVE-2025-32444",
|
|
67
68
|
"CVE-2025-33236",
|
|
68
69
|
"CVE-2025-34291",
|
|
@@ -1477,6 +1478,7 @@
|
|
|
1477
1478
|
"CVE-2025-31277",
|
|
1478
1479
|
"CVE-2025-32432",
|
|
1479
1480
|
"CVE-2025-32433",
|
|
1481
|
+
"CVE-2025-32434",
|
|
1480
1482
|
"CVE-2025-32444",
|
|
1481
1483
|
"CVE-2025-32463",
|
|
1482
1484
|
"CVE-2025-32701",
|
|
@@ -1859,6 +1861,7 @@
|
|
|
1859
1861
|
"CVE-2025-23266",
|
|
1860
1862
|
"CVE-2025-30165",
|
|
1861
1863
|
"CVE-2025-30202",
|
|
1864
|
+
"CVE-2025-32434",
|
|
1862
1865
|
"CVE-2025-32444",
|
|
1863
1866
|
"CVE-2025-33236",
|
|
1864
1867
|
"CVE-2025-34291",
|
|
@@ -2317,6 +2320,7 @@
|
|
|
2317
2320
|
"CVE-2025-1753",
|
|
2318
2321
|
"CVE-2025-23254",
|
|
2319
2322
|
"CVE-2025-30165",
|
|
2323
|
+
"CVE-2025-32434",
|
|
2320
2324
|
"CVE-2025-33236",
|
|
2321
2325
|
"CVE-2025-60455",
|
|
2322
2326
|
"CVE-2025-64496",
|
|
@@ -2550,6 +2554,7 @@
|
|
|
2550
2554
|
"CVE-2025-31277",
|
|
2551
2555
|
"CVE-2025-32432",
|
|
2552
2556
|
"CVE-2025-32433",
|
|
2557
|
+
"CVE-2025-32434",
|
|
2553
2558
|
"CVE-2025-32444",
|
|
2554
2559
|
"CVE-2025-32463",
|
|
2555
2560
|
"CVE-2025-32701",
|
|
@@ -5010,6 +5015,7 @@
|
|
|
5010
5015
|
"CVE-2025-23266",
|
|
5011
5016
|
"CVE-2025-30165",
|
|
5012
5017
|
"CVE-2025-30202",
|
|
5018
|
+
"CVE-2025-32434",
|
|
5013
5019
|
"CVE-2025-32444",
|
|
5014
5020
|
"CVE-2025-33236",
|
|
5015
5021
|
"CVE-2025-34291",
|
|
@@ -5556,6 +5562,7 @@
|
|
|
5556
5562
|
"CVE-2025-23266",
|
|
5557
5563
|
"CVE-2025-30165",
|
|
5558
5564
|
"CVE-2025-30202",
|
|
5565
|
+
"CVE-2025-32434",
|
|
5559
5566
|
"CVE-2025-32444",
|
|
5560
5567
|
"CVE-2025-33236",
|
|
5561
5568
|
"CVE-2025-34291",
|
|
@@ -5647,6 +5654,7 @@
|
|
|
5647
5654
|
"CVE-2025-23266",
|
|
5648
5655
|
"CVE-2025-30165",
|
|
5649
5656
|
"CVE-2025-30202",
|
|
5657
|
+
"CVE-2025-32434",
|
|
5650
5658
|
"CVE-2025-32444",
|
|
5651
5659
|
"CVE-2025-33236",
|
|
5652
5660
|
"CVE-2025-34291",
|
|
@@ -8483,6 +8483,56 @@
|
|
|
8483
8483
|
"_auto_imported": false,
|
|
8484
8484
|
"_intake_method": "manual-verified-curation"
|
|
8485
8485
|
},
|
|
8486
|
+
"CVE-2025-32434": {
|
|
8487
|
+
"name": "PyTorch torch.load Remote Code Execution Despite weights_only=True",
|
|
8488
|
+
"lesson_date": "2026-05-25",
|
|
8489
|
+
"attack_vector": {
|
|
8490
|
+
"description": "PyTorch's torch.load executes attacker code from a crafted checkpoint even when weights_only=True is set (CWE-502), so deployments that followed the recommended safe-load guidance on <= 2.5.1 are still vulnerable to loading an untrusted model.",
|
|
8491
|
+
"privileges_required": "ability to get an untrusted checkpoint loaded (NVD AV:N / PR:N)",
|
|
8492
|
+
"complexity": "low (NVD AC:L)",
|
|
8493
|
+
"ai_factor": "The abused surface is the primary model-loading API of PyTorch, the foundational deep-learning framework. The lesson, sharpened like the Keras safe_mode bypass: a 'safe' loading flag (weights_only=True) was necessary-but-insufficient. Model checkpoints must be treated as untrusted code regardless of load flags - provenance, safetensors, sandboxed loading - and the framework must be patched (2.6.0+)."
|
|
8494
|
+
},
|
|
8495
|
+
"framework_coverage": {
|
|
8496
|
+
"NIST-800-53-SI-2": {
|
|
8497
|
+
"covered": true,
|
|
8498
|
+
"adequate": false,
|
|
8499
|
+
"gap": "Does not track the DL framework's model-loading API as RCE-bearing, nor that the documented safe-load flag was bypassable."
|
|
8500
|
+
},
|
|
8501
|
+
"NIST-800-53-SI-10": {
|
|
8502
|
+
"covered": true,
|
|
8503
|
+
"adequate": false,
|
|
8504
|
+
"gap": "Input validation is not applied to checkpoints torch.load deserializes; the safe-load flag was trusted as sufficient."
|
|
8505
|
+
},
|
|
8506
|
+
"ALL-AI-PIPELINE-INTEGRITY": {
|
|
8507
|
+
"covered": false,
|
|
8508
|
+
"adequate": false,
|
|
8509
|
+
"gap": "No framework treats an ML model checkpoint as untrusted executable input; loading one with torch.load (even weights_only=True on <= 2.5.1) is RCE."
|
|
8510
|
+
}
|
|
8511
|
+
},
|
|
8512
|
+
"compliance_exposure_score": {
|
|
8513
|
+
"percent_audit_passing_orgs_still_exposed": 76,
|
|
8514
|
+
"basis": "Teams adopted weights_only=True as the safe way to load untrusted checkpoints; on <= 2.5.1 that guidance is bypassable, so 'compliant' pipelines remain exposed.",
|
|
8515
|
+
"theater_pattern": "incomplete_fix_assumed_complete"
|
|
8516
|
+
},
|
|
8517
|
+
"ai_discovered_zeroday": false,
|
|
8518
|
+
"ai_discovery_source": "human_researcher",
|
|
8519
|
+
"ai_assist_factor": "none",
|
|
8520
|
+
"new_control_requirements": [
|
|
8521
|
+
{
|
|
8522
|
+
"id": "NEW-CTRL-091",
|
|
8523
|
+
"name": "UNTRUSTED-MODEL-ARTIFACT-LOADING",
|
|
8524
|
+
"description": "Treat ML model artifacts as untrusted code regardless of 'safe' load flags: never load checkpoints from untrusted sources, verify provenance, prefer safetensors, and load untrusted models only sandboxed. Upgrade PyTorch to 2.6.0 or later - weights_only=True does NOT make torch.load safe on <= 2.5.1 (CVE-2025-32434). The control is the same one that closes the Keras, Hugging Face Transformers, and NeMo model-deserialization CVEs. The distinguishing test: load an attacker-crafted checkpoint with weights_only=True on a sandboxed instance and confirm no code executes.",
|
|
8525
|
+
"evidence": "https://github.com/pytorch/pytorch/security/advisories/GHSA-53q9-r3pm-6pq6",
|
|
8526
|
+
"gap_closes": [
|
|
8527
|
+
"NIST-800-53-SI-2",
|
|
8528
|
+
"NIST-800-53-SI-10",
|
|
8529
|
+
"ALL-AI-PIPELINE-INTEGRITY"
|
|
8530
|
+
]
|
|
8531
|
+
}
|
|
8532
|
+
],
|
|
8533
|
+
"_auto_imported": false,
|
|
8534
|
+
"_intake_method": "manual-verified-curation"
|
|
8535
|
+
},
|
|
8486
8536
|
"CVE-2024-0129": {
|
|
8487
8537
|
"name": "NVIDIA NeMo SaveRestoreConnector .tar Path Traversal to Code Execution",
|
|
8488
8538
|
"lesson_date": "2026-05-25",
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceptd-security",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.100",
|
|
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-26T05:
|
|
56
|
+
"signed_at": "2026-05-26T05:39:38.583Z",
|
|
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-26T05:
|
|
126
|
+
"signed_at": "2026-05-26T05:39:38.585Z",
|
|
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-26T05:
|
|
199
|
+
"signed_at": "2026-05-26T05:39:38.585Z",
|
|
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-26T05:
|
|
251
|
+
"signed_at": "2026-05-26T05:39:38.585Z"
|
|
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-26T05:
|
|
282
|
+
"signed_at": "2026-05-26T05:39:38.586Z"
|
|
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-26T05:
|
|
311
|
+
"signed_at": "2026-05-26T05:39:38.586Z"
|
|
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-26T05:
|
|
348
|
+
"signed_at": "2026-05-26T05:39:38.587Z",
|
|
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-26T05:
|
|
408
|
+
"signed_at": "2026-05-26T05:39:38.587Z",
|
|
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-26T05:
|
|
443
|
+
"signed_at": "2026-05-26T05:39:38.587Z",
|
|
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-26T05:
|
|
477
|
+
"signed_at": "2026-05-26T05:39:38.588Z",
|
|
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-26T05:
|
|
516
|
+
"signed_at": "2026-05-26T05:39:38.588Z"
|
|
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-26T05:
|
|
543
|
+
"signed_at": "2026-05-26T05:39:38.588Z",
|
|
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-26T05:
|
|
607
|
+
"signed_at": "2026-05-26T05:39:38.589Z",
|
|
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-26T05:
|
|
655
|
+
"signed_at": "2026-05-26T05:39:38.589Z"
|
|
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-26T05:
|
|
692
|
+
"signed_at": "2026-05-26T05:39:38.589Z",
|
|
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-26T05:
|
|
727
|
+
"signed_at": "2026-05-26T05:39:38.590Z"
|
|
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-26T05:
|
|
799
|
+
"signed_at": "2026-05-26T05:39:38.590Z"
|
|
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-26T05:
|
|
859
|
+
"signed_at": "2026-05-26T05:39:38.590Z"
|
|
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-26T05:
|
|
934
|
+
"signed_at": "2026-05-26T05:39:38.590Z"
|
|
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-26T05:
|
|
1013
|
+
"signed_at": "2026-05-26T05:39:38.591Z"
|
|
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-26T05:
|
|
1070
|
+
"signed_at": "2026-05-26T05:39:38.591Z"
|
|
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-26T05:
|
|
1137
|
+
"signed_at": "2026-05-26T05:39:38.591Z"
|
|
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-26T05:
|
|
1193
|
+
"signed_at": "2026-05-26T05:39:38.592Z"
|
|
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-26T05:
|
|
1245
|
+
"signed_at": "2026-05-26T05:39:38.592Z"
|
|
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-26T05:
|
|
1295
|
+
"signed_at": "2026-05-26T05:39:38.592Z"
|
|
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-26T05:
|
|
1369
|
+
"signed_at": "2026-05-26T05:39:38.593Z",
|
|
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-26T05:
|
|
1422
|
+
"signed_at": "2026-05-26T05:39:38.593Z"
|
|
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-26T05:
|
|
1482
|
+
"signed_at": "2026-05-26T05:39:38.593Z"
|
|
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-26T05:
|
|
1563
|
+
"signed_at": "2026-05-26T05:39:38.594Z"
|
|
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-26T05:
|
|
1632
|
+
"signed_at": "2026-05-26T05:39:38.594Z"
|
|
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-26T05:
|
|
1697
|
+
"signed_at": "2026-05-26T05:39:38.594Z"
|
|
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-26T05:
|
|
1783
|
+
"signed_at": "2026-05-26T05:39:38.595Z"
|
|
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-26T05:
|
|
1852
|
+
"signed_at": "2026-05-26T05:39:38.595Z",
|
|
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-26T05:
|
|
1938
|
+
"signed_at": "2026-05-26T05:39:38.595Z"
|
|
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-26T05:
|
|
2000
|
+
"signed_at": "2026-05-26T05:39:38.596Z",
|
|
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-26T05:
|
|
2074
|
+
"signed_at": "2026-05-26T05:39:38.596Z"
|
|
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-26T05:
|
|
2136
|
+
"signed_at": "2026-05-26T05:39:38.596Z"
|
|
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-26T05:
|
|
2216
|
+
"signed_at": "2026-05-26T05:39:38.597Z"
|
|
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-26T05:
|
|
2269
|
+
"signed_at": "2026-05-26T05:39:38.597Z"
|
|
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-26T05:
|
|
2337
|
+
"signed_at": "2026-05-26T05:39:38.597Z"
|
|
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-26T05:
|
|
2417
|
+
"signed_at": "2026-05-26T05:39:38.598Z",
|
|
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-26T05:
|
|
2511
|
+
"signed_at": "2026-05-26T05:39:38.598Z",
|
|
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": "W4UYdYBo0P1b35qbnzMeT0qmXVyFRk6DKcJUqXt94tArF6lP/QwMt0SivmkkIHCDxlQB7/88fdm7KhxKRo8ODQ=="
|
|
2530
2530
|
}
|
|
2531
2531
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blamejs/exceptd-skills",
|
|
3
|
-
"version": "0.13.
|
|
4
|
-
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (
|
|
3
|
+
"version": "0.13.100",
|
|
4
|
+
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (379 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 7476 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",
|
|
7
7
|
"ai-skills",
|