-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtech_score.json
5371 lines (5371 loc) · 126 KB
/
tech_score.json
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
{
"T1531": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Windows event logs",
"Process command-line parameters",
"Process monitoring"
],
"name": "Account Access Removal",
"tech_score": 0.2777777777777778
},
"T1506": {
"Tactic": [
"defense-evasion",
"lateral-movement"
],
"Platform": [
"Office 365",
"SaaS"
],
"Permissions Required": [],
"Data Sources": [
"Authentication logs",
"Office 365 account logs"
],
"name": "Web Session Cookie",
"tech_score": 0.2777777777777778
},
"T1539": {
"Tactic": [
"credential-access"
],
"Platform": [
"Linux",
"macOS",
"Windows",
"Office 365",
"SaaS"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"File monitoring",
"API monitoring"
],
"name": "Steal Web Session Cookie",
"tech_score": 0.046296296296296294
},
"T1529": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Windows event logs",
"Process command-line parameters",
"Process monitoring"
],
"name": "System Shutdown/Reboot",
"tech_score": 0.27808315237061165
},
"T1519": {
"Tactic": [
"persistence",
"privilege-escalation"
],
"Platform": [
"macOS"
],
"Permissions Required": [
"Administrator"
],
"Data Sources": [
"File monitoring",
"API monitoring"
],
"name": "Emond",
"tech_score": 0.037037037037037035
},
"T1518": {
"Tactic": [
"discovery"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator"
],
"Data Sources": [
"Process command-line parameters",
"Process monitoring",
"File monitoring"
],
"name": "Software Discovery",
"tech_score": 0.08333333333333333
},
"T1534": {
"Tactic": [
"lateral-movement"
],
"Platform": [
"Windows",
"macOS",
"Linux",
"Office 365",
"SaaS"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"SSL/TLS inspection",
"DNS records",
"Anti-virus",
"Web proxy",
"File monitoring",
"Mail server",
"Office 365 trace logs"
],
"name": "Internal Spearphishing",
"tech_score": 0.046296296296296294
},
"T1528": {
"Tactic": [
"credential-access"
],
"Platform": [
"SaaS",
"Office 365",
"Azure AD"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Azure activity logs",
"OAuth audit logs"
],
"name": "Steal Application Access Token",
"tech_score": 0.027777777777777776
},
"T1522": {
"Tactic": [
"credential-access"
],
"Platform": [
"AWS",
"GCP",
"Azure"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Azure activity logs",
"AWS CloudTrail logs",
"Authentication logs"
],
"name": "Cloud Instance Metadata API",
"tech_score": 0.027777777777777776
},
"T1536": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"AWS",
"GCP",
"Azure"
],
"Permissions Required": [
"User",
"Administrator"
],
"Data Sources": [
"Azure OS logs",
"AWS CloudTrail logs",
"Azure activity logs",
"Stackdriver logs",
"AWS OS logs"
],
"name": "Revert Cloud Instance",
"tech_score": 0.08333333333333333
},
"T1535": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"AWS",
"GCP",
"Azure"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Stackdriver logs",
"Azure activity logs",
"AWS CloudTrail logs"
],
"name": "Unused/Unsupported Cloud Regions",
"tech_score": 0.027777777777777776
},
"T1525": {
"Tactic": [
"persistence"
],
"Platform": [
"GCP",
"Azure",
"AWS"
],
"Permissions Required": [
"User"
],
"Data Sources": [],
"name": "Implant Container Image",
"tech_score": 0.027777777777777776
},
"T1538": {
"Tactic": [
"discovery"
],
"Platform": [
"AWS",
"GCP",
"Azure",
"Azure AD",
"Office 365"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Office 365 audit logs",
"Azure activity logs",
"Stackdriver logs",
"AWS CloudTrail logs"
],
"name": "Cloud Service Dashboard",
"tech_score": 0.046296296296296294
},
"T1530": {
"Tactic": [
"collection"
],
"Platform": [
"AWS",
"GCP",
"Azure"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Stackdriver logs",
"Azure activity logs",
"AWS CloudTrail logs"
],
"name": "Data from Cloud Storage Object",
"tech_score": 0.027777777777777776
},
"T1537": {
"Tactic": [
"exfiltration"
],
"Platform": [
"Azure",
"AWS",
"GCP"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Stackdriver logs",
"Azure activity logs",
"AWS CloudTrail logs"
],
"name": "Transfer Data to Cloud Account",
"tech_score": 0.027777777777777776
},
"T1526": {
"Tactic": [
"discovery"
],
"Platform": [
"AWS",
"GCP",
"Azure",
"Azure AD",
"Office 365",
"SaaS"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Azure activity logs",
"Stackdriver logs",
"AWS CloudTrail logs"
],
"name": "Cloud Service Discovery",
"tech_score": 0.05555555555555555
},
"T1527": {
"Tactic": [
"defense-evasion",
"lateral-movement"
],
"Platform": [
"SaaS",
"Office 365"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"OAuth audit logs",
"Office 365 account logs"
],
"name": "Application Access Token",
"tech_score": 0.037037037037037035
},
"T1514": {
"Tactic": [
"privilege-escalation"
],
"Platform": [
"macOS"
],
"Permissions Required": [
"Administrator",
"User"
],
"Data Sources": [
"File monitoring",
"Process monitoring",
"API monitoring"
],
"name": "Elevated Execution with Prompt",
"tech_score": 0.027777777777777776
},
"T1505": {
"Tactic": [
"persistence"
],
"Platform": [
"Windows",
"Linux"
],
"Permissions Required": [
"Administrator",
"SYSTEM",
"root"
],
"Data Sources": [
"File monitoring",
"Application logs"
],
"name": "Server Software Component",
"tech_score": 0.16666666666666666
},
"T1503": {
"Tactic": [
"credential-access"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Process monitoring",
"PowerShell logs",
"File monitoring",
"API monitoring"
],
"name": "Credentials from Web Browsers",
"tech_score": 0.030717446990402734
},
"T1504": {
"Tactic": [
"persistence",
"privilege-escalation"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"User",
"Administrator"
],
"Data Sources": [
"Process monitoring",
"File monitoring",
"PowerShell logs"
],
"name": "PowerShell Profile",
"tech_score": 0.05555555555555555
},
"T1502": {
"Tactic": [
"defense-evasion",
"privilege-escalation"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"User",
"Administrator"
],
"Data Sources": [
"Windows event logs",
"Process monitoring",
"API monitoring"
],
"name": "Parent PID Spoofing",
"tech_score": 0.05555555555555555
},
"T1500": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Process command-line parameters",
"Process monitoring",
"File monitoring"
],
"name": "Compile After Delivery",
"tech_score": 0.02781170828809265
},
"T1501": {
"Tactic": [
"persistence"
],
"Platform": [
"Linux"
],
"Permissions Required": [
"root",
"User"
],
"Data Sources": [
"Process command-line parameters",
"Process monitoring",
"File monitoring"
],
"name": "Systemd Service",
"tech_score": 0.037037037037037035
},
"T1499": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [],
"Data Sources": [
"SSL/TLS inspection",
"Web logs",
"Web application firewall logs",
"Network intrusion detection system",
"Network protocol analysis",
"Network device logs",
"Netflow/Enclave netflow"
],
"name": "Endpoint Denial of Service",
"tech_score": 0.037037037037037035
},
"T1497": {
"Tactic": [
"defense-evasion",
"discovery"
],
"Platform": [
"Windows",
"macOS"
],
"Permissions Required": [],
"Data Sources": [
"Process monitoring",
"Process command-line parameters"
],
"name": "Virtualization/Sandbox Evasion",
"tech_score": 0.03904478723359999
},
"T1498": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [],
"Data Sources": [
"Sensor health and status",
"Network protocol analysis",
"Netflow/Enclave netflow",
"Network intrusion detection system",
"Network device logs"
],
"name": "Network Denial of Service",
"tech_score": 0.037037037037037035
},
"T1496": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows",
"AWS",
"GCP",
"Azure"
],
"Permissions Required": [
"User",
"Administrator"
],
"Data Sources": [
"Azure activity logs",
"Stackdriver logs",
"AWS CloudTrail logs",
"Process use of network",
"Process monitoring",
"Network protocol analysis",
"Network device logs"
],
"name": "Resource Hijacking",
"tech_score": 0.16666666666666666
},
"T1495": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"BIOS",
"Component firmware"
],
"name": "Firmware Corruption",
"tech_score": 0.25
},
"T1494": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"File monitoring",
"Process monitoring"
],
"name": "Runtime Data Manipulation",
"tech_score": 0.2777777777777778
},
"T1493": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Packet capture",
"Network protocol analysis"
],
"name": "Transmitted Data Manipulation",
"tech_score": 0.27781170828809265
},
"T1492": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Application logs",
"File monitoring"
],
"name": "Stored Data Manipulation",
"tech_score": 0.2777777777777778
},
"T1491": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [],
"Data Sources": [
"Packet capture",
"Web application firewall logs",
"Web logs",
"Packet capture"
],
"name": "Defacement",
"tech_score": 0.2777777777777778
},
"T1490": {
"Tactic": [
"impact"
],
"Platform": [
"Windows",
"macOS",
"Linux"
],
"Permissions Required": [
"Administrator",
"root",
"SYSTEM",
"User"
],
"Data Sources": [
"Windows Registry",
"Services",
"Windows event logs",
"Process command-line parameters",
"Process monitoring"
],
"name": "Inhibit System Recovery",
"tech_score": 0.2777777777777778
},
"T1489": {
"Tactic": [
"impact"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"Administrator",
"SYSTEM",
"User"
],
"Data Sources": [
"Process command-line parameters",
"Process monitoring",
"Windows Registry",
"API monitoring"
],
"name": "Service Stop",
"tech_score": 0.06491660634575944
},
"T1488": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Kernel drivers",
"Process monitoring",
"Process command-line parameters"
],
"name": "Disk Content Wipe",
"tech_score": 0.2779913059892421
},
"T1487": {
"Tactic": [
"impact"
],
"Platform": [
"Windows",
"macOS",
"Linux"
],
"Permissions Required": [
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Kernel drivers",
"MBR"
],
"name": "Disk Structure Wipe",
"tech_score": 0.2507423761653375
},
"T1486": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"Kernel drivers",
"File monitoring",
"Process command-line parameters",
"Process monitoring"
],
"name": "Data Encrypted for Impact",
"tech_score": 0.27869390155627943
},
"T1485": {
"Tactic": [
"impact"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User",
"Administrator",
"root",
"SYSTEM"
],
"Data Sources": [
"File monitoring",
"Process command-line parameters",
"Process monitoring"
],
"name": "Data Destruction",
"tech_score": 0.27903905674741347
},
"T1484": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"Administrator",
"User"
],
"Data Sources": [
"Windows event logs"
],
"name": "Group Policy Modification",
"tech_score": 0.027777777777777776
},
"T1483": {
"Tactic": [
"command-and-control"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Process use of network",
"Packet capture",
"Network device logs",
"Netflow/Enclave netflow",
"DNS records"
],
"name": "Domain Generation Algorithms",
"tech_score": 0.027981360839667027
},
"T1482": {
"Tactic": [
"discovery"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"PowerShell logs",
"API monitoring",
"Process command-line parameters",
"Process monitoring"
],
"name": "Domain Trust Discovery",
"tech_score": 0.009259259259259259
},
"T1480": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"Linux",
"macOS",
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Process monitoring"
],
"name": "Execution Guardrails",
"tech_score": 0.027777777777777776
},
"T1222": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"Linux",
"Windows",
"macOS"
],
"Permissions Required": [
"User",
"Administrator",
"SYSTEM",
"root"
],
"Data Sources": [
"File monitoring",
"Process monitoring",
"Process command-line parameters",
"Windows event logs"
],
"name": "File and Directory Permissions Modification",
"tech_score": 0.27787956930872243
},
"T1223": {
"Tactic": [
"defense-evasion",
"execution"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"File monitoring",
"Process monitoring",
"Process command-line parameters"
],
"name": "Compiled HTML File",
"tech_score": 0.018688171070092893
},
"T1221": {
"Tactic": [
"defense-evasion"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Anti-virus",
"Email gateway",
"Network intrusion detection system",
"Web logs"
],
"name": "Template Injection",
"tech_score": 0.009259259259259259
},
"T1220": {
"Tactic": [
"defense-evasion",
"execution"
],
"Platform": [
"Windows"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"Process monitoring",
"Process command-line parameters",
"Process use of network",
"DLL monitoring"
],
"name": "XSL Script Processing",
"tech_score": 0.018552449028833393
},
"T1217": {
"Tactic": [
"discovery"
],
"Platform": [
"Linux",
"Windows",
"macOS"
],
"Permissions Required": [
"User"
],
"Data Sources": [
"API monitoring",
"File monitoring",
"Process command-line parameters",
"Process monitoring"
],
"name": "Browser Bookmark Discovery",
"tech_score": 0.027777777777777776