@blamejs/exceptd-skills 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +232 -0
- package/ARCHITECTURE.md +267 -0
- package/CHANGELOG.md +616 -0
- package/CONTEXT.md +203 -0
- package/LICENSE +200 -0
- package/NOTICE +82 -0
- package/README.md +307 -0
- package/SECURITY.md +73 -0
- package/agents/README.md +81 -0
- package/agents/report-generator.md +156 -0
- package/agents/skill-updater.md +102 -0
- package/agents/source-validator.md +119 -0
- package/agents/threat-researcher.md +149 -0
- package/bin/exceptd.js +183 -0
- package/data/_indexes/_meta.json +88 -0
- package/data/_indexes/activity-feed.json +362 -0
- package/data/_indexes/catalog-summaries.json +229 -0
- package/data/_indexes/chains.json +7135 -0
- package/data/_indexes/currency.json +359 -0
- package/data/_indexes/did-ladders.json +451 -0
- package/data/_indexes/frequency.json +2072 -0
- package/data/_indexes/handoff-dag.json +476 -0
- package/data/_indexes/jurisdiction-clocks.json +967 -0
- package/data/_indexes/jurisdiction-map.json +536 -0
- package/data/_indexes/recipes.json +319 -0
- package/data/_indexes/section-offsets.json +3656 -0
- package/data/_indexes/stale-content.json +14 -0
- package/data/_indexes/summary-cards.json +1736 -0
- package/data/_indexes/theater-fingerprints.json +381 -0
- package/data/_indexes/token-budget.json +2137 -0
- package/data/_indexes/trigger-table.json +1374 -0
- package/data/_indexes/xref.json +818 -0
- package/data/atlas-ttps.json +282 -0
- package/data/cve-catalog.json +496 -0
- package/data/cwe-catalog.json +1017 -0
- package/data/d3fend-catalog.json +738 -0
- package/data/dlp-controls.json +1039 -0
- package/data/exploit-availability.json +67 -0
- package/data/framework-control-gaps.json +1255 -0
- package/data/global-frameworks.json +2913 -0
- package/data/rfc-references.json +324 -0
- package/data/zeroday-lessons.json +377 -0
- package/keys/public.pem +3 -0
- package/lib/framework-gap.js +328 -0
- package/lib/job-queue.js +195 -0
- package/lib/lint-skills.js +536 -0
- package/lib/prefetch.js +372 -0
- package/lib/refresh-external.js +713 -0
- package/lib/schemas/cve-catalog.schema.json +151 -0
- package/lib/schemas/manifest.schema.json +106 -0
- package/lib/schemas/skill-frontmatter.schema.json +113 -0
- package/lib/scoring.js +149 -0
- package/lib/sign.js +197 -0
- package/lib/ttp-mapper.js +80 -0
- package/lib/validate-catalog-meta.js +198 -0
- package/lib/validate-cve-catalog.js +213 -0
- package/lib/validate-indexes.js +83 -0
- package/lib/validate-package.js +162 -0
- package/lib/validate-vendor.js +85 -0
- package/lib/verify.js +216 -0
- package/lib/worker-pool.js +84 -0
- package/manifest-snapshot.json +1833 -0
- package/manifest.json +2108 -0
- package/orchestrator/README.md +124 -0
- package/orchestrator/dispatcher.js +140 -0
- package/orchestrator/event-bus.js +146 -0
- package/orchestrator/index.js +874 -0
- package/orchestrator/pipeline.js +201 -0
- package/orchestrator/scanner.js +327 -0
- package/orchestrator/scheduler.js +137 -0
- package/package.json +113 -0
- package/sbom.cdx.json +158 -0
- package/scripts/audit-cross-skill.js +261 -0
- package/scripts/audit-perf.js +160 -0
- package/scripts/bootstrap.js +205 -0
- package/scripts/build-indexes.js +721 -0
- package/scripts/builders/activity-feed.js +79 -0
- package/scripts/builders/catalog-summaries.js +67 -0
- package/scripts/builders/currency.js +109 -0
- package/scripts/builders/cwe-chains.js +105 -0
- package/scripts/builders/did-ladders.js +149 -0
- package/scripts/builders/frequency.js +89 -0
- package/scripts/builders/jurisdiction-clocks.js +126 -0
- package/scripts/builders/recipes.js +159 -0
- package/scripts/builders/section-offsets.js +162 -0
- package/scripts/builders/stale-content.js +171 -0
- package/scripts/builders/summary-cards.js +166 -0
- package/scripts/builders/theater-fingerprints.js +198 -0
- package/scripts/builders/token-budget.js +96 -0
- package/scripts/check-manifest-snapshot.js +217 -0
- package/scripts/predeploy.js +267 -0
- package/scripts/refresh-manifest-snapshot.js +57 -0
- package/scripts/refresh-sbom.js +222 -0
- package/skills/age-gates-child-safety/skill.md +456 -0
- package/skills/ai-attack-surface/skill.md +282 -0
- package/skills/ai-c2-detection/skill.md +440 -0
- package/skills/ai-risk-management/skill.md +311 -0
- package/skills/api-security/skill.md +287 -0
- package/skills/attack-surface-pentest/skill.md +381 -0
- package/skills/cloud-security/skill.md +384 -0
- package/skills/compliance-theater/skill.md +365 -0
- package/skills/container-runtime-security/skill.md +379 -0
- package/skills/coordinated-vuln-disclosure/skill.md +473 -0
- package/skills/defensive-countermeasure-mapping/skill.md +300 -0
- package/skills/dlp-gap-analysis/skill.md +337 -0
- package/skills/email-security-anti-phishing/skill.md +206 -0
- package/skills/exploit-scoring/skill.md +331 -0
- package/skills/framework-gap-analysis/skill.md +374 -0
- package/skills/fuzz-testing-strategy/skill.md +313 -0
- package/skills/global-grc/skill.md +564 -0
- package/skills/identity-assurance/skill.md +272 -0
- package/skills/incident-response-playbook/skill.md +546 -0
- package/skills/kernel-lpe-triage/skill.md +303 -0
- package/skills/mcp-agent-trust/skill.md +326 -0
- package/skills/mlops-security/skill.md +325 -0
- package/skills/ot-ics-security/skill.md +340 -0
- package/skills/policy-exception-gen/skill.md +437 -0
- package/skills/pqc-first/skill.md +546 -0
- package/skills/rag-pipeline-security/skill.md +294 -0
- package/skills/researcher/skill.md +310 -0
- package/skills/sector-energy/skill.md +409 -0
- package/skills/sector-federal-government/skill.md +302 -0
- package/skills/sector-financial/skill.md +398 -0
- package/skills/sector-healthcare/skill.md +373 -0
- package/skills/security-maturity-tiers/skill.md +464 -0
- package/skills/skill-update-loop/skill.md +463 -0
- package/skills/supply-chain-integrity/skill.md +318 -0
- package/skills/threat-model-currency/skill.md +404 -0
- package/skills/threat-modeling-methodology/skill.md +312 -0
- package/skills/webapp-security/skill.md +281 -0
- package/skills/zeroday-gap-learn/skill.md +350 -0
- package/vendor/blamejs/LICENSE +201 -0
- package/vendor/blamejs/README.md +54 -0
- package/vendor/blamejs/_PROVENANCE.json +54 -0
- package/vendor/blamejs/retry.js +335 -0
- package/vendor/blamejs/worker-pool.js +418 -0
|
@@ -0,0 +1,476 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodes": [
|
|
3
|
+
"age-gates-child-safety",
|
|
4
|
+
"ai-attack-surface",
|
|
5
|
+
"ai-c2-detection",
|
|
6
|
+
"ai-risk-management",
|
|
7
|
+
"api-security",
|
|
8
|
+
"attack-surface-pentest",
|
|
9
|
+
"cloud-security",
|
|
10
|
+
"compliance-theater",
|
|
11
|
+
"container-runtime-security",
|
|
12
|
+
"coordinated-vuln-disclosure",
|
|
13
|
+
"defensive-countermeasure-mapping",
|
|
14
|
+
"dlp-gap-analysis",
|
|
15
|
+
"email-security-anti-phishing",
|
|
16
|
+
"exploit-scoring",
|
|
17
|
+
"framework-gap-analysis",
|
|
18
|
+
"fuzz-testing-strategy",
|
|
19
|
+
"global-grc",
|
|
20
|
+
"identity-assurance",
|
|
21
|
+
"incident-response-playbook",
|
|
22
|
+
"kernel-lpe-triage",
|
|
23
|
+
"mcp-agent-trust",
|
|
24
|
+
"mlops-security",
|
|
25
|
+
"ot-ics-security",
|
|
26
|
+
"policy-exception-gen",
|
|
27
|
+
"pqc-first",
|
|
28
|
+
"rag-pipeline-security",
|
|
29
|
+
"researcher",
|
|
30
|
+
"sector-energy",
|
|
31
|
+
"sector-federal-government",
|
|
32
|
+
"sector-financial",
|
|
33
|
+
"sector-healthcare",
|
|
34
|
+
"security-maturity-tiers",
|
|
35
|
+
"skill-update-loop",
|
|
36
|
+
"supply-chain-integrity",
|
|
37
|
+
"threat-model-currency",
|
|
38
|
+
"threat-modeling-methodology",
|
|
39
|
+
"webapp-security",
|
|
40
|
+
"zeroday-gap-learn"
|
|
41
|
+
],
|
|
42
|
+
"edges": {
|
|
43
|
+
"kernel-lpe-triage": [
|
|
44
|
+
"attack-surface-pentest",
|
|
45
|
+
"compliance-theater",
|
|
46
|
+
"defensive-countermeasure-mapping",
|
|
47
|
+
"exploit-scoring",
|
|
48
|
+
"policy-exception-gen"
|
|
49
|
+
],
|
|
50
|
+
"ai-attack-surface": [],
|
|
51
|
+
"mcp-agent-trust": [
|
|
52
|
+
"attack-surface-pentest",
|
|
53
|
+
"defensive-countermeasure-mapping",
|
|
54
|
+
"dlp-gap-analysis",
|
|
55
|
+
"framework-gap-analysis",
|
|
56
|
+
"supply-chain-integrity"
|
|
57
|
+
],
|
|
58
|
+
"framework-gap-analysis": [],
|
|
59
|
+
"compliance-theater": [],
|
|
60
|
+
"exploit-scoring": [
|
|
61
|
+
"ai-attack-surface",
|
|
62
|
+
"kernel-lpe-triage",
|
|
63
|
+
"mcp-agent-trust"
|
|
64
|
+
],
|
|
65
|
+
"rag-pipeline-security": [
|
|
66
|
+
"ai-attack-surface",
|
|
67
|
+
"attack-surface-pentest",
|
|
68
|
+
"defensive-countermeasure-mapping",
|
|
69
|
+
"dlp-gap-analysis",
|
|
70
|
+
"supply-chain-integrity"
|
|
71
|
+
],
|
|
72
|
+
"ai-c2-detection": [
|
|
73
|
+
"attack-surface-pentest",
|
|
74
|
+
"compliance-theater",
|
|
75
|
+
"defensive-countermeasure-mapping",
|
|
76
|
+
"dlp-gap-analysis",
|
|
77
|
+
"mcp-agent-trust"
|
|
78
|
+
],
|
|
79
|
+
"policy-exception-gen": [],
|
|
80
|
+
"threat-model-currency": [],
|
|
81
|
+
"global-grc": [],
|
|
82
|
+
"zeroday-gap-learn": [
|
|
83
|
+
"ai-attack-surface",
|
|
84
|
+
"ai-c2-detection",
|
|
85
|
+
"kernel-lpe-triage",
|
|
86
|
+
"mcp-agent-trust"
|
|
87
|
+
],
|
|
88
|
+
"pqc-first": [],
|
|
89
|
+
"skill-update-loop": [
|
|
90
|
+
"ai-c2-detection",
|
|
91
|
+
"ai-risk-management",
|
|
92
|
+
"api-security",
|
|
93
|
+
"cloud-security",
|
|
94
|
+
"container-runtime-security",
|
|
95
|
+
"coordinated-vuln-disclosure",
|
|
96
|
+
"defensive-countermeasure-mapping",
|
|
97
|
+
"email-security-anti-phishing",
|
|
98
|
+
"identity-assurance",
|
|
99
|
+
"incident-response-playbook",
|
|
100
|
+
"kernel-lpe-triage",
|
|
101
|
+
"mcp-agent-trust",
|
|
102
|
+
"mlops-security",
|
|
103
|
+
"pqc-first",
|
|
104
|
+
"sector-energy",
|
|
105
|
+
"sector-federal-government",
|
|
106
|
+
"sector-financial",
|
|
107
|
+
"sector-healthcare",
|
|
108
|
+
"threat-model-currency",
|
|
109
|
+
"threat-modeling-methodology",
|
|
110
|
+
"webapp-security"
|
|
111
|
+
],
|
|
112
|
+
"security-maturity-tiers": [],
|
|
113
|
+
"researcher": [
|
|
114
|
+
"age-gates-child-safety",
|
|
115
|
+
"ai-attack-surface",
|
|
116
|
+
"ai-c2-detection",
|
|
117
|
+
"ai-risk-management",
|
|
118
|
+
"api-security",
|
|
119
|
+
"attack-surface-pentest",
|
|
120
|
+
"cloud-security",
|
|
121
|
+
"compliance-theater",
|
|
122
|
+
"container-runtime-security",
|
|
123
|
+
"coordinated-vuln-disclosure",
|
|
124
|
+
"defensive-countermeasure-mapping",
|
|
125
|
+
"dlp-gap-analysis",
|
|
126
|
+
"email-security-anti-phishing",
|
|
127
|
+
"exploit-scoring",
|
|
128
|
+
"framework-gap-analysis",
|
|
129
|
+
"fuzz-testing-strategy",
|
|
130
|
+
"global-grc",
|
|
131
|
+
"identity-assurance",
|
|
132
|
+
"incident-response-playbook",
|
|
133
|
+
"kernel-lpe-triage",
|
|
134
|
+
"mcp-agent-trust",
|
|
135
|
+
"mlops-security",
|
|
136
|
+
"ot-ics-security",
|
|
137
|
+
"policy-exception-gen",
|
|
138
|
+
"pqc-first",
|
|
139
|
+
"rag-pipeline-security",
|
|
140
|
+
"sector-energy",
|
|
141
|
+
"sector-federal-government",
|
|
142
|
+
"sector-financial",
|
|
143
|
+
"sector-healthcare",
|
|
144
|
+
"security-maturity-tiers",
|
|
145
|
+
"skill-update-loop",
|
|
146
|
+
"supply-chain-integrity",
|
|
147
|
+
"threat-model-currency",
|
|
148
|
+
"threat-modeling-methodology",
|
|
149
|
+
"webapp-security",
|
|
150
|
+
"zeroday-gap-learn"
|
|
151
|
+
],
|
|
152
|
+
"attack-surface-pentest": [
|
|
153
|
+
"kernel-lpe-triage"
|
|
154
|
+
],
|
|
155
|
+
"fuzz-testing-strategy": [],
|
|
156
|
+
"dlp-gap-analysis": [
|
|
157
|
+
"ai-c2-detection"
|
|
158
|
+
],
|
|
159
|
+
"supply-chain-integrity": [
|
|
160
|
+
"mcp-agent-trust",
|
|
161
|
+
"pqc-first"
|
|
162
|
+
],
|
|
163
|
+
"defensive-countermeasure-mapping": [
|
|
164
|
+
"exploit-scoring",
|
|
165
|
+
"framework-gap-analysis",
|
|
166
|
+
"kernel-lpe-triage",
|
|
167
|
+
"policy-exception-gen",
|
|
168
|
+
"threat-model-currency",
|
|
169
|
+
"zeroday-gap-learn"
|
|
170
|
+
],
|
|
171
|
+
"identity-assurance": [
|
|
172
|
+
"compliance-theater",
|
|
173
|
+
"defensive-countermeasure-mapping",
|
|
174
|
+
"dlp-gap-analysis",
|
|
175
|
+
"mcp-agent-trust",
|
|
176
|
+
"pqc-first",
|
|
177
|
+
"supply-chain-integrity"
|
|
178
|
+
],
|
|
179
|
+
"ot-ics-security": [
|
|
180
|
+
"ai-attack-surface",
|
|
181
|
+
"attack-surface-pentest",
|
|
182
|
+
"compliance-theater",
|
|
183
|
+
"defensive-countermeasure-mapping",
|
|
184
|
+
"exploit-scoring",
|
|
185
|
+
"framework-gap-analysis",
|
|
186
|
+
"global-grc",
|
|
187
|
+
"identity-assurance",
|
|
188
|
+
"kernel-lpe-triage",
|
|
189
|
+
"mcp-agent-trust",
|
|
190
|
+
"policy-exception-gen",
|
|
191
|
+
"supply-chain-integrity"
|
|
192
|
+
],
|
|
193
|
+
"coordinated-vuln-disclosure": [
|
|
194
|
+
"ai-attack-surface",
|
|
195
|
+
"ai-c2-detection",
|
|
196
|
+
"attack-surface-pentest",
|
|
197
|
+
"compliance-theater",
|
|
198
|
+
"defensive-countermeasure-mapping",
|
|
199
|
+
"exploit-scoring",
|
|
200
|
+
"framework-gap-analysis",
|
|
201
|
+
"fuzz-testing-strategy",
|
|
202
|
+
"global-grc",
|
|
203
|
+
"rag-pipeline-security",
|
|
204
|
+
"supply-chain-integrity",
|
|
205
|
+
"zeroday-gap-learn"
|
|
206
|
+
],
|
|
207
|
+
"threat-modeling-methodology": [
|
|
208
|
+
"ai-attack-surface",
|
|
209
|
+
"defensive-countermeasure-mapping",
|
|
210
|
+
"framework-gap-analysis",
|
|
211
|
+
"mcp-agent-trust",
|
|
212
|
+
"rag-pipeline-security",
|
|
213
|
+
"researcher",
|
|
214
|
+
"threat-model-currency",
|
|
215
|
+
"zeroday-gap-learn"
|
|
216
|
+
],
|
|
217
|
+
"webapp-security": [
|
|
218
|
+
"ai-attack-surface",
|
|
219
|
+
"ai-c2-detection",
|
|
220
|
+
"attack-surface-pentest",
|
|
221
|
+
"defensive-countermeasure-mapping",
|
|
222
|
+
"fuzz-testing-strategy",
|
|
223
|
+
"identity-assurance",
|
|
224
|
+
"supply-chain-integrity",
|
|
225
|
+
"threat-modeling-methodology"
|
|
226
|
+
],
|
|
227
|
+
"ai-risk-management": [
|
|
228
|
+
"ai-attack-surface",
|
|
229
|
+
"ai-c2-detection",
|
|
230
|
+
"compliance-theater",
|
|
231
|
+
"coordinated-vuln-disclosure",
|
|
232
|
+
"defensive-countermeasure-mapping",
|
|
233
|
+
"dlp-gap-analysis",
|
|
234
|
+
"framework-gap-analysis",
|
|
235
|
+
"global-grc",
|
|
236
|
+
"identity-assurance",
|
|
237
|
+
"mcp-agent-trust",
|
|
238
|
+
"rag-pipeline-security",
|
|
239
|
+
"threat-modeling-methodology",
|
|
240
|
+
"zeroday-gap-learn"
|
|
241
|
+
],
|
|
242
|
+
"sector-healthcare": [
|
|
243
|
+
"ai-attack-surface",
|
|
244
|
+
"compliance-theater",
|
|
245
|
+
"coordinated-vuln-disclosure",
|
|
246
|
+
"dlp-gap-analysis",
|
|
247
|
+
"exploit-scoring",
|
|
248
|
+
"framework-gap-analysis",
|
|
249
|
+
"global-grc",
|
|
250
|
+
"identity-assurance",
|
|
251
|
+
"mcp-agent-trust",
|
|
252
|
+
"ot-ics-security",
|
|
253
|
+
"policy-exception-gen",
|
|
254
|
+
"supply-chain-integrity"
|
|
255
|
+
],
|
|
256
|
+
"sector-financial": [
|
|
257
|
+
"ai-attack-surface",
|
|
258
|
+
"attack-surface-pentest",
|
|
259
|
+
"compliance-theater",
|
|
260
|
+
"coordinated-vuln-disclosure",
|
|
261
|
+
"dlp-gap-analysis",
|
|
262
|
+
"exploit-scoring",
|
|
263
|
+
"framework-gap-analysis",
|
|
264
|
+
"global-grc",
|
|
265
|
+
"identity-assurance",
|
|
266
|
+
"mcp-agent-trust",
|
|
267
|
+
"policy-exception-gen",
|
|
268
|
+
"supply-chain-integrity"
|
|
269
|
+
],
|
|
270
|
+
"sector-federal-government": [
|
|
271
|
+
"ai-attack-surface",
|
|
272
|
+
"ai-c2-detection",
|
|
273
|
+
"attack-surface-pentest",
|
|
274
|
+
"compliance-theater",
|
|
275
|
+
"framework-gap-analysis",
|
|
276
|
+
"global-grc",
|
|
277
|
+
"identity-assurance",
|
|
278
|
+
"pqc-first",
|
|
279
|
+
"supply-chain-integrity"
|
|
280
|
+
],
|
|
281
|
+
"sector-energy": [
|
|
282
|
+
"ai-attack-surface",
|
|
283
|
+
"attack-surface-pentest",
|
|
284
|
+
"compliance-theater",
|
|
285
|
+
"coordinated-vuln-disclosure",
|
|
286
|
+
"exploit-scoring",
|
|
287
|
+
"framework-gap-analysis",
|
|
288
|
+
"global-grc",
|
|
289
|
+
"identity-assurance",
|
|
290
|
+
"kernel-lpe-triage",
|
|
291
|
+
"mcp-agent-trust",
|
|
292
|
+
"ot-ics-security",
|
|
293
|
+
"policy-exception-gen",
|
|
294
|
+
"rag-pipeline-security",
|
|
295
|
+
"supply-chain-integrity"
|
|
296
|
+
],
|
|
297
|
+
"api-security": [
|
|
298
|
+
"ai-c2-detection",
|
|
299
|
+
"defensive-countermeasure-mapping",
|
|
300
|
+
"dlp-gap-analysis",
|
|
301
|
+
"identity-assurance",
|
|
302
|
+
"mcp-agent-trust",
|
|
303
|
+
"webapp-security"
|
|
304
|
+
],
|
|
305
|
+
"cloud-security": [
|
|
306
|
+
"ai-attack-surface",
|
|
307
|
+
"ai-c2-detection",
|
|
308
|
+
"api-security",
|
|
309
|
+
"compliance-theater",
|
|
310
|
+
"defensive-countermeasure-mapping",
|
|
311
|
+
"dlp-gap-analysis",
|
|
312
|
+
"exploit-scoring",
|
|
313
|
+
"framework-gap-analysis",
|
|
314
|
+
"global-grc",
|
|
315
|
+
"identity-assurance",
|
|
316
|
+
"kernel-lpe-triage",
|
|
317
|
+
"mcp-agent-trust",
|
|
318
|
+
"ot-ics-security",
|
|
319
|
+
"policy-exception-gen",
|
|
320
|
+
"supply-chain-integrity"
|
|
321
|
+
],
|
|
322
|
+
"container-runtime-security": [
|
|
323
|
+
"ai-attack-surface",
|
|
324
|
+
"ai-risk-management",
|
|
325
|
+
"attack-surface-pentest",
|
|
326
|
+
"cloud-security",
|
|
327
|
+
"compliance-theater",
|
|
328
|
+
"defensive-countermeasure-mapping",
|
|
329
|
+
"exploit-scoring",
|
|
330
|
+
"framework-gap-analysis",
|
|
331
|
+
"global-grc",
|
|
332
|
+
"identity-assurance",
|
|
333
|
+
"kernel-lpe-triage",
|
|
334
|
+
"mcp-agent-trust",
|
|
335
|
+
"mlops-security",
|
|
336
|
+
"policy-exception-gen",
|
|
337
|
+
"rag-pipeline-security",
|
|
338
|
+
"sector-federal-government",
|
|
339
|
+
"sector-financial",
|
|
340
|
+
"supply-chain-integrity"
|
|
341
|
+
],
|
|
342
|
+
"mlops-security": [
|
|
343
|
+
"ai-attack-surface",
|
|
344
|
+
"ai-risk-management",
|
|
345
|
+
"cloud-security",
|
|
346
|
+
"container-runtime-security",
|
|
347
|
+
"coordinated-vuln-disclosure",
|
|
348
|
+
"mcp-agent-trust",
|
|
349
|
+
"pqc-first",
|
|
350
|
+
"rag-pipeline-security",
|
|
351
|
+
"supply-chain-integrity"
|
|
352
|
+
],
|
|
353
|
+
"incident-response-playbook": [
|
|
354
|
+
"ai-attack-surface",
|
|
355
|
+
"ai-c2-detection",
|
|
356
|
+
"attack-surface-pentest",
|
|
357
|
+
"compliance-theater",
|
|
358
|
+
"coordinated-vuln-disclosure",
|
|
359
|
+
"defensive-countermeasure-mapping",
|
|
360
|
+
"dlp-gap-analysis",
|
|
361
|
+
"framework-gap-analysis",
|
|
362
|
+
"global-grc",
|
|
363
|
+
"identity-assurance",
|
|
364
|
+
"mcp-agent-trust",
|
|
365
|
+
"rag-pipeline-security",
|
|
366
|
+
"sector-energy",
|
|
367
|
+
"sector-federal-government",
|
|
368
|
+
"sector-financial",
|
|
369
|
+
"sector-healthcare",
|
|
370
|
+
"skill-update-loop",
|
|
371
|
+
"supply-chain-integrity",
|
|
372
|
+
"threat-model-currency",
|
|
373
|
+
"zeroday-gap-learn"
|
|
374
|
+
],
|
|
375
|
+
"email-security-anti-phishing": [
|
|
376
|
+
"ai-attack-surface",
|
|
377
|
+
"compliance-theater",
|
|
378
|
+
"dlp-gap-analysis",
|
|
379
|
+
"identity-assurance",
|
|
380
|
+
"incident-response-playbook",
|
|
381
|
+
"sector-financial"
|
|
382
|
+
],
|
|
383
|
+
"age-gates-child-safety": [
|
|
384
|
+
"ai-attack-surface",
|
|
385
|
+
"ai-risk-management",
|
|
386
|
+
"compliance-theater",
|
|
387
|
+
"coordinated-vuln-disclosure",
|
|
388
|
+
"dlp-gap-analysis",
|
|
389
|
+
"framework-gap-analysis",
|
|
390
|
+
"global-grc",
|
|
391
|
+
"identity-assurance",
|
|
392
|
+
"incident-response-playbook",
|
|
393
|
+
"sector-healthcare"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
"in_degree": {
|
|
397
|
+
"age-gates-child-safety": 1,
|
|
398
|
+
"ai-attack-surface": 19,
|
|
399
|
+
"ai-c2-detection": 11,
|
|
400
|
+
"ai-risk-management": 5,
|
|
401
|
+
"api-security": 3,
|
|
402
|
+
"attack-surface-pentest": 13,
|
|
403
|
+
"cloud-security": 4,
|
|
404
|
+
"compliance-theater": 16,
|
|
405
|
+
"container-runtime-security": 3,
|
|
406
|
+
"coordinated-vuln-disclosure": 9,
|
|
407
|
+
"defensive-countermeasure-mapping": 16,
|
|
408
|
+
"dlp-gap-analysis": 13,
|
|
409
|
+
"email-security-anti-phishing": 2,
|
|
410
|
+
"exploit-scoring": 10,
|
|
411
|
+
"framework-gap-analysis": 15,
|
|
412
|
+
"fuzz-testing-strategy": 3,
|
|
413
|
+
"global-grc": 12,
|
|
414
|
+
"identity-assurance": 15,
|
|
415
|
+
"incident-response-playbook": 4,
|
|
416
|
+
"kernel-lpe-triage": 10,
|
|
417
|
+
"mcp-agent-trust": 18,
|
|
418
|
+
"mlops-security": 3,
|
|
419
|
+
"ot-ics-security": 4,
|
|
420
|
+
"policy-exception-gen": 9,
|
|
421
|
+
"pqc-first": 6,
|
|
422
|
+
"rag-pipeline-security": 8,
|
|
423
|
+
"researcher": 1,
|
|
424
|
+
"sector-energy": 3,
|
|
425
|
+
"sector-federal-government": 4,
|
|
426
|
+
"sector-financial": 5,
|
|
427
|
+
"sector-healthcare": 4,
|
|
428
|
+
"security-maturity-tiers": 1,
|
|
429
|
+
"skill-update-loop": 2,
|
|
430
|
+
"supply-chain-integrity": 15,
|
|
431
|
+
"threat-model-currency": 5,
|
|
432
|
+
"threat-modeling-methodology": 4,
|
|
433
|
+
"webapp-security": 3,
|
|
434
|
+
"zeroday-gap-learn": 6
|
|
435
|
+
},
|
|
436
|
+
"out_degree": {
|
|
437
|
+
"age-gates-child-safety": 10,
|
|
438
|
+
"ai-attack-surface": 0,
|
|
439
|
+
"ai-c2-detection": 5,
|
|
440
|
+
"ai-risk-management": 13,
|
|
441
|
+
"api-security": 6,
|
|
442
|
+
"attack-surface-pentest": 1,
|
|
443
|
+
"cloud-security": 15,
|
|
444
|
+
"compliance-theater": 0,
|
|
445
|
+
"container-runtime-security": 18,
|
|
446
|
+
"coordinated-vuln-disclosure": 12,
|
|
447
|
+
"defensive-countermeasure-mapping": 6,
|
|
448
|
+
"dlp-gap-analysis": 1,
|
|
449
|
+
"email-security-anti-phishing": 6,
|
|
450
|
+
"exploit-scoring": 3,
|
|
451
|
+
"framework-gap-analysis": 0,
|
|
452
|
+
"fuzz-testing-strategy": 0,
|
|
453
|
+
"global-grc": 0,
|
|
454
|
+
"identity-assurance": 6,
|
|
455
|
+
"incident-response-playbook": 20,
|
|
456
|
+
"kernel-lpe-triage": 5,
|
|
457
|
+
"mcp-agent-trust": 5,
|
|
458
|
+
"mlops-security": 9,
|
|
459
|
+
"ot-ics-security": 12,
|
|
460
|
+
"policy-exception-gen": 0,
|
|
461
|
+
"pqc-first": 0,
|
|
462
|
+
"rag-pipeline-security": 5,
|
|
463
|
+
"researcher": 37,
|
|
464
|
+
"sector-energy": 14,
|
|
465
|
+
"sector-federal-government": 9,
|
|
466
|
+
"sector-financial": 12,
|
|
467
|
+
"sector-healthcare": 12,
|
|
468
|
+
"security-maturity-tiers": 0,
|
|
469
|
+
"skill-update-loop": 21,
|
|
470
|
+
"supply-chain-integrity": 2,
|
|
471
|
+
"threat-model-currency": 0,
|
|
472
|
+
"threat-modeling-methodology": 8,
|
|
473
|
+
"webapp-security": 8,
|
|
474
|
+
"zeroday-gap-learn": 4
|
|
475
|
+
}
|
|
476
|
+
}
|