cue-ai 0.5.0 → 0.6.0
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/README.md +757 -110
- package/package.json +5 -5
- package/profiles/README.md +12 -12
- package/profiles/SCHEMA.md +31 -3
- package/profiles/_cache/README.md +1 -1
- package/profiles/_types.ts +26 -1
- package/profiles/backend/profile.yaml +1 -0
- package/profiles/career/profile.yaml +13 -0
- package/profiles/core/profile.yaml +76 -9
- package/profiles/creative-media/README.md +1 -1
- package/profiles/cybersecurity/profile.yaml +779 -756
- package/profiles/ecc/profile.yaml +39 -0
- package/profiles/event-design/profile.yaml +10 -0
- package/profiles/fleet-control/README.md +1 -1
- package/profiles/frontend/profile.yaml +14 -0
- package/profiles/full/README.md +1 -1
- package/profiles/go-api/profile.yaml +1 -0
- package/profiles/marketing/profile.yaml +12 -1
- package/profiles/predict-everything/profile.yaml +9 -0
- package/profiles/rust/profile.yaml +22 -3
- package/profiles/rust-cli/profile.yaml +14 -0
- package/profiles/rust-core/profile.yaml +35 -0
- package/profiles/rust-embedded/profile.yaml +11 -0
- package/profiles/rust-ffi/profile.yaml +13 -0
- package/profiles/rust-game/profile.yaml +11 -0
- package/profiles/rust-wasm/profile.yaml +11 -0
- package/profiles/rust-web/profile.yaml +17 -0
- package/profiles/schema.json +44 -4
- package/profiles/trendradar/profile.yaml +11 -0
- package/resources/mcps/README.md +39 -164
- package/resources/mcps/configs/claude.sanitized.json +55 -0
- package/resources/mcps/configs/claude_runtime.sanitized.json +47 -0
- package/resources/skills/README.md +70 -113
- package/resources/skills/skills/event-design/wedding-invitations/SKILL.md +43 -0
- package/resources/skills/skills/meta/acpx/SKILL.md +78 -0
- package/resources/skills/skills/meta/cue-usage/SKILL.md +24 -0
- package/resources/skills/skills/meta/profile-fit-monitor/SKILL.md +24 -0
- package/resources/skills/skills/predict-everything/mirofish/SKILL.md +75 -0
- package/resources/skills/skills/research/trendradar/SKILL.md +88 -0
- package/resources/skills/skills/rust/async-tokio/SKILL.md +27 -0
- package/resources/skills/skills/rust/axum-api/SKILL.md +38 -0
- package/resources/skills/skills/rust/bacon-watch/SKILL.md +24 -0
- package/resources/skills/skills/rust/bevy/SKILL.md +43 -0
- package/resources/skills/skills/rust/bindgen/SKILL.md +39 -0
- package/resources/skills/skills/rust/cargo-audit/SKILL.md +26 -0
- package/resources/skills/skills/rust/cargo-basics/SKILL.md +28 -0
- package/resources/skills/skills/rust/cargo-chef/SKILL.md +43 -0
- package/resources/skills/skills/rust/cargo-edit/SKILL.md +26 -0
- package/resources/skills/skills/rust/cargo-expand/SKILL.md +24 -0
- package/resources/skills/skills/rust/cargo-flamegraph/SKILL.md +26 -0
- package/resources/skills/skills/rust/cargo-fuzz/SKILL.md +34 -0
- package/resources/skills/skills/rust/cargo-hack/SKILL.md +26 -0
- package/resources/skills/skills/rust/cargo-msrv/SKILL.md +30 -0
- package/resources/skills/skills/rust/cargo-mutants/SKILL.md +26 -0
- package/resources/skills/skills/rust/cargo-nextest/SKILL.md +24 -0
- package/resources/skills/skills/rust/cargo-readme/SKILL.md +36 -0
- package/resources/skills/skills/rust/cbindgen/SKILL.md +41 -0
- package/resources/skills/skills/rust/chisel-tool/SKILL.md +32 -0
- package/resources/skills/skills/rust/clap-cli/SKILL.md +44 -0
- package/resources/skills/skills/rust/clippy-and-fmt/SKILL.md +25 -0
- package/resources/skills/skills/rust/cross-compile/SKILL.md +26 -0
- package/resources/skills/skills/rust/embedded/SKILL.md +33 -0
- package/resources/skills/skills/rust/error-handling/SKILL.md +32 -0
- package/resources/skills/skills/rust/just-runner/SKILL.md +26 -0
- package/resources/skills/skills/rust/mdbook/SKILL.md +25 -0
- package/resources/skills/skills/rust/napi-rs/SKILL.md +32 -0
- package/resources/skills/skills/rust/no-std/SKILL.md +42 -0
- package/resources/skills/skills/rust/property-testing/SKILL.md +35 -0
- package/resources/skills/skills/rust/pyo3/SKILL.md +40 -0
- package/resources/skills/skills/rust/ratatui-tui/SKILL.md +36 -0
- package/resources/skills/skills/rust/release-plz/SKILL.md +27 -0
- package/resources/skills/skills/rust/reqwest/SKILL.md +37 -0
- package/resources/skills/skills/rust/sccache/SKILL.md +28 -0
- package/resources/skills/skills/rust/serde/SKILL.md +30 -0
- package/resources/skills/skills/rust/snapshot-testing/SKILL.md +30 -0
- package/resources/skills/skills/rust/sqlx-cli/SKILL.md +33 -0
- package/resources/skills/skills/rust/tracing/SKILL.md +36 -0
- package/resources/skills/skills/rust/typos-spellcheck/SKILL.md +31 -0
- package/resources/skills/skills/rust/uniffi/SKILL.md +38 -0
- package/resources/skills/skills/rust/wasm-rust/SKILL.md +27 -0
- package/resources/skills/skills/security/agentshield/SKILL.md +119 -0
- package/src/commands/_index.ts +47 -3
- package/src/commands/cli.test.ts +192 -0
- package/src/commands/cli.ts +303 -0
- package/src/commands/current.ts +1 -1
- package/src/commands/debug.test.ts +62 -0
- package/src/commands/debug.ts +212 -0
- package/src/commands/discover.scoring.test.ts +216 -0
- package/src/commands/discover.test.ts +145 -0
- package/src/commands/discover.ts +2618 -0
- package/src/commands/eval-behavior.test.ts +56 -0
- package/src/commands/eval-behavior.ts +189 -0
- package/src/commands/eval.test.ts +102 -0
- package/src/commands/eval.ts +348 -0
- package/src/commands/evolve.ts +291 -0
- package/src/commands/failures.test.ts +78 -0
- package/src/commands/failures.ts +393 -0
- package/src/commands/feedback.ts +219 -0
- package/src/commands/init.ts +26 -0
- package/src/commands/launch.e2e.test.ts +9 -1
- package/src/commands/launch.ts +174 -11
- package/src/commands/lint-skill.ts +157 -0
- package/src/commands/marketplace.ts +763 -2
- package/src/commands/new.ts +1 -1
- package/src/commands/optimizer.ts +92 -28
- package/src/commands/profile-draft-skill.test.ts +96 -0
- package/src/commands/profile-draft-skill.ts +287 -0
- package/src/commands/profile-evolve.test.ts +126 -0
- package/src/commands/profile-evolve.ts +0 -0
- package/src/commands/profile-suggest.ts +223 -0
- package/src/commands/profile.ts +41 -0
- package/src/commands/quick.ts +2 -17
- package/src/commands/scan.ts +2 -2
- package/src/commands/score.ts +1 -1
- package/src/commands/share.ts +1 -1
- package/src/commands/sources.ts +2 -2
- package/src/commands/submit-profile.ts +262 -0
- package/src/commands/upgrade.ts +1 -1
- package/src/commands/use.ts +35 -5
- package/src/commands/validate.ts +1 -1
- package/src/lib/analytics.ts +48 -2
- package/src/lib/claude-binary.ts +39 -0
- package/src/lib/cli-extractor.ts +77 -0
- package/src/lib/cluster-skills.test.ts +268 -0
- package/src/lib/cluster-skills.ts +290 -0
- package/src/lib/credentials-sync.test.ts +208 -0
- package/src/lib/credentials-sync.ts +205 -0
- package/src/lib/mcp-materializer.test.ts +1 -1
- package/src/lib/persona-playbooks.test.ts +111 -0
- package/src/lib/pr-poster.test.ts +243 -0
- package/src/lib/pr-poster.ts +285 -0
- package/src/lib/pr-throttle.test.ts +148 -0
- package/src/lib/pr-throttle.ts +209 -0
- package/src/lib/profile-generator.test.ts +1 -1
- package/src/lib/profile-generator.ts +2 -2
- package/src/lib/profile-linter.test.ts +6 -3
- package/src/lib/profile-linter.ts +71 -8
- package/src/lib/profile-loader.test.ts +1 -1
- package/src/lib/profile-loader.ts +16 -0
- package/src/lib/resolver-local.test.ts +1 -1
- package/src/lib/resolver-npx.test.ts +76 -1
- package/src/lib/resolver-npx.ts +35 -3
- package/src/lib/resolver-plugins.test.ts +1 -1
- package/src/lib/runtime-materializer.test.ts +191 -7
- package/src/lib/runtime-materializer.ts +310 -42
- package/src/lib/scan-plugins.test.ts +1 -1
- package/src/lib/skill-linter.test.ts +174 -0
- package/src/lib/skill-linter.ts +507 -0
- package/src/lib/skill-subset.test.ts +95 -0
- package/src/lib/skill-subset.ts +166 -0
- package/src/lib/star-prompt.ts +1 -1
- package/src/lib/uvx-installer.test.ts +229 -0
- package/src/lib/uvx-installer.ts +278 -0
|
@@ -1,761 +1,784 @@
|
|
|
1
1
|
name: cybersecurity
|
|
2
2
|
icon: "🔒"
|
|
3
|
-
description: "Skills from mukul975/Anthropic-Cybersecurity-Skills"
|
|
3
|
+
description: "Skills from mukul975/Anthropic-Cybersecurity-Skills + agentshield (agent config auditor)"
|
|
4
4
|
inherits: core
|
|
5
5
|
skills:
|
|
6
6
|
local:
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
7
|
+
- security/agentshield
|
|
8
|
+
- offensive-osint
|
|
9
|
+
- osint-methodology
|
|
10
|
+
npx:
|
|
11
|
+
- repo: mukul975/Anthropic-Cybersecurity-Skills
|
|
12
|
+
skills:
|
|
13
|
+
- acquiring-disk-image-with-dd-and-dcfldd
|
|
14
|
+
- analyzing-active-directory-acl-abuse
|
|
15
|
+
- analyzing-android-malware-with-apktool
|
|
16
|
+
- analyzing-api-gateway-access-logs
|
|
17
|
+
- analyzing-apt-group-with-mitre-navigator
|
|
18
|
+
- analyzing-azure-activity-logs-for-threats
|
|
19
|
+
- analyzing-bootkit-and-rootkit-samples
|
|
20
|
+
- analyzing-browser-forensics-with-hindsight
|
|
21
|
+
- analyzing-campaign-attribution-evidence
|
|
22
|
+
- analyzing-certificate-transparency-for-phishing
|
|
23
|
+
- analyzing-cloud-storage-access-patterns
|
|
24
|
+
- analyzing-cobalt-strike-beacon-configuration
|
|
25
|
+
- analyzing-cobaltstrike-malleable-c2-profiles
|
|
26
|
+
- analyzing-command-and-control-communication
|
|
27
|
+
- analyzing-cyber-kill-chain
|
|
28
|
+
- analyzing-disk-image-with-autopsy
|
|
29
|
+
- analyzing-dns-logs-for-exfiltration
|
|
30
|
+
- analyzing-docker-container-forensics
|
|
31
|
+
- analyzing-email-headers-for-phishing-investigation
|
|
32
|
+
- analyzing-ethereum-smart-contract-vulnerabilities
|
|
33
|
+
- analyzing-golang-malware-with-ghidra
|
|
34
|
+
- analyzing-heap-spray-exploitation
|
|
35
|
+
- analyzing-indicators-of-compromise
|
|
36
|
+
- analyzing-ios-app-security-with-objection
|
|
37
|
+
- analyzing-kubernetes-audit-logs
|
|
38
|
+
- analyzing-linux-audit-logs-for-intrusion
|
|
39
|
+
- analyzing-linux-elf-malware
|
|
40
|
+
- analyzing-linux-kernel-rootkits
|
|
41
|
+
- analyzing-linux-system-artifacts
|
|
42
|
+
- analyzing-lnk-file-and-jump-list-artifacts
|
|
43
|
+
- analyzing-macro-malware-in-office-documents
|
|
44
|
+
- analyzing-malicious-pdf-with-peepdf
|
|
45
|
+
- analyzing-malicious-url-with-urlscan
|
|
46
|
+
- analyzing-malware-behavior-with-cuckoo-sandbox
|
|
47
|
+
- analyzing-malware-family-relationships-with-malpedia
|
|
48
|
+
- analyzing-malware-persistence-with-autoruns
|
|
49
|
+
- analyzing-malware-sandbox-evasion-techniques
|
|
50
|
+
- analyzing-memory-dumps-with-volatility
|
|
51
|
+
- analyzing-memory-forensics-with-lime-and-volatility
|
|
52
|
+
- analyzing-mft-for-deleted-file-recovery
|
|
53
|
+
- analyzing-network-covert-channels-in-malware
|
|
54
|
+
- analyzing-network-flow-data-with-netflow
|
|
55
|
+
- analyzing-network-packets-with-scapy
|
|
56
|
+
- analyzing-network-traffic-for-incidents
|
|
57
|
+
- analyzing-network-traffic-of-malware
|
|
58
|
+
- analyzing-network-traffic-with-wireshark
|
|
59
|
+
- analyzing-office365-audit-logs-for-compromise
|
|
60
|
+
- analyzing-outlook-pst-for-email-forensics
|
|
61
|
+
- analyzing-packed-malware-with-upx-unpacker
|
|
62
|
+
- analyzing-pdf-malware-with-pdfid
|
|
63
|
+
- analyzing-persistence-mechanisms-in-linux
|
|
64
|
+
- analyzing-powershell-empire-artifacts
|
|
65
|
+
- analyzing-powershell-script-block-logging
|
|
66
|
+
- analyzing-prefetch-files-for-execution-history
|
|
67
|
+
- analyzing-ransomware-encryption-mechanisms
|
|
68
|
+
- analyzing-ransomware-leak-site-intelligence
|
|
69
|
+
- analyzing-ransomware-network-indicators
|
|
70
|
+
- analyzing-ransomware-payment-wallets
|
|
71
|
+
- analyzing-sbom-for-supply-chain-vulnerabilities
|
|
72
|
+
- analyzing-security-logs-with-splunk
|
|
73
|
+
- analyzing-slack-space-and-file-system-artifacts
|
|
74
|
+
- analyzing-supply-chain-malware-artifacts
|
|
75
|
+
- analyzing-threat-actor-ttps-with-mitre-attack
|
|
76
|
+
- analyzing-threat-actor-ttps-with-mitre-navigator
|
|
77
|
+
- analyzing-threat-intelligence-feeds
|
|
78
|
+
- analyzing-threat-landscape-with-misp
|
|
79
|
+
- analyzing-tls-certificate-transparency-logs
|
|
80
|
+
- analyzing-typosquatting-domains-with-dnstwist
|
|
81
|
+
- analyzing-uefi-bootkit-persistence
|
|
82
|
+
- analyzing-usb-device-connection-history
|
|
83
|
+
- analyzing-web-server-logs-for-intrusion
|
|
84
|
+
- analyzing-windows-amcache-artifacts
|
|
85
|
+
- analyzing-windows-event-logs-in-splunk
|
|
86
|
+
- analyzing-windows-lnk-files-for-artifacts
|
|
87
|
+
- analyzing-windows-prefetch-with-python
|
|
88
|
+
- analyzing-windows-registry-for-artifacts
|
|
89
|
+
- analyzing-windows-shellbag-artifacts
|
|
90
|
+
- auditing-aws-s3-bucket-permissions
|
|
91
|
+
- auditing-azure-active-directory-configuration
|
|
92
|
+
- auditing-cloud-with-cis-benchmarks
|
|
93
|
+
- auditing-gcp-iam-permissions
|
|
94
|
+
- auditing-kubernetes-cluster-rbac
|
|
95
|
+
- auditing-terraform-infrastructure-for-security
|
|
96
|
+
- auditing-tls-certificate-transparency-logs
|
|
97
|
+
- automating-ioc-enrichment
|
|
98
|
+
- building-adversary-infrastructure-tracking-system
|
|
99
|
+
- building-attack-pattern-library-from-cti-reports
|
|
100
|
+
- building-automated-malware-submission-pipeline
|
|
101
|
+
- building-c2-infrastructure-with-sliver-framework
|
|
102
|
+
- building-cloud-siem-with-sentinel
|
|
103
|
+
- building-detection-rule-with-splunk-spl
|
|
104
|
+
- building-detection-rules-with-sigma
|
|
105
|
+
- building-devsecops-pipeline-with-gitlab-ci
|
|
106
|
+
- building-identity-federation-with-saml-azure-ad
|
|
107
|
+
- building-identity-governance-lifecycle-process
|
|
108
|
+
- building-incident-response-dashboard
|
|
109
|
+
- building-incident-response-playbook
|
|
110
|
+
- building-incident-timeline-with-timesketch
|
|
111
|
+
- building-ioc-defanging-and-sharing-pipeline
|
|
112
|
+
- building-ioc-enrichment-pipeline-with-opencti
|
|
113
|
+
- building-malware-incident-communication-template
|
|
114
|
+
- building-patch-tuesday-response-process
|
|
115
|
+
- building-phishing-reporting-button-workflow
|
|
116
|
+
- building-ransomware-playbook-with-cisa-framework
|
|
117
|
+
- building-red-team-c2-infrastructure-with-havoc
|
|
118
|
+
- building-role-mining-for-rbac-optimization
|
|
119
|
+
- building-soc-escalation-matrix
|
|
120
|
+
- building-soc-metrics-and-kpi-tracking
|
|
121
|
+
- building-soc-playbook-for-ransomware
|
|
122
|
+
- building-threat-actor-profile-from-osint
|
|
123
|
+
- building-threat-feed-aggregation-with-misp
|
|
124
|
+
- building-threat-hunt-hypothesis-framework
|
|
125
|
+
- building-threat-intelligence-enrichment-in-splunk
|
|
126
|
+
- building-threat-intelligence-feed-integration
|
|
127
|
+
- building-threat-intelligence-platform
|
|
128
|
+
- building-vulnerability-aging-and-sla-tracking
|
|
129
|
+
- building-vulnerability-dashboard-with-defectdojo
|
|
130
|
+
- building-vulnerability-exception-tracking-system
|
|
131
|
+
- building-vulnerability-scanning-workflow
|
|
132
|
+
- bypassing-authentication-with-forced-browsing
|
|
133
|
+
- collecting-indicators-of-compromise
|
|
134
|
+
- collecting-open-source-intelligence
|
|
135
|
+
- collecting-threat-intelligence-with-misp
|
|
136
|
+
- collecting-volatile-evidence-from-compromised-host
|
|
137
|
+
- conducting-api-security-testing
|
|
138
|
+
- conducting-cloud-incident-response
|
|
139
|
+
- conducting-cloud-penetration-testing
|
|
140
|
+
- conducting-domain-persistence-with-dcsync
|
|
141
|
+
- conducting-external-reconnaissance-with-osint
|
|
142
|
+
- conducting-full-scope-red-team-engagement
|
|
143
|
+
- conducting-internal-network-penetration-test
|
|
144
|
+
- conducting-internal-reconnaissance-with-bloodhound-ce
|
|
145
|
+
- conducting-malware-incident-response
|
|
146
|
+
- conducting-man-in-the-middle-attack-simulation
|
|
147
|
+
- conducting-memory-forensics-with-volatility
|
|
148
|
+
- conducting-mobile-app-penetration-test
|
|
149
|
+
- conducting-network-penetration-test
|
|
150
|
+
- conducting-pass-the-ticket-attack
|
|
151
|
+
- conducting-phishing-incident-response
|
|
152
|
+
- conducting-post-incident-lessons-learned
|
|
153
|
+
- conducting-social-engineering-penetration-test
|
|
154
|
+
- conducting-social-engineering-pretext-call
|
|
155
|
+
- conducting-spearphishing-simulation-campaign
|
|
156
|
+
- conducting-wireless-network-penetration-test
|
|
157
|
+
- configuring-active-directory-tiered-model
|
|
158
|
+
- configuring-aws-verified-access-for-ztna
|
|
159
|
+
- configuring-certificate-authority-with-openssl
|
|
160
|
+
- configuring-host-based-intrusion-detection
|
|
161
|
+
- configuring-hsm-for-key-storage
|
|
162
|
+
- configuring-identity-aware-proxy-with-google-iap
|
|
163
|
+
- configuring-ldap-security-hardening
|
|
164
|
+
- configuring-microsegmentation-for-zero-trust
|
|
165
|
+
- configuring-multi-factor-authentication-with-duo
|
|
166
|
+
- configuring-network-segmentation-with-vlans
|
|
167
|
+
- configuring-oauth2-authorization-flow
|
|
168
|
+
- configuring-pfsense-firewall-rules
|
|
169
|
+
- configuring-snort-ids-for-intrusion-detection
|
|
170
|
+
- configuring-suricata-for-network-monitoring
|
|
171
|
+
- configuring-tls-1-3-for-secure-communications
|
|
172
|
+
- configuring-windows-defender-advanced-settings
|
|
173
|
+
- configuring-windows-event-logging-for-detection
|
|
174
|
+
- configuring-zscaler-private-access-for-ztna
|
|
175
|
+
- containing-active-breach
|
|
176
|
+
- correlating-security-events-in-qradar
|
|
177
|
+
- correlating-threat-campaigns
|
|
178
|
+
- deobfuscating-javascript-malware
|
|
179
|
+
- deobfuscating-powershell-obfuscated-malware
|
|
180
|
+
- deploying-active-directory-honeytokens
|
|
181
|
+
- deploying-cloudflare-access-for-zero-trust
|
|
182
|
+
- deploying-decoy-files-for-ransomware-detection
|
|
183
|
+
- deploying-edr-agent-with-crowdstrike
|
|
184
|
+
- deploying-osquery-for-endpoint-monitoring
|
|
185
|
+
- deploying-palo-alto-prisma-access-zero-trust
|
|
186
|
+
- deploying-ransomware-canary-files
|
|
187
|
+
- deploying-software-defined-perimeter
|
|
188
|
+
- deploying-tailscale-for-zero-trust-vpn
|
|
189
|
+
- detecting-ai-model-prompt-injection-attacks
|
|
190
|
+
- detecting-anomalies-in-industrial-control-systems
|
|
191
|
+
- detecting-anomalous-authentication-patterns
|
|
192
|
+
- detecting-api-enumeration-attacks
|
|
193
|
+
- detecting-arp-poisoning-in-network-traffic
|
|
194
|
+
- detecting-attacks-on-historian-servers
|
|
195
|
+
- detecting-attacks-on-scada-systems
|
|
196
|
+
- detecting-aws-cloudtrail-anomalies
|
|
197
|
+
- detecting-aws-credential-exposure-with-trufflehog
|
|
198
|
+
- detecting-aws-guardduty-findings-automation
|
|
199
|
+
- detecting-aws-iam-privilege-escalation
|
|
200
|
+
- detecting-azure-lateral-movement
|
|
201
|
+
- detecting-azure-service-principal-abuse
|
|
202
|
+
- detecting-azure-storage-account-misconfigurations
|
|
203
|
+
- detecting-beaconing-patterns-with-zeek
|
|
204
|
+
- detecting-bluetooth-low-energy-attacks
|
|
205
|
+
- detecting-broken-object-property-level-authorization
|
|
206
|
+
- detecting-business-email-compromise
|
|
207
|
+
- detecting-business-email-compromise-with-ai
|
|
208
|
+
- detecting-cloud-threats-with-guardduty
|
|
209
|
+
- detecting-command-and-control-over-dns
|
|
210
|
+
- detecting-compromised-cloud-credentials
|
|
211
|
+
- detecting-container-drift-at-runtime
|
|
212
|
+
- detecting-container-escape-attempts
|
|
213
|
+
- detecting-container-escape-with-falco-rules
|
|
214
|
+
- detecting-credential-dumping-techniques
|
|
215
|
+
- detecting-cryptomining-in-cloud
|
|
216
|
+
- detecting-dcsync-attack-in-active-directory
|
|
217
|
+
- detecting-deepfake-audio-in-vishing-attacks
|
|
218
|
+
- detecting-dll-sideloading-attacks
|
|
219
|
+
- detecting-dnp3-protocol-anomalies
|
|
220
|
+
- detecting-dns-exfiltration-with-dns-query-analysis
|
|
221
|
+
- detecting-email-account-compromise
|
|
222
|
+
- detecting-email-forwarding-rules-attack
|
|
223
|
+
- detecting-evasion-techniques-in-endpoint-logs
|
|
224
|
+
- detecting-exfiltration-over-dns-with-zeek
|
|
225
|
+
- detecting-fileless-attacks-on-endpoints
|
|
226
|
+
- detecting-fileless-malware-techniques
|
|
227
|
+
- detecting-golden-ticket-attacks-in-kerberos-logs
|
|
228
|
+
- detecting-golden-ticket-forgery
|
|
229
|
+
- detecting-insider-data-exfiltration-via-dlp
|
|
230
|
+
- detecting-insider-threat-behaviors
|
|
231
|
+
- detecting-insider-threat-with-ueba
|
|
232
|
+
- detecting-kerberoasting-attacks
|
|
233
|
+
- detecting-lateral-movement-in-network
|
|
234
|
+
- detecting-lateral-movement-with-splunk
|
|
235
|
+
- detecting-lateral-movement-with-zeek
|
|
236
|
+
- detecting-living-off-the-land-attacks
|
|
237
|
+
- detecting-living-off-the-land-with-lolbas
|
|
238
|
+
- detecting-malicious-scheduled-tasks-with-sysmon
|
|
239
|
+
- detecting-mimikatz-execution-patterns
|
|
240
|
+
- detecting-misconfigured-azure-storage
|
|
241
|
+
- detecting-mobile-malware-behavior
|
|
242
|
+
- detecting-modbus-command-injection-attacks
|
|
243
|
+
- detecting-modbus-protocol-anomalies
|
|
244
|
+
- detecting-network-anomalies-with-zeek
|
|
245
|
+
- detecting-network-scanning-with-ids-signatures
|
|
246
|
+
- detecting-ntlm-relay-with-event-correlation
|
|
247
|
+
- detecting-oauth-token-theft
|
|
248
|
+
- detecting-pass-the-hash-attacks
|
|
249
|
+
- detecting-pass-the-ticket-attacks
|
|
250
|
+
- detecting-port-scanning-with-fail2ban
|
|
251
|
+
- detecting-privilege-escalation-attempts
|
|
252
|
+
- detecting-privilege-escalation-in-kubernetes-pods
|
|
253
|
+
- detecting-process-hollowing-technique
|
|
254
|
+
- detecting-process-injection-techniques
|
|
255
|
+
- detecting-qr-code-phishing-with-email-security
|
|
256
|
+
- detecting-ransomware-encryption-behavior
|
|
257
|
+
- detecting-ransomware-precursors-in-network
|
|
258
|
+
- detecting-rdp-brute-force-attacks
|
|
259
|
+
- detecting-rootkit-activity
|
|
260
|
+
- detecting-s3-data-exfiltration-attempts
|
|
261
|
+
- detecting-serverless-function-injection
|
|
262
|
+
- detecting-service-account-abuse
|
|
263
|
+
- detecting-shadow-api-endpoints
|
|
264
|
+
- detecting-shadow-it-cloud-usage
|
|
265
|
+
- detecting-spearphishing-with-email-gateway
|
|
266
|
+
- detecting-sql-injection-via-waf-logs
|
|
267
|
+
- detecting-stuxnet-style-attacks
|
|
268
|
+
- detecting-supply-chain-attacks-in-ci-cd
|
|
269
|
+
- detecting-suspicious-oauth-application-consent
|
|
270
|
+
- detecting-suspicious-powershell-execution
|
|
271
|
+
- detecting-t1003-credential-dumping-with-edr
|
|
272
|
+
- detecting-t1055-process-injection-with-sysmon
|
|
273
|
+
- detecting-t1548-abuse-elevation-control-mechanism
|
|
274
|
+
- detecting-typosquatting-packages-in-npm-pypi
|
|
275
|
+
- detecting-wmi-persistence
|
|
276
|
+
- eradicating-malware-from-infected-systems
|
|
277
|
+
- evaluating-threat-intelligence-platforms
|
|
278
|
+
- executing-active-directory-attack-simulation
|
|
279
|
+
- executing-phishing-simulation-campaign
|
|
280
|
+
- executing-red-team-engagement-planning
|
|
281
|
+
- executing-red-team-exercise
|
|
282
|
+
- exploiting-active-directory-certificate-services-esc1
|
|
283
|
+
- exploiting-active-directory-with-bloodhound
|
|
284
|
+
- exploiting-api-injection-vulnerabilities
|
|
285
|
+
- exploiting-bgp-hijacking-vulnerabilities
|
|
286
|
+
- exploiting-broken-function-level-authorization
|
|
287
|
+
- exploiting-broken-link-hijacking
|
|
288
|
+
- exploiting-constrained-delegation-abuse
|
|
289
|
+
- exploiting-deeplink-vulnerabilities
|
|
290
|
+
- exploiting-excessive-data-exposure-in-api
|
|
291
|
+
- exploiting-http-request-smuggling
|
|
292
|
+
- exploiting-idor-vulnerabilities
|
|
293
|
+
- exploiting-insecure-data-storage-in-mobile
|
|
294
|
+
- exploiting-insecure-deserialization
|
|
295
|
+
- exploiting-ipv6-vulnerabilities
|
|
296
|
+
- exploiting-jwt-algorithm-confusion-attack
|
|
297
|
+
- exploiting-kerberoasting-with-impacket
|
|
298
|
+
- exploiting-mass-assignment-in-rest-apis
|
|
299
|
+
- exploiting-ms17-010-eternalblue-vulnerability
|
|
300
|
+
- exploiting-nopac-cve-2021-42278-42287
|
|
301
|
+
- exploiting-nosql-injection-vulnerabilities
|
|
302
|
+
- exploiting-oauth-misconfiguration
|
|
303
|
+
- exploiting-prototype-pollution-in-javascript
|
|
304
|
+
- exploiting-race-condition-vulnerabilities
|
|
305
|
+
- exploiting-server-side-request-forgery
|
|
306
|
+
- exploiting-smb-vulnerabilities-with-metasploit
|
|
307
|
+
- exploiting-sql-injection-vulnerabilities
|
|
308
|
+
- exploiting-sql-injection-with-sqlmap
|
|
309
|
+
- exploiting-template-injection-vulnerabilities
|
|
310
|
+
- exploiting-type-juggling-vulnerabilities
|
|
311
|
+
- exploiting-vulnerabilities-with-metasploit-framework
|
|
312
|
+
- exploiting-websocket-vulnerabilities
|
|
313
|
+
- exploiting-zerologon-vulnerability-cve-2020-1472
|
|
314
|
+
- extracting-browser-history-artifacts
|
|
315
|
+
- extracting-config-from-agent-tesla-rat
|
|
316
|
+
- extracting-credentials-from-memory-dump
|
|
317
|
+
- extracting-iocs-from-malware-samples
|
|
318
|
+
- extracting-memory-artifacts-with-rekall
|
|
319
|
+
- extracting-windows-event-logs-artifacts
|
|
320
|
+
- generating-threat-intelligence-reports
|
|
321
|
+
- hardening-docker-containers-for-production
|
|
322
|
+
- hardening-docker-daemon-configuration
|
|
323
|
+
- hardening-linux-endpoint-with-cis-benchmark
|
|
324
|
+
- hardening-windows-endpoint-with-cis-benchmark
|
|
325
|
+
- hunting-advanced-persistent-threats
|
|
326
|
+
- hunting-credential-stuffing-attacks
|
|
327
|
+
- hunting-for-anomalous-powershell-execution
|
|
328
|
+
- hunting-for-beaconing-with-frequency-analysis
|
|
329
|
+
- hunting-for-cobalt-strike-beacons
|
|
330
|
+
- hunting-for-command-and-control-beaconing
|
|
331
|
+
- hunting-for-data-exfiltration-indicators
|
|
332
|
+
- hunting-for-data-staging-before-exfiltration
|
|
333
|
+
- hunting-for-dcom-lateral-movement
|
|
334
|
+
- hunting-for-dcsync-attacks
|
|
335
|
+
- hunting-for-defense-evasion-via-timestomping
|
|
336
|
+
- hunting-for-dns-based-persistence
|
|
337
|
+
- hunting-for-dns-tunneling-with-zeek
|
|
338
|
+
- hunting-for-domain-fronting-c2-traffic
|
|
339
|
+
- hunting-for-lateral-movement-via-wmi
|
|
340
|
+
- hunting-for-living-off-the-cloud-techniques
|
|
341
|
+
- hunting-for-living-off-the-land-binaries
|
|
342
|
+
- hunting-for-lolbins-execution-in-endpoint-logs
|
|
343
|
+
- hunting-for-ntlm-relay-attacks
|
|
344
|
+
- hunting-for-persistence-mechanisms-in-windows
|
|
345
|
+
- hunting-for-persistence-via-wmi-subscriptions
|
|
346
|
+
- hunting-for-process-injection-techniques
|
|
347
|
+
- hunting-for-registry-persistence-mechanisms
|
|
348
|
+
- hunting-for-registry-run-key-persistence
|
|
349
|
+
- hunting-for-scheduled-task-persistence
|
|
350
|
+
- hunting-for-shadow-copy-deletion
|
|
351
|
+
- hunting-for-spearphishing-indicators
|
|
352
|
+
- hunting-for-startup-folder-persistence
|
|
353
|
+
- hunting-for-supply-chain-compromise
|
|
354
|
+
- hunting-for-suspicious-scheduled-tasks
|
|
355
|
+
- hunting-for-t1098-account-manipulation
|
|
356
|
+
- hunting-for-unusual-network-connections
|
|
357
|
+
- hunting-for-unusual-service-installations
|
|
358
|
+
- hunting-for-webshell-activity
|
|
359
|
+
- implementing-aes-encryption-for-data-at-rest
|
|
360
|
+
- implementing-alert-fatigue-reduction
|
|
361
|
+
- implementing-anti-phishing-training-program
|
|
362
|
+
- implementing-anti-ransomware-group-policy
|
|
363
|
+
- implementing-api-abuse-detection-with-rate-limiting
|
|
364
|
+
- implementing-api-gateway-security-controls
|
|
365
|
+
- implementing-api-key-security-controls
|
|
366
|
+
- implementing-api-rate-limiting-and-throttling
|
|
367
|
+
- implementing-api-schema-validation-security
|
|
368
|
+
- implementing-api-security-posture-management
|
|
369
|
+
- implementing-api-security-testing-with-42crunch
|
|
370
|
+
- implementing-api-threat-protection-with-apigee
|
|
371
|
+
- implementing-application-whitelisting-with-applocker
|
|
372
|
+
- implementing-aqua-security-for-container-scanning
|
|
373
|
+
- implementing-attack-path-analysis-with-xm-cyber
|
|
374
|
+
- implementing-attack-surface-management
|
|
375
|
+
- implementing-aws-config-rules-for-compliance
|
|
376
|
+
- implementing-aws-iam-permission-boundaries
|
|
377
|
+
- implementing-aws-macie-for-data-classification
|
|
378
|
+
- implementing-aws-nitro-enclave-security
|
|
379
|
+
- implementing-aws-security-hub
|
|
380
|
+
- implementing-aws-security-hub-compliance
|
|
381
|
+
- implementing-azure-ad-privileged-identity-management
|
|
382
|
+
- implementing-azure-defender-for-cloud
|
|
383
|
+
- implementing-beyondcorp-zero-trust-access-model
|
|
384
|
+
- implementing-bgp-security-with-rpki
|
|
385
|
+
- implementing-browser-isolation-for-zero-trust
|
|
386
|
+
- implementing-canary-tokens-for-network-intrusion
|
|
387
|
+
- implementing-cisa-zero-trust-maturity-model
|
|
388
|
+
- implementing-cloud-dlp-for-data-protection
|
|
389
|
+
- implementing-cloud-security-posture-management
|
|
390
|
+
- implementing-cloud-trail-log-analysis
|
|
391
|
+
- implementing-cloud-vulnerability-posture-management
|
|
392
|
+
- implementing-cloud-waf-rules
|
|
393
|
+
- implementing-cloud-workload-protection
|
|
394
|
+
- implementing-code-signing-for-artifacts
|
|
395
|
+
- implementing-conditional-access-policies-azure-ad
|
|
396
|
+
- implementing-conduit-security-for-ot-remote-access
|
|
397
|
+
- implementing-container-image-minimal-base-with-distroless
|
|
398
|
+
- implementing-container-network-policies-with-calico
|
|
399
|
+
- implementing-continuous-security-validation-with-bas
|
|
400
|
+
- implementing-data-loss-prevention-with-microsoft-purview
|
|
401
|
+
- implementing-ddos-mitigation-with-cloudflare
|
|
402
|
+
- implementing-deception-based-detection-with-canarytoken
|
|
403
|
+
- implementing-delinea-secret-server-for-pam
|
|
404
|
+
- implementing-device-posture-assessment-in-zero-trust
|
|
405
|
+
- implementing-devsecops-security-scanning
|
|
406
|
+
- implementing-diamond-model-analysis
|
|
407
|
+
- implementing-digital-signatures-with-ed25519
|
|
408
|
+
- implementing-disk-encryption-with-bitlocker
|
|
409
|
+
- implementing-dmarc-dkim-spf-email-security
|
|
410
|
+
- implementing-dragos-platform-for-ot-monitoring
|
|
411
|
+
- implementing-ebpf-security-monitoring
|
|
412
|
+
- implementing-email-sandboxing-with-proofpoint
|
|
413
|
+
- implementing-end-to-end-encryption-for-messaging
|
|
414
|
+
- implementing-endpoint-detection-with-wazuh
|
|
415
|
+
- implementing-endpoint-dlp-controls
|
|
416
|
+
- implementing-envelope-encryption-with-aws-kms
|
|
417
|
+
- implementing-epss-score-for-vulnerability-prioritization
|
|
418
|
+
- implementing-file-integrity-monitoring-with-aide
|
|
419
|
+
- implementing-fuzz-testing-in-cicd-with-aflplusplus
|
|
420
|
+
- implementing-gcp-binary-authorization
|
|
421
|
+
- implementing-gcp-organization-policy-constraints
|
|
422
|
+
- implementing-gcp-vpc-firewall-rules
|
|
423
|
+
- implementing-gdpr-data-protection-controls
|
|
424
|
+
- implementing-gdpr-data-subject-access-request
|
|
425
|
+
- implementing-github-advanced-security-for-code-scanning
|
|
426
|
+
- implementing-google-workspace-admin-security
|
|
427
|
+
- implementing-google-workspace-phishing-protection
|
|
428
|
+
- implementing-google-workspace-sso-configuration
|
|
429
|
+
- implementing-hardware-security-key-authentication
|
|
430
|
+
- implementing-hashicorp-vault-dynamic-secrets
|
|
431
|
+
- implementing-honeypot-for-ransomware-detection
|
|
432
|
+
- implementing-honeytokens-for-breach-detection
|
|
433
|
+
- implementing-ics-firewall-with-tofino
|
|
434
|
+
- implementing-identity-governance-with-sailpoint
|
|
435
|
+
- implementing-identity-verification-for-zero-trust
|
|
436
|
+
- implementing-iec-62443-security-zones
|
|
437
|
+
- implementing-image-provenance-verification-with-cosign
|
|
438
|
+
- implementing-immutable-backup-with-restic
|
|
439
|
+
- implementing-infrastructure-as-code-security-scanning
|
|
440
|
+
- implementing-iso-27001-information-security-management
|
|
441
|
+
- implementing-just-in-time-access-provisioning
|
|
442
|
+
- implementing-jwt-signing-and-verification
|
|
443
|
+
- implementing-kubernetes-network-policy-with-calico
|
|
444
|
+
- implementing-kubernetes-pod-security-standards
|
|
445
|
+
- implementing-llm-guardrails-for-security
|
|
446
|
+
- implementing-log-forwarding-with-fluentd
|
|
447
|
+
- implementing-log-integrity-with-blockchain
|
|
448
|
+
- implementing-memory-protection-with-dep-aslr
|
|
449
|
+
- implementing-microsegmentation-with-guardicore
|
|
450
|
+
- implementing-mimecast-targeted-attack-protection
|
|
451
|
+
- implementing-mitre-attack-coverage-mapping
|
|
452
|
+
- implementing-mobile-application-management
|
|
453
|
+
- implementing-mtls-for-zero-trust-services
|
|
454
|
+
- implementing-nerc-cip-compliance-controls
|
|
455
|
+
- implementing-network-access-control
|
|
456
|
+
- implementing-network-access-control-with-cisco-ise
|
|
457
|
+
- implementing-network-deception-with-honeypots
|
|
458
|
+
- implementing-network-intrusion-prevention-with-suricata
|
|
459
|
+
- implementing-network-policies-for-kubernetes
|
|
460
|
+
- implementing-network-segmentation-for-ot
|
|
461
|
+
- implementing-network-segmentation-with-firewall-zones
|
|
462
|
+
- implementing-network-traffic-analysis-with-arkime
|
|
463
|
+
- implementing-network-traffic-baselining
|
|
464
|
+
- implementing-next-generation-firewall-with-palo-alto
|
|
465
|
+
- implementing-opa-gatekeeper-for-policy-enforcement
|
|
466
|
+
- implementing-ot-incident-response-playbook
|
|
467
|
+
- implementing-ot-network-traffic-analysis-with-nozomi
|
|
468
|
+
- implementing-pam-for-database-access
|
|
469
|
+
- implementing-passwordless-auth-with-microsoft-entra
|
|
470
|
+
- implementing-passwordless-authentication-with-fido2
|
|
471
|
+
- implementing-patch-management-for-ot-systems
|
|
472
|
+
- implementing-patch-management-workflow
|
|
473
|
+
- implementing-pci-dss-compliance-controls
|
|
474
|
+
- implementing-pod-security-admission-controller
|
|
475
|
+
- implementing-policy-as-code-with-open-policy-agent
|
|
476
|
+
- implementing-privileged-access-management-with-cyberark
|
|
477
|
+
- implementing-privileged-access-workstation
|
|
478
|
+
- implementing-privileged-session-monitoring
|
|
479
|
+
- implementing-proofpoint-email-security-gateway
|
|
480
|
+
- implementing-purdue-model-network-segmentation
|
|
481
|
+
- implementing-ransomware-backup-strategy
|
|
482
|
+
- implementing-ransomware-kill-switch-detection
|
|
483
|
+
- implementing-rapid7-insightvm-for-scanning
|
|
484
|
+
- implementing-rbac-hardening-for-kubernetes
|
|
485
|
+
- implementing-rsa-key-pair-management
|
|
486
|
+
- implementing-runtime-application-self-protection
|
|
487
|
+
- implementing-runtime-security-with-tetragon
|
|
488
|
+
- implementing-saml-sso-with-okta
|
|
489
|
+
- implementing-scim-provisioning-with-okta
|
|
490
|
+
- implementing-secret-scanning-with-gitleaks
|
|
491
|
+
- implementing-secrets-management-with-vault
|
|
492
|
+
- implementing-secrets-scanning-in-ci-cd
|
|
493
|
+
- implementing-security-chaos-engineering
|
|
494
|
+
- implementing-security-information-sharing-with-stix2
|
|
495
|
+
- implementing-security-monitoring-with-datadog
|
|
496
|
+
- implementing-semgrep-for-custom-sast-rules
|
|
497
|
+
- implementing-siem-correlation-rules-for-apt
|
|
498
|
+
- implementing-siem-use-case-tuning
|
|
499
|
+
- implementing-siem-use-cases-for-detection
|
|
500
|
+
- implementing-sigstore-for-software-signing
|
|
501
|
+
- implementing-soar-automation-with-phantom
|
|
502
|
+
- implementing-soar-playbook-for-phishing
|
|
503
|
+
- implementing-soar-playbook-with-palo-alto-xsoar
|
|
504
|
+
- implementing-stix-taxii-feed-integration
|
|
505
|
+
- implementing-supply-chain-security-with-in-toto
|
|
506
|
+
- implementing-syslog-centralization-with-rsyslog
|
|
507
|
+
- implementing-taxii-server-with-opentaxii
|
|
508
|
+
- implementing-threat-intelligence-lifecycle-management
|
|
509
|
+
- implementing-threat-modeling-with-mitre-attack
|
|
510
|
+
- implementing-ticketing-system-for-incidents
|
|
511
|
+
- implementing-usb-device-control-policy
|
|
512
|
+
- implementing-velociraptor-for-ir-collection
|
|
513
|
+
- implementing-vulnerability-management-with-greenbone
|
|
514
|
+
- implementing-vulnerability-remediation-sla
|
|
515
|
+
- implementing-vulnerability-sla-breach-alerting
|
|
516
|
+
- implementing-web-application-logging-with-modsecurity
|
|
517
|
+
- implementing-zero-knowledge-proof-for-authentication
|
|
518
|
+
- implementing-zero-standing-privilege-with-cyberark
|
|
519
|
+
- implementing-zero-trust-dns-with-nextdns
|
|
520
|
+
- implementing-zero-trust-for-saas-applications
|
|
521
|
+
- implementing-zero-trust-in-cloud
|
|
522
|
+
- implementing-zero-trust-network-access
|
|
523
|
+
- implementing-zero-trust-network-access-with-zscaler
|
|
524
|
+
- implementing-zero-trust-with-beyondcorp
|
|
525
|
+
- implementing-zero-trust-with-hashicorp-boundary
|
|
526
|
+
- integrating-dast-with-owasp-zap-in-pipeline
|
|
527
|
+
- integrating-sast-into-github-actions-pipeline
|
|
528
|
+
- intercepting-mobile-traffic-with-burpsuite
|
|
529
|
+
- investigating-insider-threat-indicators
|
|
530
|
+
- investigating-phishing-email-incident
|
|
531
|
+
- investigating-ransomware-attack-artifacts
|
|
532
|
+
- managing-cloud-identity-with-okta
|
|
533
|
+
- managing-intelligence-lifecycle
|
|
534
|
+
- mapping-mitre-attack-techniques
|
|
535
|
+
- monitoring-darkweb-sources
|
|
536
|
+
- monitoring-scada-modbus-traffic-anomalies
|
|
537
|
+
- performing-access-recertification-with-saviynt
|
|
538
|
+
- performing-access-review-and-certification
|
|
539
|
+
- performing-active-directory-bloodhound-analysis
|
|
540
|
+
- performing-active-directory-compromise-investigation
|
|
541
|
+
- performing-active-directory-forest-trust-attack
|
|
542
|
+
- performing-active-directory-penetration-test
|
|
543
|
+
- performing-active-directory-vulnerability-assessment
|
|
544
|
+
- performing-adversary-in-the-middle-phishing-detection
|
|
545
|
+
- performing-agentless-vulnerability-scanning
|
|
546
|
+
- performing-ai-driven-osint-correlation
|
|
547
|
+
- performing-alert-triage-with-elastic-siem
|
|
548
|
+
- performing-android-app-static-analysis-with-mobsf
|
|
549
|
+
- performing-api-fuzzing-with-restler
|
|
550
|
+
- performing-api-inventory-and-discovery
|
|
551
|
+
- performing-api-rate-limiting-bypass
|
|
552
|
+
- performing-api-security-testing-with-postman
|
|
553
|
+
- performing-arp-spoofing-attack-simulation
|
|
554
|
+
- performing-asset-criticality-scoring-for-vulns
|
|
555
|
+
- performing-authenticated-scan-with-openvas
|
|
556
|
+
- performing-authenticated-vulnerability-scan
|
|
557
|
+
- performing-automated-malware-analysis-with-cape
|
|
558
|
+
- performing-aws-account-enumeration-with-scout-suite
|
|
559
|
+
- performing-aws-privilege-escalation-assessment
|
|
560
|
+
- performing-bandwidth-throttling-attack-simulation
|
|
561
|
+
- performing-binary-exploitation-analysis
|
|
562
|
+
- performing-blind-ssrf-exploitation
|
|
563
|
+
- performing-bluetooth-security-assessment
|
|
564
|
+
- performing-brand-monitoring-for-impersonation
|
|
565
|
+
- performing-clickjacking-attack-test
|
|
566
|
+
- performing-cloud-asset-inventory-with-cartography
|
|
567
|
+
- performing-cloud-forensics-investigation
|
|
568
|
+
- performing-cloud-forensics-with-aws-cloudtrail
|
|
569
|
+
- performing-cloud-incident-containment-procedures
|
|
570
|
+
- performing-cloud-log-forensics-with-athena
|
|
571
|
+
- performing-cloud-native-forensics-with-falco
|
|
572
|
+
- performing-cloud-native-threat-hunting-with-aws-detective
|
|
573
|
+
- performing-cloud-penetration-testing-with-pacu
|
|
574
|
+
- performing-cloud-storage-forensic-acquisition
|
|
575
|
+
- performing-container-escape-detection
|
|
576
|
+
- performing-container-image-hardening
|
|
577
|
+
- performing-container-security-scanning-with-trivy
|
|
578
|
+
- performing-content-security-policy-bypass
|
|
579
|
+
- performing-credential-access-with-lazagne
|
|
580
|
+
- performing-cryptographic-audit-of-application
|
|
581
|
+
- performing-csrf-attack-simulation
|
|
582
|
+
- performing-cve-prioritization-with-kev-catalog
|
|
583
|
+
- performing-dark-web-monitoring-for-threats
|
|
584
|
+
- performing-deception-technology-deployment
|
|
585
|
+
- performing-directory-traversal-testing
|
|
586
|
+
- performing-disk-forensics-investigation
|
|
587
|
+
- performing-dmarc-policy-enforcement-rollout
|
|
588
|
+
- performing-dns-enumeration-and-zone-transfer
|
|
589
|
+
- performing-dns-tunneling-detection
|
|
590
|
+
- performing-docker-bench-security-assessment
|
|
591
|
+
- performing-dynamic-analysis-of-android-app
|
|
592
|
+
- performing-dynamic-analysis-with-any-run
|
|
593
|
+
- performing-endpoint-forensics-investigation
|
|
594
|
+
- performing-endpoint-vulnerability-remediation
|
|
595
|
+
- performing-entitlement-review-with-sailpoint-iiq
|
|
596
|
+
- performing-external-network-penetration-test
|
|
597
|
+
- performing-false-positive-reduction-in-siem
|
|
598
|
+
- performing-file-carving-with-foremost
|
|
599
|
+
- performing-firmware-extraction-with-binwalk
|
|
600
|
+
- performing-firmware-malware-analysis
|
|
601
|
+
- performing-fuzzing-with-aflplusplus
|
|
602
|
+
- performing-gcp-penetration-testing-with-gcpbucketbrute
|
|
603
|
+
- performing-gcp-security-assessment-with-forseti
|
|
604
|
+
- performing-graphql-depth-limit-attack
|
|
605
|
+
- performing-graphql-introspection-attack
|
|
606
|
+
- performing-graphql-security-assessment
|
|
607
|
+
- performing-hardware-security-module-integration
|
|
608
|
+
- performing-hash-cracking-with-hashcat
|
|
609
|
+
- performing-http-parameter-pollution-attack
|
|
610
|
+
- performing-ics-asset-discovery-with-claroty
|
|
611
|
+
- performing-indicator-lifecycle-management
|
|
612
|
+
- performing-initial-access-with-evilginx3
|
|
613
|
+
- performing-insider-threat-investigation
|
|
614
|
+
- performing-ioc-enrichment-automation
|
|
615
|
+
- performing-ios-app-security-assessment
|
|
616
|
+
- performing-iot-security-assessment
|
|
617
|
+
- performing-ip-reputation-analysis-with-shodan
|
|
618
|
+
- performing-jwt-none-algorithm-attack
|
|
619
|
+
- performing-kerberoasting-attack
|
|
620
|
+
- performing-kubernetes-cis-benchmark-with-kube-bench
|
|
621
|
+
- performing-kubernetes-etcd-security-assessment
|
|
622
|
+
- performing-kubernetes-penetration-testing
|
|
623
|
+
- performing-lateral-movement-detection
|
|
624
|
+
- performing-lateral-movement-with-wmiexec
|
|
625
|
+
- performing-linux-log-forensics-investigation
|
|
626
|
+
- performing-log-analysis-for-forensic-investigation
|
|
627
|
+
- performing-log-source-onboarding-in-siem
|
|
628
|
+
- performing-malware-hash-enrichment-with-virustotal
|
|
629
|
+
- performing-malware-ioc-extraction
|
|
630
|
+
- performing-malware-persistence-investigation
|
|
631
|
+
- performing-malware-triage-with-yara
|
|
632
|
+
- performing-memory-forensics-with-volatility3
|
|
633
|
+
- performing-memory-forensics-with-volatility3-plugins
|
|
634
|
+
- performing-mobile-app-certificate-pinning-bypass
|
|
635
|
+
- performing-mobile-device-forensics-with-cellebrite
|
|
636
|
+
- performing-network-forensics-with-wireshark
|
|
637
|
+
- performing-network-packet-capture-analysis
|
|
638
|
+
- performing-network-traffic-analysis-with-tshark
|
|
639
|
+
- performing-network-traffic-analysis-with-zeek
|
|
640
|
+
- performing-nist-csf-maturity-assessment
|
|
641
|
+
- performing-oauth-scope-minimization-review
|
|
642
|
+
- performing-oil-gas-cybersecurity-assessment
|
|
643
|
+
- performing-open-source-intelligence-gathering
|
|
644
|
+
- performing-osint-with-spiderfoot
|
|
645
|
+
- performing-ot-network-security-assessment
|
|
646
|
+
- performing-ot-vulnerability-assessment-with-claroty
|
|
647
|
+
- performing-ot-vulnerability-scanning-safely
|
|
648
|
+
- performing-packet-injection-attack
|
|
649
|
+
- performing-paste-site-monitoring-for-credentials
|
|
650
|
+
- performing-phishing-simulation-with-gophish
|
|
651
|
+
- performing-physical-intrusion-assessment
|
|
652
|
+
- performing-plc-firmware-security-analysis
|
|
653
|
+
- performing-post-quantum-cryptography-migration
|
|
654
|
+
- performing-power-grid-cybersecurity-assessment
|
|
655
|
+
- performing-privacy-impact-assessment
|
|
656
|
+
- performing-privilege-escalation-assessment
|
|
657
|
+
- performing-privilege-escalation-on-linux
|
|
658
|
+
- performing-privileged-account-access-review
|
|
659
|
+
- performing-privileged-account-discovery
|
|
660
|
+
- performing-purple-team-atomic-testing
|
|
661
|
+
- performing-purple-team-exercise
|
|
662
|
+
- performing-ransomware-response
|
|
663
|
+
- performing-ransomware-tabletop-exercise
|
|
664
|
+
- performing-red-team-phishing-with-gophish
|
|
665
|
+
- performing-red-team-with-covenant
|
|
666
|
+
- performing-s7comm-protocol-security-analysis
|
|
667
|
+
- performing-sca-dependency-scanning-with-snyk
|
|
668
|
+
- performing-scada-hmi-security-assessment
|
|
669
|
+
- performing-second-order-sql-injection
|
|
670
|
+
- performing-security-headers-audit
|
|
671
|
+
- performing-serverless-function-security-review
|
|
672
|
+
- performing-service-account-audit
|
|
673
|
+
- performing-service-account-credential-rotation
|
|
674
|
+
- performing-soap-web-service-security-testing
|
|
675
|
+
- performing-soc-tabletop-exercise
|
|
676
|
+
- performing-soc2-type2-audit-preparation
|
|
677
|
+
- performing-sqlite-database-forensics
|
|
678
|
+
- performing-ssl-certificate-lifecycle-management
|
|
679
|
+
- performing-ssl-stripping-attack
|
|
680
|
+
- performing-ssl-tls-inspection-configuration
|
|
681
|
+
- performing-ssl-tls-security-assessment
|
|
682
|
+
- performing-ssrf-vulnerability-exploitation
|
|
683
|
+
- performing-static-malware-analysis-with-pe-studio
|
|
684
|
+
- performing-steganography-detection
|
|
685
|
+
- performing-subdomain-enumeration-with-subfinder
|
|
686
|
+
- performing-supply-chain-attack-simulation
|
|
687
|
+
- performing-thick-client-application-penetration-test
|
|
688
|
+
- performing-threat-emulation-with-atomic-red-team
|
|
689
|
+
- performing-threat-hunting-with-elastic-siem
|
|
690
|
+
- performing-threat-hunting-with-yara-rules
|
|
691
|
+
- performing-threat-intelligence-sharing-with-misp
|
|
692
|
+
- performing-threat-landscape-assessment-for-sector
|
|
693
|
+
- performing-threat-modeling-with-owasp-threat-dragon
|
|
694
|
+
- performing-timeline-reconstruction-with-plaso
|
|
695
|
+
- performing-user-behavior-analytics
|
|
696
|
+
- performing-vlan-hopping-attack
|
|
697
|
+
- performing-vulnerability-scanning-with-nessus
|
|
698
|
+
- performing-web-application-firewall-bypass
|
|
699
|
+
- performing-web-application-penetration-test
|
|
700
|
+
- performing-web-application-scanning-with-nikto
|
|
701
|
+
- performing-web-application-vulnerability-triage
|
|
702
|
+
- performing-web-cache-deception-attack
|
|
703
|
+
- performing-web-cache-poisoning-attack
|
|
704
|
+
- performing-wifi-password-cracking-with-aircrack
|
|
705
|
+
- performing-windows-artifact-analysis-with-eric-zimmerman-tools
|
|
706
|
+
- performing-wireless-network-penetration-test
|
|
707
|
+
- performing-wireless-security-assessment-with-kismet
|
|
708
|
+
- performing-yara-rule-development-for-detection
|
|
709
|
+
- prioritizing-vulnerabilities-with-cvss-scoring
|
|
710
|
+
- processing-stix-taxii-feeds
|
|
711
|
+
- profiling-threat-actor-groups
|
|
712
|
+
- recovering-deleted-files-with-photorec
|
|
713
|
+
- recovering-from-ransomware-attack
|
|
714
|
+
- remediating-s3-bucket-misconfiguration
|
|
715
|
+
- reverse-engineering-android-malware-with-jadx
|
|
716
|
+
- reverse-engineering-dotnet-malware-with-dnspy
|
|
717
|
+
- reverse-engineering-ios-app-with-frida
|
|
718
|
+
- reverse-engineering-malware-with-ghidra
|
|
719
|
+
- reverse-engineering-ransomware-encryption-routine
|
|
720
|
+
- reverse-engineering-rust-malware
|
|
721
|
+
- scanning-container-images-with-grype
|
|
722
|
+
- scanning-containers-with-trivy-in-cicd
|
|
723
|
+
- scanning-docker-images-with-trivy
|
|
724
|
+
- scanning-infrastructure-with-nessus
|
|
725
|
+
- scanning-kubernetes-manifests-with-kubesec
|
|
726
|
+
- scanning-network-with-nmap-advanced
|
|
727
|
+
- securing-api-gateway-with-aws-waf
|
|
728
|
+
- securing-aws-iam-permissions
|
|
729
|
+
- securing-aws-lambda-execution-roles
|
|
730
|
+
- securing-azure-with-microsoft-defender
|
|
731
|
+
- securing-container-registry-images
|
|
732
|
+
- securing-container-registry-with-harbor
|
|
733
|
+
- securing-github-actions-workflows
|
|
734
|
+
- securing-helm-chart-deployments
|
|
735
|
+
- securing-historian-server-in-ot-environment
|
|
736
|
+
- securing-kubernetes-on-cloud
|
|
737
|
+
- securing-remote-access-to-ot-environment
|
|
738
|
+
- securing-serverless-functions
|
|
739
|
+
- testing-android-intents-for-vulnerabilities
|
|
740
|
+
- testing-api-authentication-weaknesses
|
|
741
|
+
- testing-api-for-broken-object-level-authorization
|
|
742
|
+
- testing-api-for-mass-assignment-vulnerability
|
|
743
|
+
- testing-api-security-with-owasp-top-10
|
|
744
|
+
- testing-cors-misconfiguration
|
|
745
|
+
- testing-for-broken-access-control
|
|
746
|
+
- testing-for-business-logic-vulnerabilities
|
|
747
|
+
- testing-for-email-header-injection
|
|
748
|
+
- testing-for-host-header-injection
|
|
749
|
+
- testing-for-json-web-token-vulnerabilities
|
|
750
|
+
- testing-for-open-redirect-vulnerabilities
|
|
751
|
+
- testing-for-sensitive-data-exposure
|
|
752
|
+
- testing-for-xml-injection-vulnerabilities
|
|
753
|
+
- testing-for-xss-vulnerabilities
|
|
754
|
+
- testing-for-xss-vulnerabilities-with-burpsuite
|
|
755
|
+
- testing-for-xxe-injection-vulnerabilities
|
|
756
|
+
- testing-jwt-token-security
|
|
757
|
+
- testing-mobile-api-authentication
|
|
758
|
+
- testing-oauth2-implementation-flaws
|
|
759
|
+
- testing-ransomware-recovery-procedures
|
|
760
|
+
- testing-websocket-api-security
|
|
761
|
+
- tracking-threat-actor-infrastructure
|
|
762
|
+
- triaging-security-alerts-in-splunk
|
|
763
|
+
- triaging-security-incident
|
|
764
|
+
- triaging-security-incident-with-ir-playbook
|
|
765
|
+
- triaging-vulnerabilities-with-ssvc-framework
|
|
766
|
+
- validating-backup-integrity-for-recovery
|
|
767
|
+
# Discovered gems from `cue discover install` — these came in earlier under
|
|
768
|
+
# the wrong upstream (mukul975/Anthropic-Cybersecurity-Skills). They actually
|
|
769
|
+
# live in separate repos, one skill per repo.
|
|
770
|
+
- repo: Zandereins/hydra
|
|
771
|
+
skills:
|
|
772
|
+
- hydra
|
|
773
|
+
- repo: elementalsouls/Claude-OSINT
|
|
774
|
+
skills:
|
|
775
|
+
- Claude-OSINT
|
|
776
|
+
|
|
777
|
+
mcps:
|
|
778
|
+
- agentshield # AgentShield scanner — audit .claude/, settings.json, mcp.json, hooks, agents (scan / scan_summary / list_rules tools)
|
|
779
|
+
- mitre-attack # MITRE ATT&CK knowledge base — 50+ tools for techniques, tactics, threat actors, malware, navigator layers
|
|
780
|
+
- cve-search # Public CVE-Search API (CIRCL) — vendor/product lookup, CVE-by-ID, last-30-days feed
|
|
781
|
+
# Note: shodan/virustotal/urlscan/abuseipdb need free-tier API keys.
|
|
782
|
+
# Add them to a `cybersecurity-soc` child profile that sets the env vars, e.g.:
|
|
783
|
+
# cue new cybersecurity-soc --inherits cybersecurity
|
|
784
|
+
# then add `- shodan`, `- virustotal`, etc.
|