-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattack_effectiveness_matrix.json
More file actions
14224 lines (14224 loc) · 428 KB
/
attack_effectiveness_matrix.json
File metadata and controls
14224 lines (14224 loc) · 428 KB
1
2
3
4
5
6
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_version": "3.1",
"_generated": "2026-04-03",
"_published_under_license": "CC-BY-4.0 (data) + MIT (scripts)",
"_published_at": "2026-04-26",
"_sanitization": "Public release of an internal research matrix. Vendor names in notes have been generalized to architecture categories. Internal tool flags, tool roadmap, and proprietary execution metadata have been removed. See PRIVATE_OMITTED.md in the source repo for the audit log.",
"_description": "Attack effectiveness matrix: maps each vector against protection architectures and config levels. Effectiveness levels: deadly (service failure expected), degraded (partial impact, user-visible), mitigated (absorbed with minor impact), blocked (no impact). Config levels: default (vendor defaults, no tuning), tuned (basic policies configured), hardened (expert-level config, behavioral baselines trained).",
"_notes": [
"This matrix captures effectiveness AGAINST the protection layer, not the origin behind it.",
"For hybrid architectures, effectiveness = min(CDN effectiveness, on-prem effectiveness) for each vector.",
"Cloud CDN/WAF 'typical' and 'max' refer to aggregate provider capacity, not per-customer limits.",
"Protocol-specific vectors (SIP, SMTP, SSH, etc.) only apply to assets running those services.",
"Amplification vectors use bots as reflectors - the amp factor multiplies bot bandwidth.",
"Prerequisites field lists conditions that must be true for the attack to work at stated effectiveness."
],
"architectures": {
"exposed": "No CDN, WAF, or DDoS mitigation. Traffic hits origin directly.",
"cloud_cdn": "Cloud CDN/WAF (Cloudflare, Akamai, Radware Cloud, Imperva, CloudFront). Elastic, distributed.",
"security_waf": "On-prem security WAF (F5 BIG-IP, Check Point, Palo Alto, FortiGate). DPI shares CPU with IPS/AV/SSL.",
"ddos_appliance": "Dedicated DDoS appliance (Radware DefensePro, Arbor, A10 Thunder TPS). Hardware-accelerated, behavioral.",
"hybrid": "Cloud CDN + on-prem appliance. Two layers, CDN absorbs volumetric, appliance handles L7.",
"perimeter_filtered": "Firewall/ACL filtering. Blocks unsolicited traffic but no DDoS-specific mitigation."
},
"config_levels": {
"default": "Vendor defaults. No custom policies, no rate limits configured, no behavioral baselines trained.",
"tuned": "Basic policies: rate limits set, geo-blocking enabled, bot signatures updated, WAF rules active but not customized.",
"hardened": "Expert config: behavioral baselines trained (2+ weeks), custom rate limits per endpoint, challenge pages for suspicious patterns, origin lockdown, header stripping, TLS 1.3 only."
},
"vectors": {
"l3_icmp_flood": {
"name": "ICMP Flood",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Volumetric pipe saturation with ICMP echo packets. Targets ISP uplink bandwidth.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Origin pipe saturates. Hardened: kernel ICMP rate limiting helps but pipe still fills."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy ICMP. Only works if attacker knows origin IP and bypasses CDN."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "WAF drops ICMP but shares pipe with legitimate traffic. High volume still saturates uplink."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware ICMP drop at line rate. Only deadly if volume exceeds appliance rated capacity."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs at edge. ICMP never reaches on-prem."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops ICMP. Pipe saturation still possible with extreme volume."
}
},
"taxonomy_id": "L3-01",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_blacknurse": {
"name": "BlackNurse (ICMP Type 3)",
"layer": "l3",
"category": "L3 Network",
"mechanism": "ICMP Type 3 Code 3 (port unreachable) at moderate rate causes CPU spike on firewalls. Only ~40Kpps needed.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "mitigated",
"notes": "Kernel processes each packet. Hardened: iptables rate limit on ICMP type 3."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't forward ICMP. Requires origin IP."
},
"security_waf": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Firewall CPU processes ICMP unreachable. BlackNurse specifically targets firewall CPUs."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops anomalous ICMP patterns."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs. Never reaches appliance."
},
"perimeter_filtered": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Firewall processes ICMP - this is the exact target of BlackNurse."
}
},
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_icmp_tunnel": {
"name": "ICMP Tunneling",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Encapsulate data in ICMP payloads. Used for C2 exfil, not volumetric DDoS.",
"effectiveness": {
"exposed": {
"default": "degraded",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Low volume, not a DDoS vector per se. Resource drain from processing oversized ICMP."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy ICMP."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "DPI inspects ICMP payloads - CPU cost. Tuned: drop oversized ICMP."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Anomalous ICMP payload detection."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN blocks ICMP."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops ICMP or limits payload size."
}
},
"taxonomy_id": "L3-04",
"type": "technique",
"tool": null,
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_ip_fragment": {
"name": "IP Fragmentation Flood",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Flood with fragmented IP packets. Target must reassemble, consuming CPU and memory. Overlapping fragments cause additional processing.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Kernel fragment reassembly exhausts memory. Hardened: sysctl fragment limits."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN edge drops fragments or reassembles with massive capacity."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "WAF reassembly consumes CPU. Tuned: fragment reassembly limits."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware fragment reassembly at line rate."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN handles at edge."
},
"perimeter_filtered": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "Firewall reassembly. Tuned: drop fragmented packets."
}
},
"taxonomy_id": "L3-05",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_ip_null": {
"name": "IP Null (Protocol 0)",
"layer": "l3",
"category": "L3 Network",
"mechanism": "IP packets with protocol field 0 (HOPOPT). Confuses stateful inspection, may bypass ACLs.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Kernel processes unknown protocol. Tuned: iptables drop non-TCP/UDP/ICMP."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN only proxies HTTP/HTTPS."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "DPI attempts to classify. Tuned: explicit protocol whitelist."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops unknown protocols."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN blocks at edge."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops non-standard protocols."
}
},
"taxonomy_id": "L3-07",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_gre_flood": {
"name": "GRE Tunnel Flood",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Flood with GRE (protocol 47) packets. Targets tunnel endpoints and pipe bandwidth.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Pipe saturation. Hardened: drop GRE if not used."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy GRE."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "WAF processes GRE decap. Tuned: drop if no GRE tunnels configured."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware GRE rate limiting."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops GRE unless explicitly allowed."
}
},
"taxonomy_id": "L3-09",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_esp_flood": {
"name": "ESP Flood (IPSec)",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Flood with ESP (protocol 50) packets. Targets IPSec VPN endpoints.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "If VPN endpoint: crypto processing exhaustion. If not: kernel drops but pipe fills."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy ESP."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "Firewall processes ESP for VPN. Tuned: rate limit ESP, drop if no VPN."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops non-VPN ESP."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops ESP unless VPN configured."
}
},
"taxonomy_id": "L3-10",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_ah_flood": {
"name": "AH Flood (IPSec)",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Flood with AH (protocol 51) packets. Similar to ESP but targets authentication header processing.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Same as ESP flood."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy AH."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "Same as ESP."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops."
}
},
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_ipip_flood": {
"name": "IP-in-IP Tunnel Flood",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Flood with IP-in-IP (protocol 4) encapsulated packets. Targets tunnel decapsulation.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Kernel decap processing. Hardened: drop protocol 4 if unused."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "DPI on encapsulated packets. Tuned: drop if unused."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops."
}
},
"taxonomy_id": "L3-11",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_ipv6ip_flood": {
"name": "IPv6-in-IPv4 Flood",
"layer": "l3",
"category": "L3 Network",
"mechanism": "IPv6 packets tunneled in IPv4 (protocol 41). Targets 6-to-4 gateways.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "degraded",
"hardened": "mitigated",
"notes": "Gateway processing. Hardened: drop protocol 41 if no 6to4."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't proxy."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "Firewall may not inspect inner IPv6. Tuned: drop."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops."
}
},
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l3_mpls_flood": {
"name": "MPLS Flood",
"layer": "l3",
"category": "L3 Network",
"mechanism": "Flood with MPLS-labeled packets targeting label switch routers.",
"effectiveness": {
"exposed": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "Only effective against MPLS-enabled routers. Most servers drop silently."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN doesn't forward MPLS."
},
"security_waf": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "WAF drops non-IP."
},
"ddos_appliance": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Firewall drops non-IP."
}
},
"taxonomy_id": "L3-12",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC",
"MHDDoS",
"PyFlooder",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"MHDDoS_proxy"
],
"advanced": [
"raw-socket toolkit",
"custom C/Go raw sockets",
"DPDK/XDP kernel bypass"
]
}
},
"l4_syn_flood": {
"name": "SYN Flood",
"layer": "l4",
"category": "L4 TCP",
"mechanism": "Spoofed SYN packets exhaust TCP connection table (SYN backlog). Classic volumetric + state exhaustion.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Connection table fills. Hardened: SYN cookies, increased backlog, but pipe still saturates."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN terminates TCP. SYN flood never reaches origin."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "SYN proxy/cookies on WAF. But WAF connection table is finite and shared."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware SYN proxy at line rate. Designed for this exact attack."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN terminates TCP at edge."
},
"perimeter_filtered": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "Firewall SYN proxy. Limited connection table."
}
},
"taxonomy_id": "L4-01",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC (TCP mode)",
"MHDDoS",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"Mirai variants"
],
"advanced": [
"raw-socket toolkit",
"custom C with raw sockets"
]
}
},
"l4_synack_flood": {
"name": "SYN-ACK Flood (Reflection)",
"layer": "l4",
"category": "L4 TCP",
"mechanism": "Spoofed SYN to reflectors causes SYN-ACK flood to victim. Bypasses ingress SYN filtering.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Victim receives SYN-ACK for connections it never initiated. Confuses stateful firewalls."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN drops unsolicited SYN-ACK."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "Stateful firewall confused by unsolicited SYN-ACK. Tuned: strict TCP state tracking."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Behavioral detection of SYN-ACK without matching SYN."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN terminates at edge."
},
"perimeter_filtered": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "Stateful firewall should drop. May still consume CPU on state lookup."
}
},
"taxonomy_id": "L4-02",
"type": "technique",
"tool": null,
"common_tools": {
"script_kiddie": [
"LOIC (TCP mode)",
"MHDDoS",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"Mirai variants"
],
"advanced": [
"raw-socket toolkit",
"custom C with raw sockets"
]
}
},
"l4_ack_flood": {
"name": "ACK Flood",
"layer": "l4",
"category": "L4 TCP",
"mechanism": "Spoofed ACK packets bypass SYN proxy (already 'established'). Target wastes CPU on state lookup for non-existent connections.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Kernel searches connection table for each ACK. High PPS = CPU exhaustion."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN drops ACK without matching connection."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "WAF state table lookup for each ACK. Tuned: strict state tracking drops faster."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware state tracking at line rate."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN drops at edge."
},
"perimeter_filtered": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "Firewall state lookup. Tuned: drop ACK without SYN."
}
},
"taxonomy_id": "L4-03",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC (TCP mode)",
"MHDDoS",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",
"Mirai variants"
],
"advanced": [
"raw-socket toolkit",
"custom C with raw sockets"
]
}
},
"l4_fin_flood": {
"name": "FIN Flood",
"layer": "l4",
"category": "L4 TCP",
"mechanism": "Spoofed FIN packets. Similar to ACK flood - forces state table lookup.",
"effectiveness": {
"exposed": {
"default": "deadly",
"tuned": "deadly",
"hardened": "degraded",
"notes": "Same as ACK flood mechanism."
},
"cloud_cdn": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN drops."
},
"security_waf": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "mitigated",
"notes": "Same as ACK."
},
"ddos_appliance": {
"default": "mitigated",
"tuned": "blocked",
"hardened": "blocked",
"notes": "Hardware drops."
},
"hybrid": {
"default": "blocked",
"tuned": "blocked",
"hardened": "blocked",
"notes": "CDN absorbs."
},
"perimeter_filtered": {
"default": "degraded",
"tuned": "mitigated",
"hardened": "blocked",
"notes": "Firewall state lookup."
}
},
"taxonomy_id": "L4-04",
"type": "technique",
"tool_category": "raw-socket-l3l4",
"common_tools": {
"script_kiddie": [
"LOIC (TCP mode)",
"MHDDoS",
"XERXES"
],
"intermediate": [
"hping3",
"nping",
"Scapy",