-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMitre2Datatables.json
3458 lines (3458 loc) · 64.1 KB
/
Mitre2Datatables.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
[
[
"T1589-Gather Victim Identity Information",
"T1583-Acquire Infrastructure",
"T1078-Valid Accounts",
"T1028-Windows Remote Management",
"T1004-Winlogon Helper DLL",
"T1013-Port Monitors",
"T1006-Direct Volume Access",
"T1003-OS Credential Dumping",
"T1007-System Service Discovery",
"T1017-Application Deployment Software",
"T1005-Data from Local System",
"T1001-Data Obfuscation",
"T1002-Data Compressed",
"T1485-Data Destruction"
],
[
"T1589.001-Credentials",
"T1583.001-Domains",
"T1078.001-Default Accounts",
"T1035-Service Execution",
"T1013-Port Monitors",
"T1015-Accessibility Features",
"T1009-Binary Padding",
"T1003.001-LSASS Memory",
"T1010-Application Window Discovery",
"T1021-Remote Services",
"T1025-Data from Removable Media",
"T1001.001-Junk Data",
"T1011-Exfiltration Over Other Network Medium",
"T1486-Data Encrypted for Impact"
],
[
"T1589.002-Email Addresses",
"T1583.002-DNS Server",
"T1078.002-Domain Accounts",
"T1047-Windows Management Instrumentation",
"T1015-Accessibility Features",
"T1034-Path Interception",
"T1014-Rootkit",
"T1003.002-Security Account Manager",
"T1012-Query Registry",
"T1021.001-Remote Desktop Protocol",
"T1039-Data from Network Shared Drive",
"T1001.002-Steganography",
"T1011.001-Exfiltration Over Bluetooth",
"T1487-Disk Structure Wipe"
],
[
"T1589.003-Employee Names",
"T1583.003-Virtual Private Server",
"T1078.003-Local Accounts",
"T1053-Scheduled Task/Job",
"T1019-System Firmware",
"T1037-Boot or Logon Initialization Scripts",
"T1027-Obfuscated Files or Information",
"T1003.003-NTDS",
"T1016-System Network Configuration Discovery",
"T1021.002-SMB/Windows Admin Shares",
"T1056-Input Capture",
"T1001.003-Protocol Impersonation",
"T1020-Automated Exfiltration",
"T1488-Disk Content Wipe"
],
[
"T1590-Gather Victim Network Information",
"T1583.004-Server",
"T1078.004-Cloud Accounts",
"T1053.001-At (Linux)",
"T1023-Shortcut Modification",
"T1037.001-Logon Script (Windows)",
"T1027.001-Binary Padding",
"T1003.004-LSA Secrets",
"T1016.001-Internet Connection Discovery",
"T1021.003-Distributed Component Object Model",
"T1056.001-Keylogging",
"T1008-Fallback Channels",
"T1020.001-Traffic Duplication",
"T1489-Service Stop"
],
[
"T1590.001-Domain Properties",
"T1583.005-Botnet",
"T1091-Replication Through Removable Media",
"T1053.002-At",
"T1031-Modify Existing Service",
"T1037.002-Login Hook",
"T1027.002-Software Packing",
"T1003.005-Cached Domain Credentials",
"T1018-Remote System Discovery",
"T1021.004-SSH",
"T1056.002-GUI Input Capture",
"T1024-Custom Cryptographic Protocol",
"T1022-Data Encrypted",
"T1490-Inhibit System Recovery"
],
[
"T1590.002-DNS",
"T1583.006-Web Services",
"T1133-External Remote Services",
"T1053.003-Cron",
"T1034-Path Interception",
"T1037.003-Network Logon Script",
"T1027.003-Steganography",
"T1003.006-DCSync",
"T1033-System Owner/User Discovery",
"T1021.005-VNC",
"T1056.003-Web Portal Capture",
"T1026-Multiband Communication",
"T1029-Scheduled Transfer",
"T1491-Defacement"
],
[
"T1590.003-Network Trust Dependencies",
"T1584-Compromise Infrastructure",
"T1189-Drive-by Compromise",
"T1053.004-Launchd",
"T1037-Boot or Logon Initialization Scripts",
"T1037.004-RC Scripts",
"T1027.004-Compile After Delivery",
"T1003.007-Proc Filesystem",
"T1040-Network Sniffing",
"T1021.006-Windows Remote Management",
"T1056.004-Credential API Hooking",
"T1032-Standard Cryptographic Protocol",
"T1030-Data Transfer Size Limits",
"T1491.001-Internal Defacement"
],
[
"T1590.004-Network Topology",
"T1584.001-Domains",
"T1190-Exploit Public-Facing Application",
"T1053.005-Scheduled Task",
"T1037.001-Logon Script (Windows)",
"T1037.005-Startup Items",
"T1027.005-Indicator Removal from Tools",
"T1003.008-/etc/passwd and /etc/shadow",
"T1046-Network Service Discovery",
"T1028-Windows Remote Management",
"T1074-Data Staged",
"T1043-Commonly Used Port",
"T1041-Exfiltration Over C2 Channel",
"T1491.002-External Defacement"
],
[
"T1590.005-IP Addresses",
"T1584.002-DNS Server",
"T1192-Spearphishing Link",
"T1053.006-Systemd Timers",
"T1037.002-Login Hook",
"T1038-DLL Search Order Hijacking",
"T1027.006-HTML Smuggling",
"T1040-Network Sniffing",
"T1049-System Network Connections Discovery",
"T1051-Shared Webroot",
"T1074.001-Local Data Staging",
"T1065-Uncommonly Used Port",
"T1048-Exfiltration Over Alternative Protocol",
"T1492-Stored Data Manipulation"
],
[
"T1590.006-Network Security Appliances",
"T1584.003-Virtual Private Server",
"T1193-Spearphishing Attachment",
"T1053.007-Container Orchestration Job",
"T1037.003-Network Logon Script",
"T1044-File System Permissions Weakness",
"T1036-Masquerading",
"T1056-Input Capture",
"T1057-Process Discovery",
"T1072-Software Deployment Tools",
"T1074.002-Remote Data Staging",
"T1071-Application Layer Protocol",
"T1048.001-Exfiltration Over Symmetric Encrypted Non-C2 Protocol",
"T1493-Transmitted Data Manipulation"
],
[
"T1591-Gather Victim Org Information",
"T1584.004-Server",
"T1194-Spearphishing via Service",
"T1059-Command and Scripting Interpreter",
"T1037.004-RC Scripts",
"T1050-New Service",
"T1036.001-Invalid Code Signature",
"T1056.001-Keylogging",
"T1063-Security Software Discovery",
"T1075-Pass the Hash",
"T1113-Screen Capture",
"T1071.001-Web Protocols",
"T1048.002-Exfiltration Over Asymmetric Encrypted Non-C2 Protocol",
"T1494-Runtime Data Manipulation"
],
[
"T1591.001-Determine Physical Locations",
"T1584.005-Botnet",
"T1195-Supply Chain Compromise",
"T1059.001-PowerShell",
"T1037.005-Startup Items",
"T1053-Scheduled Task/Job",
"T1036.002-Right-to-Left Override",
"T1056.002-GUI Input Capture",
"T1069-Permission Groups Discovery",
"T1076-Remote Desktop Protocol",
"T1114-Email Collection",
"T1071.002-File Transfer Protocols",
"T1048.003-Exfiltration Over Unencrypted Non-C2 Protocol",
"T1495-Firmware Corruption"
],
[
"T1591.002-Business Relationships",
"T1584.006-Web Services",
"T1195.001-Compromise Software Dependencies and Development Tools",
"T1059.002-AppleScript",
"T1038-DLL Search Order Hijacking",
"T1053.001-At (Linux)",
"T1036.003-Rename System Utilities",
"T1056.003-Web Portal Capture",
"T1069.001-Local Groups",
"T1077-Windows Admin Shares",
"T1114.001-Local Email Collection",
"T1071.003-Mail Protocols",
"T1052-Exfiltration Over Physical Medium",
"T1496-Resource Hijacking"
],
[
"T1591.003-Identify Business Tempo",
"T1585-Establish Accounts",
"T1195.002-Compromise Software Supply Chain",
"T1059.003-Windows Command Shell",
"T1042-Change Default File Association",
"T1053.002-At",
"T1036.004-Masquerade Task or Service",
"T1056.004-Credential API Hooking",
"T1069.002-Domain Groups",
"T1080-Taint Shared Content",
"T1114.002-Remote Email Collection",
"T1071.004-DNS",
"T1052.001-Exfiltration over USB",
"T1498-Network Denial of Service"
],
[
"T1591.004-Identify Roles",
"T1585.001-Social Media Accounts",
"T1195.003-Compromise Hardware Supply Chain",
"T1059.004-Unix Shell",
"T1044-File System Permissions Weakness",
"T1053.003-Cron",
"T1036.005-Match Legitimate Name or Location",
"T1081-Credentials in Files",
"T1069.003-Cloud Groups",
"T1091-Replication Through Removable Media",
"T1114.003-Email Forwarding Rule",
"T1079-Multilayer Encryption",
"T1537-Transfer Data to Cloud Account",
"T1498.001-Direct Network Flood"
],
[
"T1592-Gather Victim Host Information",
"T1585.002-Email Accounts",
"T1199-Trusted Relationship",
"T1059.005-Visual Basic",
"T1050-New Service",
"T1053.004-Launchd",
"T1036.006-Space after Filename",
"T1110-Brute Force",
"T1082-System Information Discovery",
"T1097-Pass the Ticket",
"T1115-Clipboard Data",
"T1090-Proxy",
"T1567-Exfiltration Over Web Service",
"T1498.002-Reflection Amplification"
],
[
"T1592.001-Hardware",
"T1586-Compromise Accounts",
"T1200-Hardware Additions",
"T1059.006-Python",
"T1053-Scheduled Task/Job",
"T1053.005-Scheduled Task",
"T1036.007-Double File Extension",
"T1110.001-Password Guessing",
"T1083-File and Directory Discovery",
"T1175-Component Object Model and Distributed COM",
"T1119-Automated Collection",
"T1090.001-Internal Proxy",
"T1567.001-Exfiltration to Code Repository",
"T1499-Endpoint Denial of Service"
],
[
"T1592.002-Software",
"T1586.001-Social Media Accounts",
"T1566-Phishing",
"T1059.007-JavaScript",
"T1053.001-At (Linux)",
"T1053.006-Systemd Timers",
"T1038-DLL Search Order Hijacking",
"T1110.002-Password Cracking",
"T1087-Account Discovery",
"T1184-SSH Hijacking",
"T1123-Audio Capture",
"T1090.002-External Proxy",
"T1567.002-Exfiltration to Cloud Storage",
"T1499.001-OS Exhaustion Flood"
],
[
"T1592.003-Firmware",
"T1586.002-Email Accounts",
"T1566.001-Spearphishing Attachment",
"T1059.008-Network Device CLI",
"T1053.002-At",
"T1053.007-Container Orchestration Job",
"T1045-Software Packing",
"T1110.003-Password Spraying",
"T1087.001-Local Account",
"T1210-Exploitation of Remote Services",
"T1125-Video Capture",
"T1090.003-Multi-hop Proxy",
"",
"T1499.002-Service Exhaustion Flood"
],
[
"T1592.004-Client Configurations",
"T1587-Develop Capabilities",
"T1566.002-Spearphishing Link",
"T1061-Graphical User Interface",
"T1053.003-Cron",
"T1055-Process Injection",
"T1054-Indicator Blocking",
"T1110.004-Credential Stuffing",
"T1087.002-Domain Account",
"T1506-Web Session Cookie",
"T1185-Browser Session Hijacking",
"T1090.004-Domain Fronting",
"",
"T1499.003-Application Exhaustion Flood"
],
[
"T1593-Search Open Websites/Domains",
"T1587.001-Malware",
"T1566.003-Spearphishing via Service",
"T1064-Scripting",
"T1053.004-Launchd",
"T1055.001-Dynamic-link Library Injection",
"T1055-Process Injection",
"T1111-Multi-Factor Authentication Interception",
"T1087.003-Email Account",
"T1527-Application Access Token",
"T1213-Data from Information Repositories",
"T1092-Communication Through Removable Media",
"",
"T1499.004-Application or System Exploitation"
],
[
"T1593.001-Social Media",
"T1587.002-Code Signing Certificates",
"",
"T1072-Software Deployment Tools",
"T1053.005-Scheduled Task",
"T1055.002-Portable Executable Injection",
"T1055.001-Dynamic-link Library Injection",
"T1139-Bash History",
"T1087.004-Cloud Account",
"T1534-Internal Spearphishing",
"T1213.001-Confluence",
"T1094-Custom Command and Control Protocol",
"",
"T1529-System Shutdown/Reboot"
],
[
"T1593.002-Search Engines",
"T1587.003-Digital Certificates",
"",
"T1085-Rundll32",
"T1053.006-Systemd Timers",
"T1055.003-Thread Execution Hijacking",
"T1055.002-Portable Executable Injection",
"T1141-Input Prompt",
"T1120-Peripheral Device Discovery",
"T1550-Use Alternate Authentication Material",
"T1213.002-Sharepoint",
"T1095-Non-Application Layer Protocol",
"",
"T1531-Account Access Removal"
],
[
"T1594-Search Victim-Owned Websites",
"T1587.004-Exploits",
"",
"T1086-PowerShell",
"T1053.007-Container Orchestration Job",
"T1055.004-Asynchronous Procedure Call",
"T1055.003-Thread Execution Hijacking",
"T1142-Keychain",
"T1124-System Time Discovery",
"T1550.001-Application Access Token",
"T1213.003-Code Repositories",
"T1102-Web Service",
"",
"T1561-Disk Wipe"
],
[
"T1595-Active Scanning",
"T1588-Obtain Capabilities",
"",
"T1106-Native API",
"T1058-Service Registry Permissions Weakness",
"T1055.005-Thread Local Storage",
"T1055.004-Asynchronous Procedure Call",
"T1145-Private Keys",
"T1135-Network Share Discovery",
"T1550.002-Pass the Hash",
"T1530-Data from Cloud Storage Object",
"T1102.001-Dead Drop Resolver",
"",
"T1561.001-Disk Content Wipe"
],
[
"T1595.001-Scanning IP Blocks",
"T1588.001-Malware",
"",
"T1117-Regsvr32",
"T1060-Registry Run Keys / Startup Folder",
"T1055.008-Ptrace System Calls",
"T1055.005-Thread Local Storage",
"T1167-Securityd Memory",
"T1201-Password Policy Discovery",
"T1550.003-Pass the Ticket",
"T1557-Adversary-in-the-Middle",
"T1102.002-Bidirectional Communication",
"",
"T1561.002-Disk Structure Wipe"
],
[
"T1595.002-Vulnerability Scanning",
"T1588.002-Tool",
"",
"T1118-InstallUtil",
"T1062-Hypervisor",
"T1055.009-Proc Memory",
"T1055.008-Ptrace System Calls",
"T1171-LLMNR/NBT-NS Poisoning and Relay",
"T1217-Browser Bookmark Discovery",
"T1550.004-Web Session Cookie",
"T1557.001-LLMNR/NBT-NS Poisoning and SMB Relay",
"T1102.003-One-Way Communication",
"",
"T1565-Data Manipulation"
],
[
"T1595.003-Wordlist Scanning",
"T1588.003-Code Signing Certificates",
"",
"T1121-Regsvcs/Regasm",
"T1067-Bootkit",
"T1055.011-Extra Window Memory Injection",
"T1055.009-Proc Memory",
"T1174-Password Filter DLL",
"T1482-Domain Trust Discovery",
"T1563-Remote Service Session Hijacking",
"T1557.002-ARP Cache Poisoning",
"T1104-Multi-Stage Channels",
"",
"T1565.001-Stored Data Manipulation"
],
[
"T1596-Search Open Technical Databases",
"T1588.004-Digital Certificates",
"",
"T1129-Shared Modules",
"T1078-Valid Accounts",
"T1055.012-Process Hollowing",
"T1055.011-Extra Window Memory Injection",
"T1179-Hooking",
"T1497-Virtualization/Sandbox Evasion",
"T1563.001-SSH Hijacking",
"T1557.003-DHCP Spoofing",
"T1105-Ingress Tool Transfer",
"",
"T1565.002-Transmitted Data Manipulation"
],
[
"T1596.001-DNS/Passive DNS",
"T1588.005-Exploits",
"",
"T1151-Space after Filename",
"T1078.001-Default Accounts",
"T1055.013-Process Doppelgänging",
"T1055.012-Process Hollowing",
"T1187-Forced Authentication",
"T1497.001-System Checks",
"T1563.002-RDP Hijacking",
"T1560-Archive Collected Data",
"T1132-Data Encoding",
"",
"T1565.003-Runtime Data Manipulation"
],
[
"T1596.002-WHOIS",
"T1588.006-Vulnerabilities",
"",
"T1152-Launchctl",
"T1078.002-Domain Accounts",
"T1055.014-VDSO Hijacking",
"T1055.013-Process Doppelgänging",
"T1208-Kerberoasting",
"T1497.002-User Activity Based Checks",
"T1570-Lateral Tool Transfer",
"T1560.001-Archive via Utility",
"T1132.001-Standard Encoding",
"",
""
],
[
"T1596.003-Digital Certificates",
"T1608-Stage Capabilities",
"",
"T1153-Source",
"T1078.003-Local Accounts",
"T1055.015-ListPlanting",
"T1055.014-VDSO Hijacking",
"T1212-Exploitation for Credential Access",
"T1497.003-Time Based Evasion",
"",
"T1560.002-Archive via Library",
"T1132.002-Non-Standard Encoding",
"",
""
],
[
"T1596.004-CDNs",
"T1608.001-Upload Malware",
"",
"T1154-Trap",
"T1078.004-Cloud Accounts",
"T1058-Service Registry Permissions Weakness",
"T1055.015-ListPlanting",
"T1214-Credentials in Registry",
"T1518-Software Discovery",
"",
"T1560.003-Archive via Custom Method",
"T1172-Domain Fronting",
"",
""
],
[
"T1596.005-Scan Databases",
"T1608.002-Upload Tool",
"",
"T1155-AppleScript",
"T1084-Windows Management Instrumentation Event Subscription",
"T1068-Exploitation for Privilege Escalation",
"T1064-Scripting",
"T1503-Credentials from Web Browsers",
"T1518.001-Security Software Discovery",
"",
"T1602-Data from Configuration Repository",
"T1188-Multi-hop Proxy",
"",
""
],
[
"T1597-Search Closed Sources",
"T1608.003-Install Digital Certificate",
"",
"T1168-Local Job Scheduling",
"T1098-Account Manipulation",
"T1078-Valid Accounts",
"T1066-Indicator Removal from Tools",
"T1522-Cloud Instance Metadata API",
"T1526-Cloud Service Discovery",
"",
"T1602.001-SNMP (MIB Dump)",
"T1205-Traffic Signaling",
"",
""
],
[
"T1597.001-Threat Intel Vendors",
"T1608.004-Drive-by Target",
"",
"T1170-Mshta",
"T1098.001-Additional Cloud Credentials",
"T1078.001-Default Accounts",
"T1070-Indicator Removal on Host",
"T1528-Steal Application Access Token",
"T1538-Cloud Service Dashboard",
"",
"T1602.002-Network Device Configuration Dump",
"T1205.001-Port Knocking",
"",
""
],
[
"T1597.002-Purchase Technical Data",
"T1608.005-Link Target",
"",
"T1173-Dynamic Data Exchange",
"T1098.002-Additional Email Delegate Permissions",
"T1078.002-Domain Accounts",
"T1070.001-Clear Windows Event Logs",
"T1539-Steal Web Session Cookie",
"T1580-Cloud Infrastructure Discovery",
"",
"",
"T1219-Remote Access Software",
"",
""
],
[
"T1598-Phishing for Information",
"",
"",
"T1175-Component Object Model and Distributed COM",
"T1098.003-Additional Cloud Roles",
"T1078.003-Local Accounts",
"T1070.002-Clear Linux or Mac System Logs",
"T1552-Unsecured Credentials",
"T1613-Container and Resource Discovery",
"",
"",
"T1483-Domain Generation Algorithms",
"",
""
],
[
"T1598.001-Spearphishing Service",
"",
"",
"T1177-LSASS Driver",
"T1098.004-SSH Authorized Keys",
"T1078.004-Cloud Accounts",
"T1070.003-Clear Command History",
"T1552.001-Credentials In Files",
"T1614-System Location Discovery",
"",
"",
"T1568-Dynamic Resolution",
"",
""
],
[
"T1598.002-Spearphishing Attachment",
"",
"",
"T1191-CMSTP",
"T1098.005-Device Registration",
"T1088-Bypass User Account Control",
"T1070.004-File Deletion",
"T1552.002-Credentials in Registry",
"T1614.001-System Language Discovery",
"",
"",
"T1568.001-Fast Flux DNS",
"",
""
],
[
"T1598.003-Spearphishing Link",
"",
"",
"T1196-Control Panel Items",
"T1100-Web Shell",
"T1100-Web Shell",
"T1070.005-Network Share Connection Removal",
"T1552.003-Bash History",
"T1615-Group Policy Discovery",
"",
"",
"T1568.002-Domain Generation Algorithms",
"",
""
],
[
"",
"",
"",
"T1203-Exploitation for Client Execution",
"T1101-Security Support Provider",
"T1103-AppInit DLLs",
"T1070.006-Timestomp",
"T1552.004-Private Keys",
"T1619-Cloud Storage Object Discovery",
"",
"",
"T1568.003-DNS Calculation",
"",
""
],
[
"",
"",
"",
"T1204-User Execution",
"T1103-AppInit DLLs",
"T1134-Access Token Manipulation",
"T1073-DLL Side-Loading",
"T1552.005-Cloud Instance Metadata API",
"T1622-Debugger Evasion",
"",
"",
"T1571-Non-Standard Port",
"",
""
],
[
"",
"",
"",
"T1204.001-Malicious Link",
"T1108-Redundant Access",
"T1134.001-Token Impersonation/Theft",
"T1078-Valid Accounts",
"T1552.006-Group Policy Preferences",
"",
"",
"",
"T1572-Protocol Tunneling",
"",
""
],
[
"",
"",
"",
"T1204.002-Malicious File",
"T1109-Component Firmware",
"T1134.002-Create Process with Token",
"T1078.001-Default Accounts",
"T1552.007-Container API",
"",
"",
"",
"T1573-Encrypted Channel",
"",
""
],
[
"",
"",
"",
"T1204.003-Malicious Image",
"T1122-Component Object Model Hijacking",
"T1134.003-Make and Impersonate Token",
"T1078.002-Domain Accounts",
"T1555-Credentials from Password Stores",
"",
"",
"",
"T1573.001-Symmetric Cryptography",
"",
""
],
[
"",
"",
"",
"T1223-Compiled HTML File",
"T1128-Netsh Helper DLL",
"T1134.004-Parent PID Spoofing",
"T1078.003-Local Accounts",
"T1555.001-Keychain",
"",
"",
"",
"T1573.002-Asymmetric Cryptography",
"",
""
],
[
"",
"",
"",
"T1559-Inter-Process Communication",
"T1131-Authentication Package",
"T1134.005-SID-History Injection",
"T1078.004-Cloud Accounts",
"T1555.002-Securityd Memory",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1559.001-Component Object Model",
"T1133-External Remote Services",
"T1138-Application Shimming",
"T1085-Rundll32",
"T1555.003-Credentials from Web Browsers",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1559.002-Dynamic Data Exchange",
"T1136-Create Account",
"T1150-Plist Modification",
"T1088-Bypass User Account Control",
"T1555.004-Windows Credential Manager",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1559.003-XPC Services",
"T1136.001-Local Account",
"T1157-Dylib Hijacking",
"T1089-Disabling Security Tools",
"T1555.005-Password Managers",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1569-System Services",
"T1136.002-Domain Account",
"T1160-Launch Daemon",
"T1093-Process Hollowing",
"T1556-Modify Authentication Process",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1569.001-Launchctl",
"T1136.003-Cloud Account",
"T1165-Startup Items",
"T1096-NTFS File Attributes",
"T1556.001-Domain Controller Authentication",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1569.002-Service Execution",
"T1137-Office Application Startup",
"T1166-Setuid and Setgid",
"T1099-Timestomp",
"T1556.002-Password Filter DLL",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1609-Container Administration Command",
"T1137.001-Office Template Macros",
"T1169-Sudo",
"T1107-File Deletion",
"T1556.003-Pluggable Authentication Modules",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"T1610-Deploy Container",
"T1137.002-Office Test",
"T1178-SID-History Injection",
"T1108-Redundant Access",
"T1556.004-Network Device Authentication",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"",
"T1137.003-Outlook Forms",
"T1179-Hooking",
"T1109-Component Firmware",
"T1556.005-Reversible Encryption",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"",
"T1137.004-Outlook Home Page",
"T1181-Extra Window Memory Injection",
"T1112-Modify Registry",
"T1557-Adversary-in-the-Middle",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"",
"T1137.005-Outlook Rules",
"T1182-AppCert DLLs",
"T1116-Code Signing",
"T1557.001-LLMNR/NBT-NS Poisoning and SMB Relay",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"",
"T1137.006-Add-ins",
"T1183-Image File Execution Options Injection",
"T1117-Regsvr32",
"T1557.002-ARP Cache Poisoning",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"",
"T1138-Application Shimming",
"T1206-Sudo Caching",
"T1118-InstallUtil",
"T1557.003-DHCP Spoofing",
"",
"",
"",
"",
"",
""
],
[
"",
"",
"",
"",
"T1150-Plist Modification",
"T1484-Domain Policy Modification",