@blamejs/exceptd-skills 0.16.22 → 0.16.24
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/ARCHITECTURE.md +2 -2
- package/CHANGELOG.md +42 -0
- package/CONTEXT.md +9 -9
- package/README.md +3 -3
- package/agents/report-generator.md +2 -2
- package/agents/skill-updater.md +1 -1
- package/agents/source-validator.md +3 -4
- package/agents/threat-researcher.md +1 -1
- package/bin/exceptd.js +91 -32
- package/data/_indexes/_meta.json +10 -10
- package/data/_indexes/activity-feed.json +12 -12
- package/data/_indexes/chains.json +70435 -4026
- package/data/_indexes/frequency.json +492 -163
- package/data/_indexes/section-offsets.json +51 -51
- package/data/_indexes/summary-cards.json +272 -106
- package/data/_indexes/token-budget.json +10 -10
- package/data/_indexes/trigger-table.json +15 -6
- package/data/_indexes/xref.json +218 -26
- package/data/cve-catalog.json +10 -10
- package/data/cwe-catalog.json +1 -0
- package/lib/auto-discovery.js +39 -1
- package/lib/collectors/ai-api.js +112 -7
- package/lib/collectors/citation-hygiene.js +27 -0
- package/lib/collectors/crypto-codebase.js +25 -0
- package/lib/collectors/kernel.js +32 -2
- package/lib/collectors/library-author.js +30 -0
- package/lib/collectors/runtime.js +38 -3
- package/lib/collectors/sbom.js +21 -2
- package/lib/collectors/scan-excludes.js +4 -1
- package/lib/collectors/secrets.js +125 -0
- package/lib/cve-cli.js +9 -1
- package/lib/cve-curation.js +8 -1
- package/lib/cve-regression-watcher.js +5 -2
- package/lib/exit-codes.js +2 -0
- package/lib/flag-suggest.js +1 -1
- package/lib/lint-skills.js +70 -0
- package/lib/playbook-runner.js +75 -14
- package/lib/prefetch.js +24 -1
- package/lib/refresh-external.js +32 -3
- package/lib/rfc-cli.js +8 -1
- package/lib/scoring.js +36 -8
- package/lib/validate-cve-catalog.js +36 -14
- package/lib/validate-package.js +8 -0
- package/lib/validate-playbooks.js +42 -0
- package/lib/verify.js +4 -3
- package/manifest-snapshot.json +4 -2
- package/manifest-snapshot.sha256 +1 -1
- package/manifest.json +57 -54
- package/orchestrator/README.md +1 -1
- package/orchestrator/index.js +65 -7
- package/orchestrator/scanner.js +53 -5
- package/package.json +1 -1
- package/sbom.cdx.json +110 -110
- package/scripts/build-indexes.js +42 -8
- package/scripts/builders/cwe-chains.js +1 -0
- package/scripts/builders/section-offsets.js +10 -2
- package/scripts/builders/token-budget.js +3 -3
- package/scripts/check-changelog-extract.js +38 -1
- package/scripts/check-sbom-currency.js +72 -0
- package/scripts/check-version-tags.js +5 -0
- package/scripts/release.js +22 -15
- package/skills/exploit-scoring/skill.md +8 -8
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"skills": {
|
|
7
7
|
"kernel-lpe-triage": {
|
|
8
|
-
"description": "Assess Linux kernel LPE exposure — Copy Fail, Dirty Frag, live-patch vs. reboot remediation",
|
|
8
|
+
"description": "Assess Linux kernel LPE exposure — Copy Fail, Dirty Frag, Fragnesia, live-patch vs. reboot remediation paths, framework gap declarations",
|
|
9
9
|
"threat_context_excerpt": "An AI system discovered this vulnerability in approximately one hour. It is a page-cache copy-on-write (CoW) primitive in the Linux kernel affecting all major distributions since kernel 4.14 (2017). Every major Linux distribution is affected: RHEL 7–9, Ubuntu 18.04–24.04, Debian 9–12, CentOS, Fedora, Amazon Linux 2/2023, SUSE 12/15, Alpine, and derivatives.",
|
|
10
10
|
"produces": "The triage produces a structured Kernel LPE Exposure Assessment per host or fleet snapshot. The shape below is consumed downstream by `exploit-scoring` (which converts the per-CVE exposure into RWEP bands), by `incident-response-playbook` (which uses the affected-host count to scope IR), and by `compliance-theater` (which compares the deployed-mitigation field against the org's claimed SI-2 / A.8.8 patch SLA). Operators surfacing the output to auditors should preserve the CISA KEV due-date field verbatim — federal due dates are the authoritative regulatory clock, not internal SLAs.\n\nProduce th ...",
|
|
11
11
|
"key_xrefs": {
|
|
@@ -19,8 +19,10 @@
|
|
|
19
19
|
"d3fend_refs": [
|
|
20
20
|
"D3-ASLR",
|
|
21
21
|
"D3-EAL",
|
|
22
|
+
"D3-PA",
|
|
22
23
|
"D3-PHRA",
|
|
23
|
-
"D3-PSEP"
|
|
24
|
+
"D3-PSEP",
|
|
25
|
+
"D3-SCP"
|
|
24
26
|
],
|
|
25
27
|
"framework_gaps": [
|
|
26
28
|
"NIST-800-53-SI-2",
|
|
@@ -28,7 +30,9 @@
|
|
|
28
30
|
"PCI-DSS-4.0-6.3.3",
|
|
29
31
|
"NIS2-Art21-patch-management",
|
|
30
32
|
"NIST-800-53-SC-8",
|
|
31
|
-
"CIS-Controls-v8-Control7"
|
|
33
|
+
"CIS-Controls-v8-Control7",
|
|
34
|
+
"UK-CAF-D1",
|
|
35
|
+
"AU-Essential-8-Patch"
|
|
32
36
|
],
|
|
33
37
|
"atlas_refs": [],
|
|
34
38
|
"attack_refs": [
|
|
@@ -42,12 +46,12 @@
|
|
|
42
46
|
],
|
|
43
47
|
"dlp_refs": []
|
|
44
48
|
},
|
|
45
|
-
"trigger_count":
|
|
49
|
+
"trigger_count": 11,
|
|
46
50
|
"atlas_count": 0,
|
|
47
51
|
"attack_count": 2,
|
|
48
|
-
"framework_gap_count":
|
|
52
|
+
"framework_gap_count": 8,
|
|
49
53
|
"cwe_count": 5,
|
|
50
|
-
"d3fend_count":
|
|
54
|
+
"d3fend_count": 6,
|
|
51
55
|
"rfc_count": 3,
|
|
52
56
|
"last_threat_review": "2026-05-15",
|
|
53
57
|
"path": "skills/kernel-lpe-triage/skill.md",
|
|
@@ -60,7 +64,7 @@
|
|
|
60
64
|
]
|
|
61
65
|
},
|
|
62
66
|
"ai-attack-surface": {
|
|
63
|
-
"description": "Comprehensive AI/ML attack surface assessment mapped to MITRE ATLAS v5.6.0 with gap flags",
|
|
67
|
+
"description": "Comprehensive AI/ML attack surface assessment mapped to MITRE ATLAS v5.6.0 with explicit framework gap flags",
|
|
64
68
|
"threat_context_excerpt": "The AI attack surface is not speculative. It is actively exploited. The following are confirmed, documented threats as of mid-2026.",
|
|
65
69
|
"produces": "The assessment produces a structured AI Attack Surface Assessment report. The shape below is consumed downstream by `mcp-agent-trust` (which converts the MCP Trust Assessment section into per-server policy), by `rag-pipeline-security` (which picks up any RAG-pipeline entries from the Surface Inventory), and by `incident-response-playbook` (which scopes IR against the prompt-injection and AI-C2 exposure bands). CSAF-style auditor evidence bundles consume the Framework Gaps and ATLAS TTP Coverage Gaps sections verbatim — preserve the framework-control IDs as cited.\n\n```\n## AI Attack Surface Asse ...",
|
|
66
70
|
"key_xrefs": {
|
|
@@ -71,7 +75,10 @@
|
|
|
71
75
|
],
|
|
72
76
|
"d3fend_refs": [
|
|
73
77
|
"D3-IOPR",
|
|
74
|
-
"D3-NTA"
|
|
78
|
+
"D3-NTA",
|
|
79
|
+
"D3-EAL",
|
|
80
|
+
"D3-FAPA",
|
|
81
|
+
"D3-CSPP"
|
|
75
82
|
],
|
|
76
83
|
"framework_gaps": [
|
|
77
84
|
"ALL-AI-PIPELINE-INTEGRITY",
|
|
@@ -82,7 +89,10 @@
|
|
|
82
89
|
"NIST-800-53-SI-3",
|
|
83
90
|
"OWASP-LLM-Top-10-2025-LLM01",
|
|
84
91
|
"OWASP-LLM-Top-10-2025-LLM02",
|
|
85
|
-
"SOC2-CC6-logical-access"
|
|
92
|
+
"SOC2-CC6-logical-access",
|
|
93
|
+
"EU-AI-Act-Art-15",
|
|
94
|
+
"UK-CAF-A1",
|
|
95
|
+
"AU-Essential-8-App-Hardening"
|
|
86
96
|
],
|
|
87
97
|
"atlas_refs": [
|
|
88
98
|
"AML.T0043",
|
|
@@ -105,9 +115,9 @@
|
|
|
105
115
|
"trigger_count": 9,
|
|
106
116
|
"atlas_count": 8,
|
|
107
117
|
"attack_count": 3,
|
|
108
|
-
"framework_gap_count":
|
|
118
|
+
"framework_gap_count": 12,
|
|
109
119
|
"cwe_count": 3,
|
|
110
|
-
"d3fend_count":
|
|
120
|
+
"d3fend_count": 5,
|
|
111
121
|
"rfc_count": 0,
|
|
112
122
|
"last_threat_review": "2026-05-17",
|
|
113
123
|
"path": "skills/ai-attack-surface/skill.md",
|
|
@@ -129,6 +139,7 @@
|
|
|
129
139
|
"CWE-94"
|
|
130
140
|
],
|
|
131
141
|
"d3fend_refs": [
|
|
142
|
+
"D3-CAA",
|
|
132
143
|
"D3-CBAN",
|
|
133
144
|
"D3-CSPP",
|
|
134
145
|
"D3-EAL",
|
|
@@ -142,7 +153,10 @@
|
|
|
142
153
|
"NIST-800-53-SA-12",
|
|
143
154
|
"OWASP-LLM-Top-10-2025-LLM06",
|
|
144
155
|
"SOC2-CC9-vendor-management",
|
|
145
|
-
"SWIFT-CSCF-v2026-1.1"
|
|
156
|
+
"SWIFT-CSCF-v2026-1.1",
|
|
157
|
+
"EU-AI-Act-Art-15",
|
|
158
|
+
"UK-CAF-A1",
|
|
159
|
+
"AU-Essential-8-App-Hardening"
|
|
146
160
|
],
|
|
147
161
|
"atlas_refs": [
|
|
148
162
|
"AML.T0010",
|
|
@@ -168,9 +182,9 @@
|
|
|
168
182
|
"trigger_count": 10,
|
|
169
183
|
"atlas_count": 3,
|
|
170
184
|
"attack_count": 3,
|
|
171
|
-
"framework_gap_count":
|
|
185
|
+
"framework_gap_count": 10,
|
|
172
186
|
"cwe_count": 8,
|
|
173
|
-
"d3fend_count":
|
|
187
|
+
"d3fend_count": 6,
|
|
174
188
|
"rfc_count": 7,
|
|
175
189
|
"last_threat_review": "2026-05-17",
|
|
176
190
|
"path": "skills/mcp-agent-trust/skill.md",
|
|
@@ -207,7 +221,7 @@
|
|
|
207
221
|
"handoff_targets": []
|
|
208
222
|
},
|
|
209
223
|
"compliance-theater": {
|
|
210
|
-
"description": "Detect where an organization passes an audit but remains exposed — seven documented compliance theater patterns",
|
|
224
|
+
"description": "Detect where an organization passes an audit but remains exposed — seven documented compliance theater patterns with specific detection tests",
|
|
211
225
|
"threat_context_excerpt": "The defining mid-2026 reality is that an organization can pass a clean ISO 27001:2022, SOC 2 Type II, or PCI DSS 4.0 audit while remaining exposed to KEV-listed deterministic LPEs and zero-interaction RCEs. The contrast cases drive every theater pattern below:",
|
|
212
226
|
"produces": "The skill produces a structured Compliance Theater Assessment that scores each of the seven theater patterns and surfaces the auditor-facing remediation language for any flagged pattern. The shape below is consumed downstream by `policy-exception-gen` (which converts theater flags into defensible exceptions with concrete compensating controls), by `framework-gap-analysis` (which escalates any newly discovered theater pattern into a Framework Lag Declaration), and by `global-grc` (which rolls up theater findings across EU/UK/AU/ISO jurisdictions). Auditor-facing remediation language is the load ...",
|
|
213
227
|
"key_xrefs": {
|
|
@@ -263,7 +277,7 @@
|
|
|
263
277
|
"handoff_targets": []
|
|
264
278
|
},
|
|
265
279
|
"rag-pipeline-security": {
|
|
266
|
-
"description": "RAG-specific threat model — embedding manipulation, vector store poisoning, retrieval filter bypass, indirect prompt injection",
|
|
280
|
+
"description": "RAG-specific threat model — embedding manipulation, vector store poisoning, retrieval filter bypass, indirect prompt injection — no current framework coverage",
|
|
267
281
|
"threat_context_excerpt": "Retrieval-Augmented Generation (RAG) pipelines introduce a unique attack surface that exists at the intersection of traditional data security and AI-specific vulnerabilities. No current compliance framework has adequate controls for this attack surface. The threats in this skill are not theoretical — they have been demonstrated in research and observed in production incidents. Operational context: 41% of 2025 zero-days were AI-discovered (GTIG 2025); the first AI-built in-the-wild zero-day surfaced 2026-05-11 (GTIG AI 2FA-bypass), and Fragnesia (CVE-2026-46300, 2026-05-13) is the canonical ...",
|
|
268
282
|
"produces": "The skill produces a structured RAG Pipeline Security Assessment covering vector-store inventory, embedding-model trust posture, retrieval-policy coverage, and observed exfiltration risk per corpus. The shape below is consumed downstream by `ai-attack-surface` (which integrates the per-corpus risk band into the broader AI surface report), by `dlp-gap-analysis` (which picks up the retrieval-policy gaps as DLP-channel findings), and by `mlops-security` (which inherits the embedding-model trust assessment). Operators feeding the output into auditor evidence should preserve the per-corpus retrieva ...",
|
|
269
283
|
"key_xrefs": {
|
|
@@ -273,6 +287,8 @@
|
|
|
273
287
|
],
|
|
274
288
|
"d3fend_refs": [
|
|
275
289
|
"D3-CSPP",
|
|
290
|
+
"D3-FCR",
|
|
291
|
+
"D3-FAPA",
|
|
276
292
|
"D3-IOPR",
|
|
277
293
|
"D3-NTA"
|
|
278
294
|
],
|
|
@@ -280,7 +296,10 @@
|
|
|
280
296
|
"ISO-27001-2022-A.8.28",
|
|
281
297
|
"NIST-800-53-SI-12",
|
|
282
298
|
"NIST-AI-RMF-MEASURE-2.5",
|
|
283
|
-
"OWASP-LLM-Top-10-2025-LLM08"
|
|
299
|
+
"OWASP-LLM-Top-10-2025-LLM08",
|
|
300
|
+
"EU-AI-Act-Art-15",
|
|
301
|
+
"UK-CAF-B2",
|
|
302
|
+
"AU-Essential-8-App-Hardening"
|
|
284
303
|
],
|
|
285
304
|
"atlas_refs": [
|
|
286
305
|
"AML.T0020",
|
|
@@ -297,9 +316,9 @@
|
|
|
297
316
|
"trigger_count": 7,
|
|
298
317
|
"atlas_count": 4,
|
|
299
318
|
"attack_count": 1,
|
|
300
|
-
"framework_gap_count":
|
|
319
|
+
"framework_gap_count": 7,
|
|
301
320
|
"cwe_count": 2,
|
|
302
|
-
"d3fend_count":
|
|
321
|
+
"d3fend_count": 5,
|
|
303
322
|
"rfc_count": 0,
|
|
304
323
|
"last_threat_review": "2026-05-22",
|
|
305
324
|
"path": "skills/rag-pipeline-security/skill.md",
|
|
@@ -312,11 +331,13 @@
|
|
|
312
331
|
]
|
|
313
332
|
},
|
|
314
333
|
"ai-c2-detection": {
|
|
315
|
-
"description": "Detect adversary use of AI APIs as covert C2 — SesameOp pattern, PROMPTFLUX/PROMPTSTEAL behavioral signatures",
|
|
334
|
+
"description": "Detect adversary use of AI APIs as covert C2 — SesameOp pattern, PROMPTFLUX/PROMPTSTEAL behavioral signatures, response playbook",
|
|
316
335
|
"threat_context_excerpt": "The AI-as-adversary reality that motivates this skill is now operationally documented: 41% of 2025 zero-days were AI-discovered (GTIG 2025), the first AI-built in-the-wild zero-day was confirmed 2026-05-11 (GTIG AI 2FA-bypass case), and Fragnesia (CVE-2026-46300, 2026-05-13) is the canonical AI-driven autonomous-discovery anchor — Zellic's agentic auditor surfaced an 18-year-old Linux kernel primitive. C2 channels riding the same agentic AI infrastructure are the next logical step; CTID Secure AI v2 (2026-05-06, replaces v1) treats AI-API C2 detection as an in-scope control class.",
|
|
317
336
|
"produces": "The skill produces a structured AI C2 Detection Assessment covering per-host AI-API egress baselines, behavioral anomaly indicators, and SesameOp-class C2-pattern findings. The shape below is consumed downstream by `incident-response-playbook` (which scopes IR against confirmed C2 indicators), by `ai-attack-surface` (which integrates the detection-gap section into the broader AI surface report), and by `compliance-theater` (which compares the AI-API monitoring coverage against any SI-4 / CC7 anomaly-detection compliance claim). Preserve the per-host egress-baseline shape verbatim — it is the l ...",
|
|
318
337
|
"key_xrefs": {
|
|
319
|
-
"cwe_refs": [
|
|
338
|
+
"cwe_refs": [
|
|
339
|
+
"CWE-918"
|
|
340
|
+
],
|
|
320
341
|
"d3fend_refs": [
|
|
321
342
|
"D3-CA",
|
|
322
343
|
"D3-CSPP",
|
|
@@ -330,7 +351,10 @@
|
|
|
330
351
|
"NIST-800-53-SI-3",
|
|
331
352
|
"NIST-800-53-SC-7",
|
|
332
353
|
"ISO-27001-2022-A.8.16",
|
|
333
|
-
"SOC2-CC7-anomaly-detection"
|
|
354
|
+
"SOC2-CC7-anomaly-detection",
|
|
355
|
+
"NIS2-Art21-incident-handling",
|
|
356
|
+
"UK-CAF-C1",
|
|
357
|
+
"AU-Essential-8-App-Hardening"
|
|
334
358
|
],
|
|
335
359
|
"atlas_refs": [
|
|
336
360
|
"AML.T0096",
|
|
@@ -354,8 +378,8 @@
|
|
|
354
378
|
"trigger_count": 9,
|
|
355
379
|
"atlas_count": 2,
|
|
356
380
|
"attack_count": 3,
|
|
357
|
-
"framework_gap_count":
|
|
358
|
-
"cwe_count":
|
|
381
|
+
"framework_gap_count": 7,
|
|
382
|
+
"cwe_count": 1,
|
|
359
383
|
"d3fend_count": 7,
|
|
360
384
|
"rfc_count": 6,
|
|
361
385
|
"last_threat_review": "2026-05-17",
|
|
@@ -369,7 +393,7 @@
|
|
|
369
393
|
]
|
|
370
394
|
},
|
|
371
395
|
"policy-exception-gen": {
|
|
372
|
-
"description": "Generate defensible policy exceptions for architectural realities — ephemeral infra, AI pipelines, ZTA, no-reboot patching",
|
|
396
|
+
"description": "Generate defensible policy exceptions for architectural realities — ephemeral infra, AI pipelines, ZTA, no-reboot patching, with compensating controls and auditor-ready justification",
|
|
373
397
|
"threat_context_excerpt": "Most non-trivial mid-2026 production architectures break the literal reading of at least one major framework control. Serverless functions break asset-inventory language; immutable container images break in-place patch-window language; LLM API dependencies break change-management language; Zero Trust environments break network-segmentation language. Where the organization has no defensible exception process, only two outcomes remain: (1) the organization claims compliance falsely (theater) or (2) the audit blocks the architecture entirely.",
|
|
374
398
|
"produces": "Produce a complete, signed exception document using the applicable template above, populated with:\n- Specific control ID and text\n- Specific system or environment scope\n- Specific architectural constraint\n- Specific compensating controls with tool names and SLAs\n- Residual risk statement\n- Named risk owner\n- Expiration date or condition\n\n---",
|
|
375
399
|
"key_xrefs": {
|
|
@@ -467,7 +491,7 @@
|
|
|
467
491
|
"handoff_targets": []
|
|
468
492
|
},
|
|
469
493
|
"pqc-first": {
|
|
470
|
-
"description": "Post-quantum cryptography first mentality — hard version gates
|
|
494
|
+
"description": "Post-quantum cryptography first mentality — hard version gates, algorithm sunset tracking, loopback learning for NIST/IETF standards evolution",
|
|
471
495
|
"threat_context_excerpt": "The post-quantum migration is not a planning exercise. It is an operational deadline against an adversary that is already collecting ciphertext.",
|
|
472
496
|
"produces": "The skill produces a structured PQC Readiness Assessment that scores the org's post-quantum migration posture against the NIST PQC standards (ML-KEM / FIPS 203, ML-DSA / FIPS 204, SLH-DSA / FIPS 205), CNSA 2.0, and the BSI / ANSSI / NCSC migration guidance. The shape below is consumed downstream by `crypto` playbook runs (which feed the assessment into the analysis correlation step), by `framework-gap-analysis` (for SC-8 / SC-13 / A.8.24 / A.10 lag declarations), and by `compliance-theater` (which compares the harvest-now-decrypt-later exposure against the org's data-classification claims). Pr ...",
|
|
473
497
|
"key_xrefs": {
|
|
@@ -508,7 +532,7 @@
|
|
|
508
532
|
"handoff_targets": []
|
|
509
533
|
},
|
|
510
534
|
"skill-update-loop": {
|
|
511
|
-
"description": "Meta-skill for keeping all exceptd skills current —
|
|
535
|
+
"description": "Meta-skill for keeping all exceptd skills current — fires on new CVEs, ATLAS updates, framework changes, and forward_watch triggers",
|
|
512
536
|
"threat_context_excerpt": "The threat context this skill defends against is not a specific adversary technique — it is the **drift attack against the platform's own currency**: an exceptd installation whose skills, catalogs, framework references, and ATLAS pins age silently between releases until the operator-facing analysis is calibrated to a threat model that no longer exists.",
|
|
513
537
|
"produces": "The skill produces a Skill Update Loop Report covering per-skill `last_threat_review` currency, ATLAS / ATT&CK / D3FEND / CWE catalog version drift, CISA KEV additions since the last review, and the priority queue of skills requiring body updates before the next release. The shape below is consumed downstream by the release-cadence maintainer workflow, by `data/_meta` tracking, and by the predeploy `watchlist` gate. Preserve the per-skill drift columns verbatim — they are the auditable trigger for each forced body refresh.\n\n```\n## Skill Update Loop Report\n\n**Date:** YYYY-MM-DD\n**Last Full Revi ...",
|
|
514
538
|
"key_xrefs": {
|
|
@@ -532,7 +556,7 @@
|
|
|
532
556
|
"handoff_targets": []
|
|
533
557
|
},
|
|
534
558
|
"security-maturity-tiers": {
|
|
535
|
-
"description": "Three-tier implementation roadmap — MVP
|
|
559
|
+
"description": "Three-tier implementation roadmap — MVP you can ship today, practical best practices useable now, overkill gold standard for defense-in-depth",
|
|
536
560
|
"threat_context_excerpt": "The 2026 threat baseline forces an MVP that would have looked like a Practical tier in 2022. The cardinal observed change: attacker capability now compresses the time from disclosure to reliable exploitation to hours for an entire class of vulnerabilities, and AI-mediated attack surfaces (prompt injection, MCP supply chain, AI-API C2) sit outside the perimeter and identity controls every framework relies on. The implications by tier:",
|
|
537
561
|
"produces": "The skill produces a Security Maturity Roadmap that scores each in-scope domain against the published tier definitions and surfaces the next-tier upgrade path with budget bands and dependency ordering. The shape below is consumed downstream by `policy-exception-gen` (for domains where the operator chooses a lower tier than the threat model requires), by `compliance-theater` (which compares the claimed tier against deployed controls), and by `global-grc` (for cross-jurisdictional tier obligations). Preserve the per-domain tier rows verbatim — they are the auditable baseline for the upgrade plan ...",
|
|
538
562
|
"key_xrefs": {
|
|
@@ -608,7 +632,10 @@
|
|
|
608
632
|
"NIST-800-115",
|
|
609
633
|
"OWASP-Pen-Testing-Guide-v5",
|
|
610
634
|
"PTES-Pre-engagement",
|
|
611
|
-
"NIS2-Art21-patch-management"
|
|
635
|
+
"NIS2-Art21-patch-management",
|
|
636
|
+
"ISO-27001-2022-A.8.8",
|
|
637
|
+
"UK-CAF-A1",
|
|
638
|
+
"AU-Essential-8-App-Hardening"
|
|
612
639
|
],
|
|
613
640
|
"atlas_refs": [
|
|
614
641
|
"AML.T0043",
|
|
@@ -627,7 +654,7 @@
|
|
|
627
654
|
"trigger_count": 11,
|
|
628
655
|
"atlas_count": 3,
|
|
629
656
|
"attack_count": 4,
|
|
630
|
-
"framework_gap_count":
|
|
657
|
+
"framework_gap_count": 7,
|
|
631
658
|
"cwe_count": 11,
|
|
632
659
|
"d3fend_count": 3,
|
|
633
660
|
"rfc_count": 0,
|
|
@@ -700,7 +727,10 @@
|
|
|
700
727
|
"ISO-IEC-42001-2023-clause-6.1.2",
|
|
701
728
|
"HIPAA-Security-Rule-164.312(a)(1)",
|
|
702
729
|
"SOC2-CC7-anomaly-detection",
|
|
703
|
-
"NIST-800-53-SC-28"
|
|
730
|
+
"NIST-800-53-SC-28",
|
|
731
|
+
"NIS2-Art21-incident-handling",
|
|
732
|
+
"UK-CAF-C1",
|
|
733
|
+
"AU-Essential-8-App-Hardening"
|
|
704
734
|
],
|
|
705
735
|
"atlas_refs": [
|
|
706
736
|
"AML.T0096",
|
|
@@ -722,7 +752,7 @@
|
|
|
722
752
|
"trigger_count": 14,
|
|
723
753
|
"atlas_count": 3,
|
|
724
754
|
"attack_count": 4,
|
|
725
|
-
"framework_gap_count":
|
|
755
|
+
"framework_gap_count": 9,
|
|
726
756
|
"cwe_count": 2,
|
|
727
757
|
"d3fend_count": 5,
|
|
728
758
|
"rfc_count": 2,
|
|
@@ -757,7 +787,10 @@
|
|
|
757
787
|
"HITRUST-CSF-v11.4-09.l",
|
|
758
788
|
"SWIFT-CSCF-v2026-1.1",
|
|
759
789
|
"FedRAMP-Rev5-Moderate",
|
|
760
|
-
"CMMC-2.0-Level-2"
|
|
790
|
+
"CMMC-2.0-Level-2",
|
|
791
|
+
"NIS2-Art21-incident-handling",
|
|
792
|
+
"UK-CAF-A1",
|
|
793
|
+
"AU-Essential-8-App-Hardening"
|
|
761
794
|
],
|
|
762
795
|
"atlas_refs": [
|
|
763
796
|
"AML.T0010",
|
|
@@ -776,7 +809,7 @@
|
|
|
776
809
|
"trigger_count": 14,
|
|
777
810
|
"atlas_count": 2,
|
|
778
811
|
"attack_count": 3,
|
|
779
|
-
"framework_gap_count":
|
|
812
|
+
"framework_gap_count": 13,
|
|
780
813
|
"cwe_count": 5,
|
|
781
814
|
"d3fend_count": 3,
|
|
782
815
|
"rfc_count": 1,
|
|
@@ -843,13 +876,19 @@
|
|
|
843
876
|
"CWE-862",
|
|
844
877
|
"CWE-863"
|
|
845
878
|
],
|
|
846
|
-
"d3fend_refs": [
|
|
879
|
+
"d3fend_refs": [
|
|
880
|
+
"D3-MFA",
|
|
881
|
+
"D3-CSPP"
|
|
882
|
+
],
|
|
847
883
|
"framework_gaps": [
|
|
848
884
|
"NIST-800-63B-rev4",
|
|
849
885
|
"NIST-800-53-AC-2",
|
|
850
886
|
"ISO-27001-2022-A.8.30",
|
|
851
887
|
"SOC2-CC6-logical-access",
|
|
852
|
-
"PSD2-RTS-SCA"
|
|
888
|
+
"PSD2-RTS-SCA",
|
|
889
|
+
"NIS2-Art21-incident-handling",
|
|
890
|
+
"UK-CAF-B2",
|
|
891
|
+
"AU-Essential-8-MFA"
|
|
853
892
|
],
|
|
854
893
|
"atlas_refs": [
|
|
855
894
|
"AML.T0051"
|
|
@@ -871,9 +910,9 @@
|
|
|
871
910
|
"trigger_count": 16,
|
|
872
911
|
"atlas_count": 1,
|
|
873
912
|
"attack_count": 3,
|
|
874
|
-
"framework_gap_count":
|
|
913
|
+
"framework_gap_count": 8,
|
|
875
914
|
"cwe_count": 7,
|
|
876
|
-
"d3fend_count":
|
|
915
|
+
"d3fend_count": 2,
|
|
877
916
|
"rfc_count": 5,
|
|
878
917
|
"last_threat_review": "2026-05-11",
|
|
879
918
|
"path": "skills/identity-assurance/skill.md",
|
|
@@ -901,7 +940,10 @@
|
|
|
901
940
|
"NIST-800-82r3",
|
|
902
941
|
"IEC-62443-3-3",
|
|
903
942
|
"NERC-CIP-007-6-R4",
|
|
904
|
-
"NIS2-Art21-patch-management"
|
|
943
|
+
"NIS2-Art21-patch-management",
|
|
944
|
+
"ISO-27001-2022-A.8.8",
|
|
945
|
+
"UK-CAF-B2",
|
|
946
|
+
"AU-Essential-8-App-Hardening"
|
|
905
947
|
],
|
|
906
948
|
"atlas_refs": [
|
|
907
949
|
"AML.T0010"
|
|
@@ -918,7 +960,7 @@
|
|
|
918
960
|
"trigger_count": 15,
|
|
919
961
|
"atlas_count": 1,
|
|
920
962
|
"attack_count": 4,
|
|
921
|
-
"framework_gap_count":
|
|
963
|
+
"framework_gap_count": 7,
|
|
922
964
|
"cwe_count": 4,
|
|
923
965
|
"d3fend_count": 0,
|
|
924
966
|
"rfc_count": 0,
|
|
@@ -950,20 +992,28 @@
|
|
|
950
992
|
"framework_gaps": [
|
|
951
993
|
"NIST-800-218-SSDF",
|
|
952
994
|
"ISO-27001-2022-A.8.8",
|
|
953
|
-
"SOC2-CC9-vendor-management"
|
|
995
|
+
"SOC2-CC9-vendor-management",
|
|
996
|
+
"NIS2-Art21-incident-handling",
|
|
997
|
+
"UK-CAF-D1",
|
|
998
|
+
"AU-Essential-8-Patch"
|
|
954
999
|
],
|
|
955
1000
|
"atlas_refs": [],
|
|
956
1001
|
"attack_refs": [],
|
|
957
|
-
"rfc_refs": [
|
|
1002
|
+
"rfc_refs": [
|
|
1003
|
+
"ISO-29147",
|
|
1004
|
+
"ISO-30111",
|
|
1005
|
+
"RFC-9116",
|
|
1006
|
+
"CSAF-2.0"
|
|
1007
|
+
],
|
|
958
1008
|
"dlp_refs": []
|
|
959
1009
|
},
|
|
960
1010
|
"trigger_count": 12,
|
|
961
1011
|
"atlas_count": 0,
|
|
962
1012
|
"attack_count": 0,
|
|
963
|
-
"framework_gap_count":
|
|
1013
|
+
"framework_gap_count": 6,
|
|
964
1014
|
"cwe_count": 1,
|
|
965
1015
|
"d3fend_count": 0,
|
|
966
|
-
"rfc_count":
|
|
1016
|
+
"rfc_count": 4,
|
|
967
1017
|
"last_threat_review": "2026-05-11",
|
|
968
1018
|
"path": "skills/coordinated-vuln-disclosure/skill.md",
|
|
969
1019
|
"handoff_targets": [
|
|
@@ -989,7 +1039,10 @@
|
|
|
989
1039
|
"ISO-27001-2022-A.8.28",
|
|
990
1040
|
"ISO-IEC-23894-2023-clause-7",
|
|
991
1041
|
"ISO-IEC-42001-2023-clause-6.1.2",
|
|
992
|
-
"NIST-800-218-SSDF"
|
|
1042
|
+
"NIST-800-218-SSDF",
|
|
1043
|
+
"NIS2-Art21-incident-handling",
|
|
1044
|
+
"UK-CAF-A1",
|
|
1045
|
+
"AU-Essential-8-App-Hardening"
|
|
993
1046
|
],
|
|
994
1047
|
"atlas_refs": [],
|
|
995
1048
|
"attack_refs": [],
|
|
@@ -999,7 +1052,7 @@
|
|
|
999
1052
|
"trigger_count": 13,
|
|
1000
1053
|
"atlas_count": 0,
|
|
1001
1054
|
"attack_count": 0,
|
|
1002
|
-
"framework_gap_count":
|
|
1055
|
+
"framework_gap_count": 7,
|
|
1003
1056
|
"cwe_count": 0,
|
|
1004
1057
|
"d3fend_count": 0,
|
|
1005
1058
|
"rfc_count": 0,
|
|
@@ -1040,12 +1093,21 @@
|
|
|
1040
1093
|
"CWE-918",
|
|
1041
1094
|
"CWE-1188"
|
|
1042
1095
|
],
|
|
1043
|
-
"d3fend_refs": [
|
|
1096
|
+
"d3fend_refs": [
|
|
1097
|
+
"D3-IOPR",
|
|
1098
|
+
"D3-NTA",
|
|
1099
|
+
"D3-CSPP",
|
|
1100
|
+
"D3-EAL",
|
|
1101
|
+
"D3-MFA"
|
|
1102
|
+
],
|
|
1044
1103
|
"framework_gaps": [
|
|
1045
1104
|
"OWASP-ASVS-v5.0-V14",
|
|
1046
1105
|
"OWASP-LLM-Top-10-2025-LLM01",
|
|
1047
1106
|
"NIST-800-218-SSDF",
|
|
1048
|
-
"ISO-27001-2022-A.8.28"
|
|
1107
|
+
"ISO-27001-2022-A.8.28",
|
|
1108
|
+
"NIS2-Art21-incident-handling",
|
|
1109
|
+
"UK-CAF-B2",
|
|
1110
|
+
"AU-Essential-8-App-Hardening"
|
|
1049
1111
|
],
|
|
1050
1112
|
"atlas_refs": [
|
|
1051
1113
|
"AML.T0051"
|
|
@@ -1066,9 +1128,9 @@
|
|
|
1066
1128
|
"trigger_count": 15,
|
|
1067
1129
|
"atlas_count": 1,
|
|
1068
1130
|
"attack_count": 3,
|
|
1069
|
-
"framework_gap_count":
|
|
1131
|
+
"framework_gap_count": 7,
|
|
1070
1132
|
"cwe_count": 17,
|
|
1071
|
-
"d3fend_count":
|
|
1133
|
+
"d3fend_count": 5,
|
|
1072
1134
|
"rfc_count": 4,
|
|
1073
1135
|
"last_threat_review": "2026-05-11",
|
|
1074
1136
|
"path": "skills/webapp-security/skill.md",
|
|
@@ -1092,12 +1154,17 @@
|
|
|
1092
1154
|
"CWE-1426",
|
|
1093
1155
|
"CWE-1039"
|
|
1094
1156
|
],
|
|
1095
|
-
"d3fend_refs": [
|
|
1157
|
+
"d3fend_refs": [
|
|
1158
|
+
"D3-IOPR"
|
|
1159
|
+
],
|
|
1096
1160
|
"framework_gaps": [
|
|
1097
1161
|
"ISO-IEC-42001-2023-clause-6.1.2",
|
|
1098
1162
|
"ISO-IEC-23894-2023-clause-7",
|
|
1099
1163
|
"NIST-AI-RMF-MEASURE-2.5",
|
|
1100
|
-
"OWASP-LLM-Top-10-2025-LLM01"
|
|
1164
|
+
"OWASP-LLM-Top-10-2025-LLM01",
|
|
1165
|
+
"EU-AI-Act-Art-15",
|
|
1166
|
+
"UK-CAF-A1",
|
|
1167
|
+
"AU-Essential-8-App-Hardening"
|
|
1101
1168
|
],
|
|
1102
1169
|
"atlas_refs": [
|
|
1103
1170
|
"AML.T0051",
|
|
@@ -1111,9 +1178,9 @@
|
|
|
1111
1178
|
"trigger_count": 13,
|
|
1112
1179
|
"atlas_count": 3,
|
|
1113
1180
|
"attack_count": 0,
|
|
1114
|
-
"framework_gap_count":
|
|
1181
|
+
"framework_gap_count": 7,
|
|
1115
1182
|
"cwe_count": 2,
|
|
1116
|
-
"d3fend_count":
|
|
1183
|
+
"d3fend_count": 1,
|
|
1117
1184
|
"rfc_count": 0,
|
|
1118
1185
|
"last_threat_review": "2026-05-15",
|
|
1119
1186
|
"path": "skills/ai-risk-management/skill.md",
|
|
@@ -1142,12 +1209,19 @@
|
|
|
1142
1209
|
"CWE-862",
|
|
1143
1210
|
"CWE-1426"
|
|
1144
1211
|
],
|
|
1145
|
-
"d3fend_refs": [
|
|
1212
|
+
"d3fend_refs": [
|
|
1213
|
+
"D3-IOPR",
|
|
1214
|
+
"D3-CSPP",
|
|
1215
|
+
"D3-MFA"
|
|
1216
|
+
],
|
|
1146
1217
|
"framework_gaps": [
|
|
1147
1218
|
"HIPAA-Security-Rule-164.312(a)(1)",
|
|
1148
1219
|
"HITRUST-CSF-v11.4-09.l",
|
|
1149
1220
|
"ISO-27001-2022-A.8.30",
|
|
1150
|
-
"NIST-800-53-AC-2"
|
|
1221
|
+
"NIST-800-53-AC-2",
|
|
1222
|
+
"NIS2-Art21-incident-handling",
|
|
1223
|
+
"UK-CAF-D1",
|
|
1224
|
+
"AU-Essential-8-Backup"
|
|
1151
1225
|
],
|
|
1152
1226
|
"atlas_refs": [
|
|
1153
1227
|
"AML.T0051",
|
|
@@ -1167,9 +1241,9 @@
|
|
|
1167
1241
|
"trigger_count": 14,
|
|
1168
1242
|
"atlas_count": 2,
|
|
1169
1243
|
"attack_count": 3,
|
|
1170
|
-
"framework_gap_count":
|
|
1244
|
+
"framework_gap_count": 7,
|
|
1171
1245
|
"cwe_count": 4,
|
|
1172
|
-
"d3fend_count":
|
|
1246
|
+
"d3fend_count": 3,
|
|
1173
1247
|
"rfc_count": 2,
|
|
1174
1248
|
"last_threat_review": "2026-05-11",
|
|
1175
1249
|
"path": "skills/sector-healthcare/skill.md",
|
|
@@ -1200,12 +1274,20 @@
|
|
|
1200
1274
|
"CWE-798",
|
|
1201
1275
|
"CWE-352"
|
|
1202
1276
|
],
|
|
1203
|
-
"d3fend_refs": [
|
|
1277
|
+
"d3fend_refs": [
|
|
1278
|
+
"D3-MFA",
|
|
1279
|
+
"D3-CBAN",
|
|
1280
|
+
"D3-NTA",
|
|
1281
|
+
"D3-IOPR"
|
|
1282
|
+
],
|
|
1204
1283
|
"framework_gaps": [
|
|
1205
1284
|
"PSD2-RTS-SCA",
|
|
1206
1285
|
"SWIFT-CSCF-v2026-1.1",
|
|
1207
1286
|
"NIST-800-53-AC-2",
|
|
1208
|
-
"SOC2-CC6-logical-access"
|
|
1287
|
+
"SOC2-CC6-logical-access",
|
|
1288
|
+
"NIS2-Art21-incident-handling",
|
|
1289
|
+
"UK-CAF-A1",
|
|
1290
|
+
"AU-Essential-8-MFA"
|
|
1209
1291
|
],
|
|
1210
1292
|
"atlas_refs": [
|
|
1211
1293
|
"AML.T0096",
|
|
@@ -1228,9 +1310,9 @@
|
|
|
1228
1310
|
"trigger_count": 17,
|
|
1229
1311
|
"atlas_count": 2,
|
|
1230
1312
|
"attack_count": 4,
|
|
1231
|
-
"framework_gap_count":
|
|
1313
|
+
"framework_gap_count": 7,
|
|
1232
1314
|
"cwe_count": 5,
|
|
1233
|
-
"d3fend_count":
|
|
1315
|
+
"d3fend_count": 4,
|
|
1234
1316
|
"rfc_count": 4,
|
|
1235
1317
|
"last_threat_review": "2026-05-15",
|
|
1236
1318
|
"path": "skills/sector-financial/skill.md",
|
|
@@ -1258,12 +1340,19 @@
|
|
|
1258
1340
|
"CWE-1395",
|
|
1259
1341
|
"CWE-829"
|
|
1260
1342
|
],
|
|
1261
|
-
"d3fend_refs": [
|
|
1343
|
+
"d3fend_refs": [
|
|
1344
|
+
"D3-EAL",
|
|
1345
|
+
"D3-EHB",
|
|
1346
|
+
"D3-CBAN"
|
|
1347
|
+
],
|
|
1262
1348
|
"framework_gaps": [
|
|
1263
1349
|
"FedRAMP-Rev5-Moderate",
|
|
1264
1350
|
"CMMC-2.0-Level-2",
|
|
1265
1351
|
"NIST-800-218-SSDF",
|
|
1266
|
-
"SLSA-v1.0-Build-L3"
|
|
1352
|
+
"SLSA-v1.0-Build-L3",
|
|
1353
|
+
"NIS2-Art21-incident-handling",
|
|
1354
|
+
"UK-CAF-A1",
|
|
1355
|
+
"AU-Essential-8-App-Hardening"
|
|
1267
1356
|
],
|
|
1268
1357
|
"atlas_refs": [],
|
|
1269
1358
|
"attack_refs": [
|
|
@@ -1280,9 +1369,9 @@
|
|
|
1280
1369
|
"trigger_count": 16,
|
|
1281
1370
|
"atlas_count": 0,
|
|
1282
1371
|
"attack_count": 3,
|
|
1283
|
-
"framework_gap_count":
|
|
1372
|
+
"framework_gap_count": 7,
|
|
1284
1373
|
"cwe_count": 3,
|
|
1285
|
-
"d3fend_count":
|
|
1374
|
+
"d3fend_count": 3,
|
|
1286
1375
|
"rfc_count": 2,
|
|
1287
1376
|
"last_threat_review": "2026-05-11",
|
|
1288
1377
|
"path": "skills/sector-federal-government/skill.md",
|
|
@@ -1309,12 +1398,21 @@
|
|
|
1309
1398
|
"CWE-306",
|
|
1310
1399
|
"CWE-1037"
|
|
1311
1400
|
],
|
|
1312
|
-
"d3fend_refs": [
|
|
1401
|
+
"d3fend_refs": [
|
|
1402
|
+
"D3-NI",
|
|
1403
|
+
"D3-NTPM",
|
|
1404
|
+
"D3-NTA",
|
|
1405
|
+
"D3-EAL",
|
|
1406
|
+
"D3-PSEP"
|
|
1407
|
+
],
|
|
1313
1408
|
"framework_gaps": [
|
|
1314
1409
|
"NERC-CIP-007-6-R4",
|
|
1315
1410
|
"NIST-800-82r3",
|
|
1316
1411
|
"IEC-62443-3-3",
|
|
1317
|
-
"NIS2-Art21-patch-management"
|
|
1412
|
+
"NIS2-Art21-patch-management",
|
|
1413
|
+
"ISO-27001-2022-A.8.8",
|
|
1414
|
+
"UK-CAF-D1",
|
|
1415
|
+
"AU-Essential-8-Backup"
|
|
1318
1416
|
],
|
|
1319
1417
|
"atlas_refs": [],
|
|
1320
1418
|
"attack_refs": [
|
|
@@ -1329,9 +1427,9 @@
|
|
|
1329
1427
|
"trigger_count": 15,
|
|
1330
1428
|
"atlas_count": 0,
|
|
1331
1429
|
"attack_count": 4,
|
|
1332
|
-
"framework_gap_count":
|
|
1430
|
+
"framework_gap_count": 7,
|
|
1333
1431
|
"cwe_count": 4,
|
|
1334
|
-
"d3fend_count":
|
|
1432
|
+
"d3fend_count": 5,
|
|
1335
1433
|
"rfc_count": 0,
|
|
1336
1434
|
"last_threat_review": "2026-05-11",
|
|
1337
1435
|
"path": "skills/sector-energy/skill.md",
|
|
@@ -1352,7 +1450,7 @@
|
|
|
1352
1450
|
]
|
|
1353
1451
|
},
|
|
1354
1452
|
"sector-telecom": {
|
|
1355
|
-
"description": "Telecom and 5G security for mid-2026 — Salt Typhoon, Volt Typhoon, CALEA / IPA-LI gateway compromise, signaling-protocol abuse (SS7 / Diameter / GTP), 5G N6 / N9 isolation, gNB / DU / CU integrity, OEM-equipment supply-chain compromise, AI-RAN / O-RAN security",
|
|
1453
|
+
"description": "Telecom and 5G security for mid-2026 — Salt Typhoon, Volt Typhoon, CALEA / IPA-LI gateway compromise, signaling-protocol abuse (SS7 / Diameter / GTP), 5G N6 / N9 isolation, gNB / DU / CU integrity, OEM-equipment supply-chain compromise, AI-RAN / O-RAN security; FCC CPNI + 4-business-day notification, NIS2 Annex I telecom essential entities, UK TSA 2021 + Ofcom, AU SOCI / TSSR, GSMA NESAS, 3GPP TR 33.926 + TS 33.501, ITU-T X.805.",
|
|
1356
1454
|
"threat_context_excerpt": "**Salt Typhoon (China nation-state; PRC Ministry of State Security nexus).** The 2024–2026 campaign — disclosed in successive Five Eyes joint advisories from October 2024 onward (CISA / NSA / FBI joint product reissued through 2025–2026) — compromised at least nine US carriers (publicly named: AT&T, Verizon, T-Mobile US, Lumen, Charter, Cox, Windstream, Consolidated, plus undisclosed others) and extended to AU / CA / NZ / UK Tier-1 carriers. Threat actor TTPs map to T1199 (Trusted Relationship) via OEM vendor supply chain, T1098 (Account Manipulation) for persistent admin access on NMS, and ...",
|
|
1357
1455
|
"produces": "The investigation evidence bundle has this shape:\n\n```json\n{\n \"session_id\": \"telecom-<iso>\",\n \"playbook_id\": \"sector-telecom\",\n \"classification\": \"detected | clean | not_detected | inconclusive\",\n \"evidence_hash\": \"sha256:...\",\n \"telecom_specific_findings\": {\n \"li_gateway_audit\": {\n \"anomalous_activations\": 0,\n \"activations_outside_ticket\": 0,\n \"outbound_tunnel_to_non_allowlist_ip\": 0\n },\n \"gnb_attestation_state\": {\n \"expected_hashes_compared\": 0,\n \"drifted_basestations\": [],\n \"downgrade_events\": 0\n },\n \"signaling_anomaly_count\": {\n \"ss7_p ...",
|
|
1358
1456
|
"key_xrefs": {
|
|
@@ -1421,12 +1519,21 @@
|
|
|
1421
1519
|
"CWE-77",
|
|
1422
1520
|
"CWE-1188"
|
|
1423
1521
|
],
|
|
1424
|
-
"d3fend_refs": [
|
|
1522
|
+
"d3fend_refs": [
|
|
1523
|
+
"D3-IOPR",
|
|
1524
|
+
"D3-NTA",
|
|
1525
|
+
"D3-CSPP",
|
|
1526
|
+
"D3-MFA",
|
|
1527
|
+
"D3-CBAN"
|
|
1528
|
+
],
|
|
1425
1529
|
"framework_gaps": [
|
|
1426
1530
|
"OWASP-ASVS-v5.0-V14",
|
|
1427
1531
|
"NIST-800-218-SSDF",
|
|
1428
1532
|
"ISO-27001-2022-A.8.28",
|
|
1429
|
-
"NIST-800-53-AC-2"
|
|
1533
|
+
"NIST-800-53-AC-2",
|
|
1534
|
+
"NIS2-Art21-incident-handling",
|
|
1535
|
+
"UK-CAF-B2",
|
|
1536
|
+
"AU-Essential-8-App-Hardening"
|
|
1430
1537
|
],
|
|
1431
1538
|
"atlas_refs": [
|
|
1432
1539
|
"AML.T0096",
|
|
@@ -1451,9 +1558,9 @@
|
|
|
1451
1558
|
"trigger_count": 14,
|
|
1452
1559
|
"atlas_count": 2,
|
|
1453
1560
|
"attack_count": 3,
|
|
1454
|
-
"framework_gap_count":
|
|
1561
|
+
"framework_gap_count": 7,
|
|
1455
1562
|
"cwe_count": 9,
|
|
1456
|
-
"d3fend_count":
|
|
1563
|
+
"d3fend_count": 5,
|
|
1457
1564
|
"rfc_count": 7,
|
|
1458
1565
|
"last_threat_review": "2026-05-18",
|
|
1459
1566
|
"path": "skills/api-security/skill.md",
|
|
@@ -1479,12 +1586,21 @@
|
|
|
1479
1586
|
"CWE-1188",
|
|
1480
1587
|
"CWE-798"
|
|
1481
1588
|
],
|
|
1482
|
-
"d3fend_refs": [
|
|
1589
|
+
"d3fend_refs": [
|
|
1590
|
+
"D3-NTA",
|
|
1591
|
+
"D3-NTPM",
|
|
1592
|
+
"D3-EAL",
|
|
1593
|
+
"D3-IOPR",
|
|
1594
|
+
"D3-CBAN"
|
|
1595
|
+
],
|
|
1483
1596
|
"framework_gaps": [
|
|
1484
1597
|
"NIST-800-53-CM-7",
|
|
1485
1598
|
"ISO-27001-2022-A.8.30",
|
|
1486
1599
|
"SOC2-CC9-vendor-management",
|
|
1487
|
-
"FedRAMP-Rev5-Moderate"
|
|
1600
|
+
"FedRAMP-Rev5-Moderate",
|
|
1601
|
+
"NIS2-Art21-incident-handling",
|
|
1602
|
+
"UK-CAF-B2",
|
|
1603
|
+
"AU-Essential-8-MFA"
|
|
1488
1604
|
],
|
|
1489
1605
|
"atlas_refs": [
|
|
1490
1606
|
"AML.T0010",
|
|
@@ -1507,9 +1623,9 @@
|
|
|
1507
1623
|
"trigger_count": 15,
|
|
1508
1624
|
"atlas_count": 2,
|
|
1509
1625
|
"attack_count": 4,
|
|
1510
|
-
"framework_gap_count":
|
|
1626
|
+
"framework_gap_count": 7,
|
|
1511
1627
|
"cwe_count": 6,
|
|
1512
|
-
"d3fend_count":
|
|
1628
|
+
"d3fend_count": 5,
|
|
1513
1629
|
"rfc_count": 4,
|
|
1514
1630
|
"last_threat_review": "2026-05-11",
|
|
1515
1631
|
"path": "skills/cloud-security/skill.md",
|
|
@@ -1540,11 +1656,21 @@
|
|
|
1540
1656
|
"CWE-787",
|
|
1541
1657
|
"CWE-1395"
|
|
1542
1658
|
],
|
|
1543
|
-
"d3fend_refs": [
|
|
1659
|
+
"d3fend_refs": [
|
|
1660
|
+
"D3-EAL",
|
|
1661
|
+
"D3-EHB",
|
|
1662
|
+
"D3-PSEP",
|
|
1663
|
+
"D3-NI",
|
|
1664
|
+
"D3-NTPM",
|
|
1665
|
+
"D3-IOPR"
|
|
1666
|
+
],
|
|
1544
1667
|
"framework_gaps": [
|
|
1545
1668
|
"NIST-800-53-CM-7",
|
|
1546
1669
|
"ISO-27001-2022-A.8.28",
|
|
1547
|
-
"SLSA-v1.0-Build-L3"
|
|
1670
|
+
"SLSA-v1.0-Build-L3",
|
|
1671
|
+
"NIS2-Art21-incident-handling",
|
|
1672
|
+
"UK-CAF-B2",
|
|
1673
|
+
"AU-Essential-8-App-Hardening"
|
|
1548
1674
|
],
|
|
1549
1675
|
"atlas_refs": [
|
|
1550
1676
|
"AML.T0010"
|
|
@@ -1564,9 +1690,9 @@
|
|
|
1564
1690
|
"trigger_count": 17,
|
|
1565
1691
|
"atlas_count": 1,
|
|
1566
1692
|
"attack_count": 4,
|
|
1567
|
-
"framework_gap_count":
|
|
1693
|
+
"framework_gap_count": 6,
|
|
1568
1694
|
"cwe_count": 5,
|
|
1569
|
-
"d3fend_count":
|
|
1695
|
+
"d3fend_count": 6,
|
|
1570
1696
|
"rfc_count": 2,
|
|
1571
1697
|
"last_threat_review": "2026-05-15",
|
|
1572
1698
|
"path": "skills/container-runtime-security/skill.md",
|
|
@@ -1601,13 +1727,20 @@
|
|
|
1601
1727
|
"CWE-1357",
|
|
1602
1728
|
"CWE-502"
|
|
1603
1729
|
],
|
|
1604
|
-
"d3fend_refs": [
|
|
1730
|
+
"d3fend_refs": [
|
|
1731
|
+
"D3-EHB",
|
|
1732
|
+
"D3-EAL",
|
|
1733
|
+
"D3-IOPR"
|
|
1734
|
+
],
|
|
1605
1735
|
"framework_gaps": [
|
|
1606
1736
|
"NIST-800-218-SSDF",
|
|
1607
1737
|
"SLSA-v1.0-Build-L3",
|
|
1608
1738
|
"ISO-IEC-42001-2023-clause-6.1.2",
|
|
1609
1739
|
"NIST-AI-RMF-MEASURE-2.5",
|
|
1610
|
-
"OWASP-LLM-Top-10-2025-LLM08"
|
|
1740
|
+
"OWASP-LLM-Top-10-2025-LLM08",
|
|
1741
|
+
"EU-AI-Act-Art-15",
|
|
1742
|
+
"UK-CAF-A1",
|
|
1743
|
+
"AU-Essential-8-App-Hardening"
|
|
1611
1744
|
],
|
|
1612
1745
|
"atlas_refs": [
|
|
1613
1746
|
"AML.T0010",
|
|
@@ -1628,9 +1761,9 @@
|
|
|
1628
1761
|
"trigger_count": 16,
|
|
1629
1762
|
"atlas_count": 5,
|
|
1630
1763
|
"attack_count": 2,
|
|
1631
|
-
"framework_gap_count":
|
|
1764
|
+
"framework_gap_count": 8,
|
|
1632
1765
|
"cwe_count": 4,
|
|
1633
|
-
"d3fend_count":
|
|
1766
|
+
"d3fend_count": 3,
|
|
1634
1767
|
"rfc_count": 1,
|
|
1635
1768
|
"last_threat_review": "2026-05-22",
|
|
1636
1769
|
"path": "skills/mlops-security/skill.md",
|
|
@@ -1650,11 +1783,19 @@
|
|
|
1650
1783
|
"produces": "The skill produces seven artifacts per IR program assessment or live incident.\n\n### 1. Incident Classification Record\n\n```\nIncident ID: INC-<YYYY>-<NNNN>\nAwareness timestamp: <ISO timestamp — the regulator-clock anchor>\nDeclared severity: <Sev1/2/3>\nIncident commander: <named>\nClassification:\n ATT&CK techniques: <T-IDs with sub-techniques>\n ATLAS techniques: <AML.T-IDs, if applicable>\n Incident class: <ransomware/exfiltration/identity/supply-chain/AI-system/BEC/DoS/insider/other>\n Sector flag: <healthcare/financial/energy/federal/none>\n AI-class flag: <victim/vector/attacker/none>\n Cross ...",
|
|
1651
1784
|
"key_xrefs": {
|
|
1652
1785
|
"cwe_refs": [],
|
|
1653
|
-
"d3fend_refs": [
|
|
1786
|
+
"d3fend_refs": [
|
|
1787
|
+
"D3-RPA",
|
|
1788
|
+
"D3-NTA",
|
|
1789
|
+
"D3-IOPR",
|
|
1790
|
+
"D3-CSPP"
|
|
1791
|
+
],
|
|
1654
1792
|
"framework_gaps": [
|
|
1655
1793
|
"NIST-800-53-AC-2",
|
|
1656
1794
|
"ISO-27001-2022-A.8.16",
|
|
1657
|
-
"SOC2-CC7-anomaly-detection"
|
|
1795
|
+
"SOC2-CC7-anomaly-detection",
|
|
1796
|
+
"NIS2-Art21-incident-handling",
|
|
1797
|
+
"UK-CAF-D1",
|
|
1798
|
+
"AU-Essential-8-Backup"
|
|
1658
1799
|
],
|
|
1659
1800
|
"atlas_refs": [
|
|
1660
1801
|
"AML.T0096",
|
|
@@ -1667,16 +1808,20 @@
|
|
|
1667
1808
|
"T1567",
|
|
1668
1809
|
"T1078"
|
|
1669
1810
|
],
|
|
1670
|
-
"rfc_refs": [
|
|
1811
|
+
"rfc_refs": [
|
|
1812
|
+
"RFC-6545",
|
|
1813
|
+
"RFC-6546",
|
|
1814
|
+
"RFC-7970"
|
|
1815
|
+
],
|
|
1671
1816
|
"dlp_refs": []
|
|
1672
1817
|
},
|
|
1673
1818
|
"trigger_count": 13,
|
|
1674
1819
|
"atlas_count": 3,
|
|
1675
1820
|
"attack_count": 4,
|
|
1676
|
-
"framework_gap_count":
|
|
1821
|
+
"framework_gap_count": 6,
|
|
1677
1822
|
"cwe_count": 0,
|
|
1678
|
-
"d3fend_count":
|
|
1679
|
-
"rfc_count":
|
|
1823
|
+
"d3fend_count": 4,
|
|
1824
|
+
"rfc_count": 3,
|
|
1680
1825
|
"last_threat_review": "2026-05-22",
|
|
1681
1826
|
"path": "skills/incident-response-playbook/skill.md",
|
|
1682
1827
|
"handoff_targets": [
|
|
@@ -1700,7 +1845,7 @@
|
|
|
1700
1845
|
]
|
|
1701
1846
|
},
|
|
1702
1847
|
"ransomware-response": {
|
|
1703
|
-
"description": "Ransomware-specific incident response — OFAC
|
|
1848
|
+
"description": "Ransomware-specific incident response — OFAC sanctions screening as payment-posture blocker, EU Reg 2014/833 + UK OFSI + AU DFAT + JP MOF cross-jurisdiction sanctions lookups, decryptor availability via No More Ransom + vendor-specific catalogs, cyber-insurance carrier 24h notification, negotiator-engagement legal posture, immutable-backup viability test, PHI exfil-before-encrypt as distinct breach class, parallel jurisdiction clocks (NIS2 24h / DORA 4h / GDPR 72h / SEC 8-K 96h / HIPAA 60d / CIRCIA 72h / NYDFS 500.17 24h ransom-payment)",
|
|
1704
1849
|
"threat_context_excerpt": "Ransomware is the highest-volume critical-infrastructure incident class and the dominant economic-harm cyber category, and its operational shape changed materially between the 2020-2022 frame and the 2024-2026 frame.",
|
|
1705
1850
|
"produces": "The skill produces six ransomware-specific artifacts that augment the parent IR playbook's seven artifacts.\n\n### 1. Encryption Confirmation Record\n\n```\nIncident ID: INC-<YYYY>-<NNNN>\nEncryption confirmed: <yes/no>\nEncrypted-host count: <N>\nFamily fingerprint: <family + confidence>\nRansom note IoCs:\n - Leak-site URL: <onion address>\n - Contact identifier: <email/Tox/Session>\n - Crypto-wallet addresses: <list>\n - Family signature: <text fingerprint>\nShadow Copy deletion observed: <yes/no + timestamp + invoking process>\nLiving-off-the-land tools observed: <list — PsExec/WMI/PowerShell/AnyDesk ...",
|
|
1706
1851
|
"key_xrefs": {
|
|
@@ -1759,11 +1904,19 @@
|
|
|
1759
1904
|
"produces": "The skill produces a structured assessment with these sections:\n\n1. **DMARC enforcement scorecard** — table of all owned domains × `{SPF, DKIM, DMARC policy, sp=, pct=, RUA destination, BIMI, ARC verification, MTA-STS, TLSRPT}`; aggregate score = (# domains at `p=reject` with `pct=100`) / (total sending domains).\n2. **Email-auth coverage matrix** — per-protocol deployment status (SPF / DKIM / DMARC / BIMI / ARC / MTA-STS / TLSRPT) with gap flags.\n3. **Passkey rollout percentage** — overall and per-role-class (executive, finance, IT-admin, helpdesk, general workforce), with target = 100% for pr ...",
|
|
1760
1905
|
"key_xrefs": {
|
|
1761
1906
|
"cwe_refs": [],
|
|
1762
|
-
"d3fend_refs": [
|
|
1907
|
+
"d3fend_refs": [
|
|
1908
|
+
"D3-NTA",
|
|
1909
|
+
"D3-CSPP",
|
|
1910
|
+
"D3-IOPR",
|
|
1911
|
+
"D3-MFA"
|
|
1912
|
+
],
|
|
1763
1913
|
"framework_gaps": [
|
|
1764
1914
|
"NIST-800-53-SI-3",
|
|
1765
1915
|
"ISO-27001-2022-A.8.16",
|
|
1766
|
-
"SOC2-CC7-anomaly-detection"
|
|
1916
|
+
"SOC2-CC7-anomaly-detection",
|
|
1917
|
+
"NIS2-Art21-incident-handling",
|
|
1918
|
+
"UK-CAF-C1",
|
|
1919
|
+
"AU-Essential-8-App-Hardening"
|
|
1767
1920
|
],
|
|
1768
1921
|
"atlas_refs": [],
|
|
1769
1922
|
"attack_refs": [
|
|
@@ -1773,16 +1926,22 @@
|
|
|
1773
1926
|
"T1566.003",
|
|
1774
1927
|
"T1078"
|
|
1775
1928
|
],
|
|
1776
|
-
"rfc_refs": [
|
|
1929
|
+
"rfc_refs": [
|
|
1930
|
+
"RFC-7489",
|
|
1931
|
+
"RFC-6376",
|
|
1932
|
+
"RFC-7208",
|
|
1933
|
+
"RFC-8616",
|
|
1934
|
+
"RFC-8461"
|
|
1935
|
+
],
|
|
1777
1936
|
"dlp_refs": []
|
|
1778
1937
|
},
|
|
1779
1938
|
"trigger_count": 17,
|
|
1780
1939
|
"atlas_count": 0,
|
|
1781
1940
|
"attack_count": 5,
|
|
1782
|
-
"framework_gap_count":
|
|
1941
|
+
"framework_gap_count": 6,
|
|
1783
1942
|
"cwe_count": 0,
|
|
1784
|
-
"d3fend_count":
|
|
1785
|
-
"rfc_count":
|
|
1943
|
+
"d3fend_count": 4,
|
|
1944
|
+
"rfc_count": 5,
|
|
1786
1945
|
"last_threat_review": "2026-05-18",
|
|
1787
1946
|
"path": "skills/email-security-anti-phishing/skill.md",
|
|
1788
1947
|
"handoff_targets": [
|
|
@@ -1804,11 +1963,18 @@
|
|
|
1804
1963
|
"CWE-287",
|
|
1805
1964
|
"CWE-862"
|
|
1806
1965
|
],
|
|
1807
|
-
"d3fend_refs": [
|
|
1966
|
+
"d3fend_refs": [
|
|
1967
|
+
"D3-MFA",
|
|
1968
|
+
"D3-IOPR",
|
|
1969
|
+
"D3-CSPP"
|
|
1970
|
+
],
|
|
1808
1971
|
"framework_gaps": [
|
|
1809
1972
|
"ISO-27001-2022-A.8.30",
|
|
1810
1973
|
"NIST-800-53-AC-2",
|
|
1811
|
-
"SOC2-CC6-logical-access"
|
|
1974
|
+
"SOC2-CC6-logical-access",
|
|
1975
|
+
"NIS2-Art21-incident-handling",
|
|
1976
|
+
"UK-CAF-B2",
|
|
1977
|
+
"AU-Essential-8-MFA"
|
|
1812
1978
|
],
|
|
1813
1979
|
"atlas_refs": [],
|
|
1814
1980
|
"attack_refs": [
|
|
@@ -1818,12 +1984,12 @@
|
|
|
1818
1984
|
"rfc_refs": [],
|
|
1819
1985
|
"dlp_refs": []
|
|
1820
1986
|
},
|
|
1821
|
-
"trigger_count":
|
|
1987
|
+
"trigger_count": 20,
|
|
1822
1988
|
"atlas_count": 0,
|
|
1823
1989
|
"attack_count": 2,
|
|
1824
|
-
"framework_gap_count":
|
|
1990
|
+
"framework_gap_count": 6,
|
|
1825
1991
|
"cwe_count": 3,
|
|
1826
|
-
"d3fend_count":
|
|
1992
|
+
"d3fend_count": 3,
|
|
1827
1993
|
"rfc_count": 0,
|
|
1828
1994
|
"last_threat_review": "2026-05-11",
|
|
1829
1995
|
"path": "skills/age-gates-child-safety/skill.md",
|
|
@@ -1841,7 +2007,7 @@
|
|
|
1841
2007
|
]
|
|
1842
2008
|
},
|
|
1843
2009
|
"cloud-iam-incident": {
|
|
1844
|
-
"description": "Cloud-IAM incident response for AWS / GCP / Azure — account takeover, IAM role assumption abuse, access-key compromise, cross-account assume-role chains, federated-trust attacks, IMDS metadata exfiltration, and Snowflake-AA24-class IdP-to-cloud credential reuse",
|
|
2010
|
+
"description": "Cloud-IAM incident response for AWS / GCP / Azure — account takeover, IAM role assumption abuse, access-key compromise, cross-account assume-role chains, federated-trust attacks (IAM Identity Center / Workload Identity Federation / Azure managed identity), IMDS metadata exfiltration, and Snowflake-AA24-class IdP-to-cloud credential reuse",
|
|
1845
2011
|
"threat_context_excerpt": "Cloud-IAM compromise has been the dominant cloud-breach root cause across all three major hyperscalers (AWS, GCP, Azure) from 2024 through mid-2026. The threat surface has shifted materially since 2023 and the conventional defensive posture — Service Control Policies, root-account MFA, posture tools like AWS Security Hub / GCP Security Command Center / Azure Defender for Cloud, and quarterly access reviews — captures progressively less of the actual attack surface as adversary capability evolves.",
|
|
1846
2012
|
"produces": "The output is the operator-facing cloud-IAM incident assessment. Every section is mandatory; missing data is reported as \"no evidence\" so absence is auditable. The audit-log coverage table anchors the entire assessment — gaps there propagate to every downstream finding as reduced confidence. Produce this structure verbatim:\n\n```\n## Cloud IAM Incident Assessment\n\n**Assessment Date:** YYYY-MM-DD\n**Account(s) in scope:** [list]\n**Cloud provider(s):** [AWS / GCP / Azure]\n**Regulatory exposure:** [EU GDPR / NIS2 / DORA / UK / NYDFS / AU / SG / JP / CA / ...]\n**Critical or important functions in sco ...",
|
|
1847
2013
|
"key_xrefs": {
|