-
Notifications
You must be signed in to change notification settings - Fork 259
/
mitre-course-of-action.json
9831 lines (9831 loc) · 437 KB
/
mitre-course-of-action.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
{
"authors": [
"MITRE"
],
"category": "course-of-action",
"description": "ATT&CK Mitigation",
"name": "Course of Action",
"source": "https://github.com/mitre/cti",
"type": "mitre-course-of-action",
"uuid": "a8825ae8-6dea-11e7-8d57-7728f3cfe086",
"values": [
{
"description": "Identify and block potentially malicious software that may be executed through run key or startup folder persistence using whitelisting (Citation: Beechey 2010) tools like AppLocker (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1060",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1060",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "8b36d944-f274-4d46-9acd-dbba6927ce7a",
"value": "Registry Run Keys / Startup Folder Mitigation - T1060"
},
{
"description": "Mitigations for command and control apply. Network intrusion detection and prevention systems that use network signatures to identify traffic for specific adversary malware can be used to mitigate activity at the network level. Signatures are often for unique indicators within protocols and may be based on the specific obfuscation technique used by a particular adversary or tool, and will likely be different across various malware families and versions. Adversaries will likely change tool command and control signatures over time or construct protocols in such a way to avoid detection by common defensive tools. (Citation: University of Birmingham C2)",
"meta": {
"external_id": "T1041",
"refs": [
"https://arxiv.org/ftp/arxiv/papers/1408/1408.1136.pdf",
"https://attack.mitre.org/mitigations/T1041"
]
},
"related": [],
"uuid": "92c28497-2820-445e-9f3e-a03dd77dc0c8",
"value": "Exfiltration Over Command and Control Channel Mitigation - T1041"
},
{
"description": "Ensure host-based sensors maintain visibility into usage of all network adapters and prevent the creation of new ones where possible. (Citation: Microsoft GPO Bluetooth FEB 2009) (Citation: TechRepublic Wireless GPO FEB 2009)",
"meta": {
"external_id": "T1011",
"refs": [
"https://attack.mitre.org/mitigations/T1011",
"https://technet.microsoft.com/library/dd252791.aspx",
"https://www.techrepublic.com/blog/data-center/configuring-wireless-settings-via-group-policy/"
]
},
"related": [],
"uuid": "a98be93b-a75b-4dd4-8a72-4dfd0b5e25bb",
"value": "Exfiltration Over Other Network Medium Mitigation - T1011"
},
{
"description": "Remove or deny access to unnecessary and potentially vulnerable software to prevent abuse by adversaries.",
"meta": {
"external_id": "M1042",
"refs": [
"https://attack.mitre.org/mitigations/M1042"
]
},
"related": [
{
"dest-uuid": "01327cde-66c4-4123-bf34-5f258d59457b",
"type": "mitigates"
},
{
"dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d",
"type": "mitigates"
},
{
"dest-uuid": "0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d",
"type": "mitigates"
},
{
"dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d",
"type": "mitigates"
},
{
"dest-uuid": "19bf235b-8620-4997-b5b4-94e0659ed7c3",
"type": "mitigates"
},
{
"dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9",
"type": "mitigates"
},
{
"dest-uuid": "232a7e42-cd6e-4902-8fe9-2960f529dd4d",
"type": "mitigates"
},
{
"dest-uuid": "2c4d4e92-0ccf-4a97-b54c-86d662988a53",
"type": "mitigates"
},
{
"dest-uuid": "2cd950a6-16c4-404a-aa01-044322395107",
"type": "mitigates"
},
{
"dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6",
"type": "mitigates"
},
{
"dest-uuid": "365be77f-fc0e-42ee-bac8-4faf806d9336",
"type": "mitigates"
},
{
"dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4",
"type": "mitigates"
},
{
"dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7",
"type": "mitigates"
},
{
"dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c",
"type": "mitigates"
},
{
"dest-uuid": "45241b9e-9bbc-4826-a2cc-78855e51ca09",
"type": "mitigates"
},
{
"dest-uuid": "457c7820-d331-465a-915e-42f85500ccc4",
"type": "mitigates"
},
{
"dest-uuid": "4a5b7ade-8bb5-4853-84ed-23f262002665",
"type": "mitigates"
},
{
"dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49",
"type": "mitigates"
},
{
"dest-uuid": "4d2a5b3e-340d-4600-9123-309dd63c9bf8",
"type": "mitigates"
},
{
"dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87",
"type": "mitigates"
},
{
"dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba",
"type": "mitigates"
},
{
"dest-uuid": "561ae9aa-c28a-4144-9eec-e7027a14c8c3",
"type": "mitigates"
},
{
"dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5",
"type": "mitigates"
},
{
"dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb",
"type": "mitigates"
},
{
"dest-uuid": "60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65",
"type": "mitigates"
},
{
"dest-uuid": "613d08bc-e8f4-4791-80b0-c8b974340dfd",
"type": "mitigates"
},
{
"dest-uuid": "64196062-5210-42c3-9a02-563a0d1797ef",
"type": "mitigates"
},
{
"dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e",
"type": "mitigates"
},
{
"dest-uuid": "68a0c5ed-bee2-4513-830d-5b0d650139bd",
"type": "mitigates"
},
{
"dest-uuid": "6b57dc31-b814-4a03-8706-28bc20d739c4",
"type": "mitigates"
},
{
"dest-uuid": "6e3bd510-6b33-41a4-af80-2d80f3ee0071",
"type": "mitigates"
},
{
"dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830",
"type": "mitigates"
},
{
"dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21",
"type": "mitigates"
},
{
"dest-uuid": "7b50a1d3-4ca7-45d1-989d-a6503f04bfe1",
"type": "mitigates"
},
{
"dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0",
"type": "mitigates"
},
{
"dest-uuid": "7de1f7ac-5d0c-4c9c-8873-627202205331",
"type": "mitigates"
},
{
"dest-uuid": "7e7c2fba-7cca-486c-9582-4c1bb2851961",
"type": "mitigates"
},
{
"dest-uuid": "808e6329-ca91-4b87-ac2d-8eadc5f8f327",
"type": "mitigates"
},
{
"dest-uuid": "824add00-99a1-4b15-9a2d-6c5683b7b497",
"type": "mitigates"
},
{
"dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade",
"type": "mitigates"
},
{
"dest-uuid": "970a3432-3237-47ad-bcca-7d8cbb217736",
"type": "mitigates"
},
{
"dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd",
"type": "mitigates"
},
{
"dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82",
"type": "mitigates"
},
{
"dest-uuid": "a3e1e6c5-9c74-4fc0-a16c-a9d228c17829",
"type": "mitigates"
},
{
"dest-uuid": "acd0ba37-7ba9-4cc5-ac61-796586cd856d",
"type": "mitigates"
},
{
"dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d",
"type": "mitigates"
},
{
"dest-uuid": "bed04f7d-e48a-4e76-bd0f-4c57fe31fc46",
"type": "mitigates"
},
{
"dest-uuid": "c48a67ee-b657-45c1-91bf-6cdbe27205f8",
"type": "mitigates"
},
{
"dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b",
"type": "mitigates"
},
{
"dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96",
"type": "mitigates"
},
{
"dest-uuid": "cabe189c-a0e3-4965-a473-dcff00f17213",
"type": "mitigates"
},
{
"dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf",
"type": "mitigates"
},
{
"dest-uuid": "d336b553-5da9-46ca-98a8-0b23f49fb447",
"type": "mitigates"
},
{
"dest-uuid": "d456de47-a16f-4e46-8980-e67478a12dcb",
"type": "mitigates"
},
{
"dest-uuid": "dc31fe1e-d722-49da-8f5f-92c7b5aff534",
"type": "mitigates"
},
{
"dest-uuid": "dfd7cc1d-e1d8-4394-a198-97c4cab8aa67",
"type": "mitigates"
},
{
"dest-uuid": "e0033c16-a07e-48aa-8204-7c3ca669998c",
"type": "mitigates"
},
{
"dest-uuid": "e3a12395-188d-4051-9a16-ea8e14d07b88",
"type": "mitigates"
},
{
"dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e",
"type": "mitigates"
},
{
"dest-uuid": "e6415f09-df0e-48de-9aba-928c902b7549",
"type": "mitigates"
},
{
"dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306",
"type": "mitigates"
},
{
"dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf",
"type": "mitigates"
},
{
"dest-uuid": "ff25900d-76d5-449b-a351-8824e62fc81b",
"type": "mitigates"
},
{
"dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407",
"type": "mitigates"
}
],
"uuid": "eb88d97c-32f1-40be-80f0-d61a4b0b4b31",
"value": "Disable or Remove Feature or Program - M1042"
},
{
"description": "Prevent access to file shares, remote access to systems, unnecessary services. Mechanisms to limit access may include use of network concentrators, RDP gateways, etc.",
"meta": {
"external_id": "M1035",
"refs": [
"https://attack.mitre.org/mitigations/M1035"
]
},
"related": [
{
"dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d",
"type": "mitigates"
},
{
"dest-uuid": "0470e792-32f8-46b0-a351-652bc35e9336",
"type": "mitigates"
},
{
"dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d",
"type": "mitigates"
},
{
"dest-uuid": "19bf235b-8620-4997-b5b4-94e0659ed7c3",
"type": "mitigates"
},
{
"dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4",
"type": "mitigates"
},
{
"dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517",
"type": "mitigates"
},
{
"dest-uuid": "4f9ca633-15c5-463c-9724-bdcd54fde541",
"type": "mitigates"
},
{
"dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba",
"type": "mitigates"
},
{
"dest-uuid": "56e0d8b8-3e25-49dd-9050-3aa252f5aa92",
"type": "mitigates"
},
{
"dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5",
"type": "mitigates"
},
{
"dest-uuid": "7b50a1d3-4ca7-45d1-989d-a6503f04bfe1",
"type": "mitigates"
},
{
"dest-uuid": "7f0ca133-88c4-40c6-a62f-b3083a7fbc2e",
"type": "mitigates"
},
{
"dest-uuid": "800f9819-7007-4540-a520-40e655876800",
"type": "mitigates"
},
{
"dest-uuid": "cabe189c-a0e3-4965-a473-dcff00f17213",
"type": "mitigates"
},
{
"dest-uuid": "d40239b3-05ff-46d8-9bdd-b46d13463ef9",
"type": "mitigates"
},
{
"dest-uuid": "e0033c16-a07e-48aa-8204-7c3ca669998c",
"type": "mitigates"
},
{
"dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf",
"type": "mitigates"
},
{
"dest-uuid": "f8ef3a62-3f44-40a4-abca-761ab235c436",
"type": "mitigates"
}
],
"uuid": "1dcaeb21-9348-42ea-950a-f842aaf1ae1f",
"value": "Limit Access to Resource Over Network - M1035"
},
{
"description": "Identify unnecessary system utilities or potentially malicious software that may be used to collect data from a network share, and audit and/or block them by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1039",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1039",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "d9727aee-48b8-4fdb-89e2-4c49746ba4dd",
"value": "Data from Network Shared Drive Mitigation - T1039"
},
{
"description": "Disabling WMI services may cause system instability and should be evaluated to assess the impact to a network. By default, only administrators are allowed to connect remotely using WMI; restrict other users that are allowed to connect, or disallow all users from connecting remotely to WMI. Prevent credential overlap across systems of administrator and privileged accounts. (Citation: FireEye WMI 2015)",
"meta": {
"external_id": "T1084",
"refs": [
"https://attack.mitre.org/mitigations/T1084",
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf"
]
},
"related": [],
"uuid": "0bc3ce00-83bc-4a92-a042-79ffbc6af259",
"value": "Windows Management Instrumentation Event Subscription Mitigation - T1084"
},
{
"description": "Properly configure firewalls and proxies to limit outgoing traffic to only necessary ports and through proper network gateway systems. Also ensure hosts are only provisioned to communicate over authorized interfaces.\n\nNetwork intrusion detection and prevention systems that use network signatures to identify traffic for specific adversary malware can be used to mitigate activity at the network level. Signatures are often for unique indicators within protocols and may be based on the specific protocol used by a particular adversary or tool, and will likely be different across various malware families and versions. Adversaries will likely change tool C2 signatures over time or construct protocols in such a way as to avoid detection by common defensive tools. (Citation: University of Birmingham C2)",
"meta": {
"external_id": "T1094",
"refs": [
"https://arxiv.org/ftp/arxiv/papers/1408/1408.1136.pdf",
"https://attack.mitre.org/mitigations/T1094"
]
},
"related": [],
"uuid": "f3d0c735-330f-43c2-8e8e-51bcfa51e8c3",
"value": "Custom Command and Control Protocol Mitigation - T1094"
},
{
"description": "This type of attack technique cannot be easily mitigated with preventive controls since it is based on the abuse of operating system design features. For example, mitigating all IFEO will likely have unintended side effects, such as preventing legitimate software (i.e., security products) from operating properly. (Citation: Microsoft IFEOorMalware July 2015) Efforts should be focused on preventing adversary tools from running earlier in the chain of activity and on identifying subsequent malicious behavior.\n\nIdentify and block potentially malicious software that may be executed through IFEO by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) that are capable of auditing and/or blocking unknown executables.",
"meta": {
"external_id": "T1183",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://answers.microsoft.com/windows/forum/windows_10-security/part-of-windows-10-or-really-malware/af715663-a34a-423c-850d-2a46f369a54c",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1183"
]
},
"related": [],
"uuid": "33f76731-b840-446f-bee0-53687dad24d9",
"value": "Image File Execution Options Injection Mitigation - T1183"
},
{
"description": "Ensure proper permissions are set for Registry hives to prevent users from modifying keys related to SIP and trust provider components. Also ensure that these values contain their full path to prevent [DLL Search Order Hijacking](https://attack.mitre.org/techniques/T1038). (Citation: SpectorOps Subverting Trust Sept 2017)\n\nConsider removing unnecessary and/or stale SIPs. (Citation: SpectorOps Subverting Trust Sept 2017)\n\nRestrict storage and execution of SIP DLLs to protected directories, such as C:\\Windows, rather than user directories.\n\nEnable whitelisting solutions such as AppLocker and/or Device Guard to block the loading of malicious SIP DLLs. Components may still be able to be hijacked to suitable functions already present on disk if malicious modifications to Registry keys are not prevented.",
"meta": {
"external_id": "T1198",
"refs": [
"https://attack.mitre.org/mitigations/T1198",
"https://specterops.io/assets/resources/SpecterOps_Subverting_Trust_in_Windows.pdf"
]
},
"related": [],
"uuid": "ef273807-c465-4728-9cee-5823422f42ee",
"value": "SIP and Trust Provider Hijacking Mitigation - T1198"
},
{
"description": "Properly configure firewalls and proxies to limit outgoing traffic to only necessary ports and through proper network gateway systems. Also ensure hosts are only provisioned to communicate over authorized interfaces.\n\nNetwork intrusion detection and prevention systems that use network signatures to identify traffic for specific adversary malware can be used to mitigate activity at the network level. Signatures are often for unique indicators within protocols and may be based on the specific obfuscation technique used by a particular adversary or tool, and will likely be different across various malware families and versions. Adversaries will likely change tool C2 signatures over time or construct protocols in such a way as to avoid detection by common defensive tools. (Citation: University of Birmingham C2)",
"meta": {
"external_id": "T1095",
"refs": [
"https://arxiv.org/ftp/arxiv/papers/1408/1408.1136.pdf",
"https://attack.mitre.org/mitigations/T1095"
]
},
"related": [],
"uuid": "399d9038-b100-43ef-b28d-a5065106b935",
"value": "Standard Non-Application Layer Protocol Mitigation - T1095"
},
{
"description": "Identify unnecessary system utilities or potentially malicious software that may be used to deobfuscate or decode files or information, and audit and/or block them by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1140",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1140",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "d01f473f-3cdc-4867-9e55-1de9cf1986f0",
"value": "Deobfuscate/Decode Files or Information Mitigation - T1140"
},
{
"description": "A variety of methods exist that can be used to enable enterprises to identify compromised (e.g. rooted/jailbroken) devices, whether using security mechanisms built directly into the device, third-party mobile security applications, enterprise mobility management (EMM)/mobile device management (MDM) capabilities, or other methods. Some methods may be trivial to evade while others may be more sophisticated.",
"meta": {
"external_id": "M1010",
"refs": [
"https://attack.mitre.org/mitigations/M1010"
]
},
"related": [
{
"dest-uuid": "20b0931a-8952-42ca-975f-775bad295f1a",
"type": "mitigates"
},
{
"dest-uuid": "24a77e53-0751-46fc-b207-99378fb35c08",
"type": "mitigates"
},
{
"dest-uuid": "29f1f56c-7b7a-4c14-9e39-59577ea2743c",
"type": "mitigates"
},
{
"dest-uuid": "2aa78dfd-cb6f-4c70-9408-137cfd96be49",
"type": "mitigates"
},
{
"dest-uuid": "351c0927-2fc1-4a2c-ad84-cbbee7eb8172",
"type": "mitigates"
},
{
"dest-uuid": "693cdbff-ea73-49c6-ac3f-91e7285c31d1",
"type": "mitigates"
},
{
"dest-uuid": "8605a0ec-b44a-4e98-a7fc-87d4bd3acb66",
"type": "mitigates"
},
{
"dest-uuid": "cc6e0637-76d2-4af3-a604-9d8d3ff8a6b3",
"type": "mitigates"
},
{
"dest-uuid": "ccde43e4-78f9-4f32-b401-c081e7db71ea",
"type": "mitigates"
}
],
"uuid": "cf2cccb1-cab8-431a-8ecf-f7874d05f433",
"value": "Deploy Compromised Device Detection Method - M1010"
},
{
"description": "Network intrusion detection and prevention systems that use network signatures to identify traffic for specific adversary command and control infrastructure and malware can be used to mitigate activity at the network level. Signatures are often for unique indicators within protocols and may be based on the specific obfuscation technique used by a particular adversary or tool, and will likely be different across various malware families and versions. Adversaries will likely change tool command and control signatures over time or construct protocols in such a way to avoid detection by common defensive tools. (Citation: University of Birmingham C2)",
"meta": {
"external_id": "T1030",
"refs": [
"https://arxiv.org/ftp/arxiv/papers/1408/1408.1136.pdf",
"https://attack.mitre.org/mitigations/T1030"
]
},
"related": [],
"uuid": "ba06d68a-4891-4eb5-b634-152e05ec60ee",
"value": "Data Transfer Size Limits Mitigation - T1030"
},
{
"description": "Identify unnecessary system utilities or potentially malicious software that may be used to collect data from the local system, and audit and/or block them by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1005",
"refs": [
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1005",
"https://blogs.jpcert.or.jp/en/2016/01/windows-commands-abused-by-attackers.html",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "7ee0879d-ce4f-4f54-a96b-c532dfb98ffd",
"value": "Data from Local System Mitigation - T1005"
},
{
"description": "Identify potentially malicious software that may be used to access logical drives in this manner, and audit and/or block it by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1006",
"refs": [
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1006",
"https://blogs.jpcert.or.jp/en/2016/01/windows-commands-abused-by-attackers.html",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "902286b2-96cc-4dd7-931f-e7340c9961da",
"value": "File System Logical Offsets Mitigation - T1006"
},
{
"description": "Warn device users not to accept requests to grant Device Administrator access to applications without good reason.\n\nAdditionally, application vetting should include a check on whether the application requests Device Administrator access. Applications that do request Device Administrator access should be carefully scrutinized and only allowed to be used if a valid reason exists.",
"meta": {
"external_id": "M1007",
"refs": [
"https://attack.mitre.org/mitigations/M1007"
]
},
"related": [],
"uuid": "e944670c-d03a-4e93-a21c-b3d4c53ec4c9",
"value": "Caution with Device Administrator Access - M1007"
},
{
"description": "Automatically forward events to a log server or data repository to prevent conditions in which the adversary can locate and manipulate data on the local system. When possible, minimize time delay on event reporting to avoid prolonged storage on the local system. Protect generated event files that are stored locally with proper permissions and authentication and limit opportunities for adversaries to increase privileges by preventing Privilege Escalation opportunities. Obfuscate/encrypt event files locally and in transit to avoid giving feedback to an adversary.",
"meta": {
"external_id": "T1070",
"refs": [
"https://attack.mitre.org/mitigations/T1070"
]
},
"related": [],
"uuid": "6cac62ce-550b-4793-8ee6-6a1b8836edb0",
"value": "Indicator Removal on Host Mitigation - T1070"
},
{
"description": "Segment networks and systems appropriately to reduce access to critical systems and services to controlled methods. Minimize available services to only those that are necessary. Regularly scan the internal network for available services to identify new and potentially vulnerable services. Minimize permissions and access for service accounts to limit impact of exploitation.\n\nUpdate software regularly by employing patch management for internal enterprise endpoints and servers. Develop a robust cyber threat intelligence capability to determine what types and levels of threat may use software exploits and 0-days against a particular organization. Make it difficult for adversaries to advance their operation through exploitation of undiscovered or unpatched vulnerabilities by using sandboxing, if available. Other types of virtualization and application microsegmentation may also mitigate the impact of some types of exploitation. The risks of additional exploits and weaknesses in implementation may still exist. (Citation: Ars Technica Pwn2Own 2017 VM Escape)\n\nSecurity applications that look for behavior used during exploitation such as Windows Defender Exploit Guard (WDEG) and the Enhanced Mitigation Experience Toolkit (EMET) can be used to mitigate some exploitation behavior. (Citation: TechNet Moving Beyond EMET) Control flow integrity checking is another way to potentially identify and stop a software exploit from occurring. (Citation: Wikipedia Control Flow Integrity) Many of these protections depend on the architecture and target application binary for compatibility and may not work for all software or services targeted.",
"meta": {
"external_id": "T1210",
"refs": [
"https://arstechnica.com/information-technology/2017/03/hack-that-escapes-vm-by-exploiting-edge-browser-fetches-105000-at-pwn2own/",
"https://attack.mitre.org/mitigations/T1210",
"https://blogs.technet.microsoft.com/srd/2017/08/09/moving-beyond-emet-ii-windows-defender-exploit-guard/",
"https://en.wikipedia.org/wiki/Control-flow_integrity"
]
},
"related": [],
"uuid": "14b63e6b-7531-4476-9e60-02cc5db48b62",
"value": "Exploitation of Remote Services Mitigation - T1210"
},
{
"description": "Identify unnecessary system utilities or potentially malicious software that may be used to acquire information about a system's network configuration, and audit and/or block them by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1016",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1016",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "684feec3-f9ba-4049-9d8f-52d52f3e0e40",
"value": "System Network Configuration Discovery Mitigation - T1016"
},
{
"description": "Disable Autorun if it is unnecessary. (Citation: Microsoft Disable Autorun) Disallow or restrict removable media at an organizational policy level if it is not required for business operations. (Citation: TechNet Removable Media Control)\n\nIdentify potentially malicious software that may be used to infect removable media or may result from tainted removable media, and audit and/or block it by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1091",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1091",
"https://support.microsoft.com/en-us/kb/967715",
"https://technet.microsoft.com/en-us/library/cc772540(v=ws.10).aspx",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "effb83a0-ead1-4b36-b7f6-b7bdf9c4616e",
"value": "Replication Through Removable Media Mitigation - T1091"
},
{
"description": "Restrict access by setting directory and file permissions that are not specific to users or privileged accounts.",
"meta": {
"external_id": "M1022",
"refs": [
"https://attack.mitre.org/mitigations/M1022"
]
},
"related": [
{
"dest-uuid": "03259939-0b57-482f-8eb5-87c0e0d54334",
"type": "mitigates"
},
{
"dest-uuid": "09b130a2-a77e-4af0-a361-f46f9aad1345",
"type": "mitigates"
},
{
"dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32",
"type": "mitigates"
},
{
"dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3",
"type": "mitigates"
},
{
"dest-uuid": "106c0cf6-bf73-4601-9aa8-0945c2715ec5",
"type": "mitigates"
},
{
"dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0",
"type": "mitigates"
},
{
"dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2",
"type": "mitigates"
},
{
"dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292",
"type": "mitigates"
},
{
"dest-uuid": "20fb2507-d71c-455d-9b6d-6104461cf26b",
"type": "mitigates"
},
{
"dest-uuid": "246fd3c7-f5e3-466d-8787-4c13d9e3b61c",
"type": "mitigates"
},
{
"dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36",
"type": "mitigates"
},
{
"dest-uuid": "3298ce88-1628-43b1-87d9-0b5336b193d7",
"type": "mitigates"
},
{
"dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490",
"type": "mitigates"
},
{
"dest-uuid": "34e793de-0274-4982-9c1a-246ed1c19dee",
"type": "mitigates"
},
{
"dest-uuid": "356662f7-e315-4759-86c9-6214e2a50ff8",
"type": "mitigates"
},
{
"dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9",
"type": "mitigates"
},
{
"dest-uuid": "3aef9463-9a7a-43ba-8957-a867e07c1e6a",
"type": "mitigates"
},
{
"dest-uuid": "3d333250-30e4-4a82-9edc-756c68afc529",
"type": "mitigates"
},
{
"dest-uuid": "42e8de7b-37b2-4258-905a-6897815e58e0",
"type": "mitigates"
},
{
"dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517",
"type": "mitigates"
},
{
"dest-uuid": "438c967d-3996-4870-bfc2-3954752a1927",
"type": "mitigates"
},
{
"dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0",
"type": "mitigates"
},
{
"dest-uuid": "4d2a5b3e-340d-4600-9123-309dd63c9bf8",
"type": "mitigates"
},
{
"dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a",
"type": "mitigates"
},
{
"dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f",
"type": "mitigates"
},
{
"dest-uuid": "5372c5fe-f424-4def-bcd5-d3a8e770f07b",
"type": "mitigates"
},
{
"dest-uuid": "543fceb5-cb92-40cb-aacf-6913d4db58bc",
"type": "mitigates"
},
{
"dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2",
"type": "mitigates"
},
{
"dest-uuid": "60b508a1-6a5e-46b1-821a-9f7b78752abf",
"type": "mitigates"
},
{
"dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc",
"type": "mitigates"
},
{
"dest-uuid": "6495ae23-3ab4-43c5-a94f-5638a2c31fd2",
"type": "mitigates"
},
{
"dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196",
"type": "mitigates"
},
{
"dest-uuid": "67720091-eee3-4d2d-ae16-8264567f6f5b",
"type": "mitigates"
},
{
"dest-uuid": "6b57dc31-b814-4a03-8706-28bc20d739c4",
"type": "mitigates"
},
{
"dest-uuid": "74d2a63f-3c7b-4852-92da-02d8fbab16da",
"type": "mitigates"
},
{
"dest-uuid": "799ace7f-e227-4411-baa0-8868704f2a69",
"type": "mitigates"
},
{
"dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc",
"type": "mitigates"
},
{
"dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776",
"type": "mitigates"
},
{
"dest-uuid": "a542bac9-7bc1-4da7-9a09-96f69e23cc21",
"type": "mitigates"
},
{
"dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579",
"type": "mitigates"
},
{
"dest-uuid": "ac9e6b22-11bf-45d7-9181-c1cb08360931",
"type": "mitigates"
},
{
"dest-uuid": "aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6",
"type": "mitigates"
},
{
"dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2",
"type": "mitigates"
},
{
"dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b",
"type": "mitigates"
},
{
"dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b",
"type": "mitigates"
},
{
"dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f",
"type": "mitigates"
},
{
"dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99",
"type": "mitigates"
},
{
"dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584",
"type": "mitigates"
},
{
"dest-uuid": "d157f9d2-d09a-4efa-bb2a-64963f94e253",
"type": "mitigates"
},
{
"dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591",
"type": "mitigates"
},
{
"dest-uuid": "d2c4e5ea-dbdf-4113-805a-b1e2a337fb33",
"type": "mitigates"
},
{
"dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211",
"type": "mitigates"
},
{
"dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b",
"type": "mitigates"
},
{
"dest-uuid": "e0232cb0-ded5-4c2e-9dc7-2893142a5c11",
"type": "mitigates"
},
{
"dest-uuid": "e8a0a025-3601-4755-abfb-8d08283329fb",
"type": "mitigates"
},
{
"dest-uuid": "f1951e8a-500e-4a26-8803-76d95c4554b4",
"type": "mitigates"
},
{
"dest-uuid": "f2857333-11d4-45bf-b064-2c28d8525be5",
"type": "mitigates"
},
{
"dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84",
"type": "mitigates"
},
{
"dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490",
"type": "mitigates"
}
],
"uuid": "987988f0-cf86-4680-a875-2f6456ab2448",
"value": "Restrict File and Directory Permissions - M1022"
},
{
"description": "Browser sandboxes can be used to mitigate some of the impact of exploitation, but sandbox escapes may still exist. (Citation: Windows Blogs Microsoft Edge Sandbox) (Citation: Ars Technica Pwn2Own 2017 VM Escape)\n\nOther types of virtualization and application microsegmentation may also mitigate the impact of client-side exploitation. The risks of additional exploits and weaknesses in implementation may still exist. (Citation: Ars Technica Pwn2Own 2017 VM Escape)\n\nSecurity applications that look for behavior used during exploitation such as Windows Defender Exploit Guard (WDEG) and the Enhanced Mitigation Experience Toolkit (EMET) can be used to mitigate some exploitation behavior. (Citation: TechNet Moving Beyond EMET) Control flow integrity checking is another way to potentially identify and stop a software exploit from occurring. (Citation: Wikipedia Control Flow Integrity) Many of these protections depend on the architecture and target application binary for compatibility.",
"meta": {
"external_id": "T1203",
"refs": [
"https://arstechnica.com/information-technology/2017/03/hack-that-escapes-vm-by-exploiting-edge-browser-fetches-105000-at-pwn2own/",
"https://attack.mitre.org/mitigations/T1203",
"https://blogs.technet.microsoft.com/srd/2017/08/09/moving-beyond-emet-ii-windows-defender-exploit-guard/",
"https://blogs.windows.com/msedgedev/2017/03/23/strengthening-microsoft-edge-sandbox/",
"https://en.wikipedia.org/wiki/Control-flow_integrity"
]
},
"related": [],
"uuid": "f2dcee22-c275-405e-87fd-48630a19dfba",
"value": "Exploitation for Client Execution Mitigation - T1203"
},
{
"description": "Direct mitigation of this technique is not recommended since it is a legitimate function that can be performed by users for software preferences. Follow Microsoft's best practices for file associations. (Citation: MSDN File Associations)\n\nIdentify and block potentially malicious software that may be executed by this technique using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1042",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1042",
"https://msdn.microsoft.com/en-us/library/cc144156.aspx",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "d7c49196-b40e-42bc-8eed-b803113692ed",
"value": "Change Default File Association Mitigation - T1042"
},
{
"description": "Identify unnecessary system utilities or potentially malicious software that may be used to collect data from removable media, and audit and/or block them by using whitelisting (Citation: Beechey 2010) tools, like AppLocker, (Citation: Windows Commands JPCERT) (Citation: NSA MS AppLocker) or Software Restriction Policies (Citation: Corio 2008) where appropriate. (Citation: TechNet Applocker vs SRP)",
"meta": {
"external_id": "T1025",
"refs": [
"http://blog.jpcert.or.jp/2016/01/windows-commands-abused-by-attackers.html",
"http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx",
"http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599",
"https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm",
"https://attack.mitre.org/mitigations/T1025",
"https://technet.microsoft.com/en-us/library/ee791851.aspx"
]
},
"related": [],
"uuid": "39706d54-0d06-4a25-816a-78cc43455100",
"value": "Data from Removable Media Mitigation - T1025"
},
{
"description": "Disable Autorun if it is unnecessary. (Citation: Microsoft Disable Autorun) Disallow or restrict removable media at an organizational policy level if they are not required for business operations. (Citation: TechNet Removable Media Control)",
"meta": {
"external_id": "T1052",
"refs": [
"https://attack.mitre.org/mitigations/T1052",
"https://support.microsoft.com/en-us/kb/967715",
"https://technet.microsoft.com/en-us/library/cc772540(v=ws.10).aspx"
]
},
"related": [],
"uuid": "e547ed6a-f1ca-40df-8613-2ce27927f145",
"value": "Exfiltration Over Physical Medium Mitigation - T1052"
},
{
"description": "Disable Autorun if it is unnecessary. (Citation: Microsoft Disable Autorun) Disallow or restrict removable media at an organizational policy level if they are not required for business operations. (Citation: TechNet Removable Media Control)",
"meta": {
"external_id": "T1092",