-
Notifications
You must be signed in to change notification settings - Fork 4
/
tech_mitigation_names.json
1091 lines (1091 loc) · 31.2 KB
/
tech_mitigation_names.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
[
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Behavior Prevention on Endpoint",
"Privileged Process Integrity",
"Privileged Account Management",
"Encrypt Sensitive Information",
"User Training",
"Operating System Configuration",
"Password Policies",
"Credential Access Protection",
"Active Directory Configuration",
"Behavior Prevention on Endpoint",
"Privileged Process Integrity",
"Privileged Account Management",
"User Training",
"Operating System Configuration",
"Password Policies",
"Credential Access Protection",
"Password Policies",
"User Training",
"Privileged Account Management",
"Operating System Configuration",
"Password Policies",
"User Training",
"Privileged Account Management",
"Encrypt Sensitive Information",
"Password Policies",
"User Training",
"Privileged Account Management",
"Privileged Account Management",
"User Training",
"Operating System Configuration",
"Password Policies",
"Active Directory Configuration",
"Password Policies",
"Privileged Account Management",
"Active Directory Configuration",
"Password Policies",
"Privileged Account Management",
"Password Policies",
"Privileged Account Management",
"Data Loss Prevention",
"Network Intrusion Prevention",
"Operating System Configuration",
"Disable or Remove Feature or Program",
"Operating System Configuration",
"Encrypt Sensitive Information",
"Multi-factor Authentication",
"User Account Management",
"Disable or Remove Feature or Program",
"Audit",
"Multi-factor Authentication",
"Privileged Account Management",
"Limit Access to Resource Over Network",
"Operating System Configuration",
"Network Segmentation",
"User Account Management",
"Password Policies",
"Limit Access to Resource Over Network",
"Filter Network Traffic",
"Privileged Account Management",
"Network Segmentation",
"Application Isolation and Sandboxing",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Disable or Remove Feature or Program",
"Multi-factor Authentication",
"User Account Management",
"Audit",
"Limit Software Installation",
"Disable or Remove Feature or Program",
"Filter Network Traffic",
"Network Segmentation",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Data Loss Prevention",
"Behavior Prevention on Endpoint",
"Antivirus/Antimalware",
"Antivirus/Antimalware",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Code Signing",
"Code Signing",
"Restrict File and Directory Permissions",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Code Signing",
"User Training",
"Operating System Configuration",
"Restrict File and Directory Permissions",
"Restrict Registry Permissions",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"Restrict File and Directory Permissions",
"Restrict File and Directory Permissions",
"Restrict File and Directory Permissions",
"Multi-factor Authentication",
"Encrypt Sensitive Information",
"Data Loss Prevention",
"Network Intrusion Prevention",
"Disable or Remove Feature or Program",
"Network Segmentation",
"Network Intrusion Prevention",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Privileged Account Management",
"User Account Management",
"Network Segmentation",
"Filter Network Traffic",
"Data Loss Prevention",
"Network Intrusion Prevention",
"Network Segmentation",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Network Segmentation",
"Filter Network Traffic",
"Data Loss Prevention",
"Network Intrusion Prevention",
"Network Segmentation",
"Filter Network Traffic",
"Data Loss Prevention",
"Network Intrusion Prevention",
"Disable or Remove Feature or Program",
"Limit Hardware Installation",
"Data Loss Prevention",
"Disable or Remove Feature or Program",
"Limit Hardware Installation",
"Data Loss Prevention",
"Audit",
"Privileged Account Management",
"Operating System Configuration",
"User Account Management",
"Audit",
"User Account Management",
"Audit",
"Privileged Account Management",
"Operating System Configuration",
"User Account Management",
"Audit",
"User Account Management",
"Audit",
"Privileged Account Management",
"Operating System Configuration",
"User Account Management",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"User Account Management",
"Privileged Account Management",
"User Account Management",
"Behavior Prevention on Endpoint",
"Privileged Account Management",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Privileged Account Management",
"Behavior Prevention on Endpoint",
"Restrict File and Directory Permissions",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"User Training",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Privileged Account Management",
"Code Signing",
"Antivirus/Antimalware",
"Restrict Web-Based Content",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Privileged Account Management",
"Code Signing",
"Antivirus/Antimalware",
"Execution Prevention",
"Code Signing",
"Execution Prevention",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Antivirus/Antimalware",
"Restrict Web-Based Content",
"Audit",
"Antivirus/Antimalware",
"Limit Software Installation",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Restrict Web-Based Content",
"Execution Prevention",
"Privileged Account Management",
"User Account Management",
"Exploit Protection",
"Execution Prevention",
"Update Software",
"Application Isolation and Sandboxing",
"Threat Intelligence Program",
"Restrict File and Directory Permissions",
"Encrypt Sensitive Information",
"Remote Data Storage",
"Restrict File and Directory Permissions",
"Encrypt Sensitive Information",
"Remote Data Storage",
"Restrict File and Directory Permissions",
"Encrypt Sensitive Information",
"Remote Data Storage",
"Restrict File and Directory Permissions",
"Environment Variable Permissions",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Multi-factor Authentication",
"Privileged Account Management",
"Update Software",
"User Training",
"Remote Data Storage",
"Network Segmentation",
"Password Policies",
"Active Directory Configuration",
"User Account Management",
"Password Policies",
"User Training",
"Privileged Account Management",
"Application Developer Guidance",
"Password Policies",
"Multi-factor Authentication",
"Privileged Account Management",
"User Training",
"Password Policies",
"Privileged Account Management",
"Multi-factor Authentication",
"Privileged Account Management",
"User Training",
"Password Policies",
"User Account Management",
"Exploit Protection",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Operating System Configuration",
"Operating System Configuration",
"Operating System Configuration",
"Audit",
"User Account Management",
"SSL/TLS Inspection",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Filter Network Traffic",
"SSL/TLS Inspection",
"Disable or Remove Feature or Program",
"Limit Hardware Installation",
"Behavior Prevention on Endpoint",
"Disable or Remove Feature or Program",
"Operating System Configuration",
"Network Segmentation",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Network Segmentation",
"Multi-factor Authentication",
"Privileged Account Management",
"Operating System Configuration",
"Network Segmentation",
"Multi-factor Authentication",
"Privileged Account Management",
"Multi-factor Authentication",
"Privileged Account Management",
"Multi-factor Authentication",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Restrict File and Directory Permissions",
"Restrict Web-Based Content",
"Network Intrusion Prevention",
"Restrict Web-Based Content",
"Network Intrusion Prevention",
"Restrict Web-Based Content",
"Network Intrusion Prevention",
"Restrict Web-Based Content",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Password Policies",
"Multi-factor Authentication",
"Account Use Policies",
"User Account Management",
"Password Policies",
"Multi-factor Authentication",
"Account Use Policies",
"Password Policies",
"Multi-factor Authentication",
"Password Policies",
"Multi-factor Authentication",
"Account Use Policies",
"Password Policies",
"Multi-factor Authentication",
"Account Use Policies",
"User Account Management",
"User Training",
"Restrict Registry Permissions",
"Audit",
"Multi-factor Authentication",
"Encrypt Sensitive Information",
"Encrypt Sensitive Information",
"Multi-factor Authentication",
"Encrypt Sensitive Information",
"Audit",
"Disable or Remove Feature or Program",
"Encrypt Sensitive Information",
"Encrypt Sensitive Information",
"Remote Data Storage",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Execution Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Network Segmentation",
"Multi-factor Authentication",
"Limit Access to Resource Over Network",
"Disable or Remove Feature or Program",
"Privileged Account Management",
"User Account Management",
"Privileged Account Management",
"User Account Management",
"Privileged Account Management",
"User Account Management",
"Privileged Account Management",
"User Account Management",
"Active Directory Configuration",
"Operating System Configuration",
"Network Segmentation",
"Multi-factor Authentication",
"Privileged Account Management",
"Operating System Configuration",
"Multi-factor Authentication",
"Privileged Account Management",
"Network Segmentation",
"Multi-factor Authentication",
"Privileged Account Management",
"Operating System Configuration",
"Network Segmentation",
"Multi-factor Authentication",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Update Software",
"Software Configuration",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Software Configuration",
"Update Software",
"Behavior Prevention on Endpoint",
"Update Software",
"Behavior Prevention on Endpoint",
"Update Software",
"Behavior Prevention on Endpoint",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Audit",
"Update Software",
"User Training",
"Limit Software Installation",
"User Training",
"User Account Management",
"Password Policies",
"Filter Network Traffic",
"Update Software",
"Exploit Protection",
"Application Isolation and Sandboxing",
"Restrict Web-Based Content",
"Exploit Protection",
"Vulnerability Scanning",
"Privileged Account Management",
"Update Software",
"Application Isolation and Sandboxing",
"Network Segmentation",
"Update Software",
"Vulnerability Scanning",
"Update Software",
"Vulnerability Scanning",
"Update Software",
"Vulnerability Scanning",
"Boot Integrity",
"Filter Network Traffic",
"Operating System Configuration",
"User Account Management",
"Network Segmentation",
"User Account Control",
"Limit Hardware Installation",
"Limit Access to Resource Over Network",
"Password Policies",
"Exploit Protection",
"Application Isolation and Sandboxing",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Network Intrusion Prevention",
"User Training",
"Restrict Web-Based Content",
"Restrict Web-Based Content",
"User Training",
"Network Intrusion Prevention",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"User Training",
"Audit",
"User Training",
"Code Signing",
"Network Intrusion Prevention",
"Disable or Remove Feature or Program",
"Filter Network Traffic",
"Filter Network Traffic",
"Exploit Protection",
"Disable or Remove Feature or Program",
"Vulnerability Scanning",
"Privileged Account Management",
"Update Software",
"Application Isolation and Sandboxing",
"Network Segmentation",
"Threat Intelligence Program",
"Update Software",
"Exploit Protection",
"Application Isolation and Sandboxing",
"Threat Intelligence Program",
"Update Software",
"Exploit Protection",
"Application Isolation and Sandboxing",
"Threat Intelligence Program",
"Audit",
"User Training",
"User Account Management",
"Audit",
"User Training",
"User Account Management",
"Audit",
"User Training",
"User Account Management",
"Audit",
"Multi-factor Authentication",
"User Training",
"User Account Management",
"Execution Prevention",
"Behavior Prevention on Endpoint",
"Execution Prevention",
"Exploit Protection",
"Execution Prevention",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Restrict Web-Based Content",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Exploit Protection",
"Exploit Protection",
"Disable or Remove Feature or Program",
"Filter Network Traffic",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Execution Prevention",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Execution Prevention",
"Disable or Remove Feature or Program",
"User Training",
"Antivirus/Antimalware",
"Network Intrusion Prevention",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"Do Not Mitigate",
"Do Not Mitigate",
"Network Segmentation",
"Audit",
"Audit",
"Privileged Account Management",
"User Account Management",
"Audit",
"User Account Management",
"Privileged Account Management",
"Data Backup",
"Data Backup",
"Behavior Prevention on Endpoint",
"Network Segmentation",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"User Account Management",
"Data Backup",
"Operating System Configuration",
"Data Backup",
"Data Backup",
"Data Backup",
"Update Software",
"Privileged Account Management",
"Boot Integrity",
"Filter Network Traffic",
"Filter Network Traffic",
"Filter Network Traffic",
"Filter Network Traffic",
"Filter Network Traffic",
"Filter Network Traffic",
"Filter Network Traffic",
"Filter Network Traffic",
"Disable or Remove Feature or Program",
"Audit",
"Privileged Account Management",
"Code Signing",
"User Account Management",
"Audit",
"Privileged Account Management",
"Code Signing",
"Audit",
"Privileged Account Management",
"Code Signing",
"Disable or Remove Feature or Program",
"User Account Management",
"Audit",
"Execution Prevention",
"Privileged Account Management",
"Code Signing",
"Audit",
"Privileged Account Management",
"Code Signing",
"Audit",
"User Training",
"User Account Management",
"Restrict Web-Based Content",
"Filter Network Traffic",
"Audit",
"Multi-factor Authentication",
"Encrypt Sensitive Information",
"Restrict File and Directory Permissions",
"User Account Management",
"Software Configuration",
"Password Policies",
"Filter Network Traffic",
"User Account Management",
"User Account Management",
"Software Configuration",
"Multi-factor Authentication",
"User Training",
"Update Software",
"Privileged Account Management",
"Boot Integrity",
"Boot Integrity",
"Update Software",
"Privileged Account Management",
"Boot Integrity",
"Privileged Account Management",
"Boot Integrity",
"Audit",
"Network Intrusion Prevention",
"Audit",
"Limit Access to Resource Over Network",
"Privileged Account Management",
"Network Intrusion Prevention",
"Operating System Configuration",
"Boot Integrity",
"Audit",
"Restrict File and Directory Permissions",
"Limit Software Installation",
"User Account Management",
"Restrict File and Directory Permissions",
"Limit Software Installation",
"Privileged Account Management",
"User Account Management",
"Audit",
"User Account Management",
"Audit",
"User Account Management",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Behavior Prevention on Endpoint",
"Privileged Account Management",
"User Account Management",
"Restrict File and Directory Permissions",
"Audit",
"Execution Prevention",
"Code Signing",
"Execution Prevention",
"Limit Access to Resource Over Network",
"Operating System Configuration",
"Execution Prevention",
"Update Software",
"Execution Prevention",
"Update Software",
"User Account Control",
"Software Configuration",
"Restrict File and Directory Permissions",
"Code Signing",
"Disable or Remove Feature or Program",
"Privileged Process Integrity",
"Restrict File and Directory Permissions",
"Restrict Registry Permissions",
"Execution Prevention",
"User Account Management",
"Privileged Process Integrity",
"Execution Prevention",
"Privileged Account Management",
"Antivirus/Antimalware",
"Disable or Remove Feature or Program",
"User Training",
"Credential Access Protection",
"Restrict Library Loading",
"Privileged Process Integrity",
"User Account Management",
"Restrict File and Directory Permissions",
"User Training",
"Application Developer Guidance",
"User Account Management",
"Restrict File and Directory Permissions",
"Limit Software Installation",
"User Account Management",
"Execution Prevention",
"Audit",
"Privileged Account Management",
"User Account Control",
"Operating System Configuration",
"Restrict File and Directory Permissions",
"Operating System Configuration",
"Audit",
"Update Software",
"Privileged Account Management",
"User Account Control",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"Operating System Configuration",
"Execution Prevention",
"Privileged Account Management",
"User Account Management",
"Audit",
"Encrypt Sensitive Information",
"Restrict Web-Based Content",
"Update Software",
"User Account Control",
"Privileged Account Management",
"User Account Management",
"Password Policies",
"Privileged Account Management",
"Active Directory Configuration",
"User Account Management",
"Software Configuration",
"Filter Network Traffic",
"Audit",
"Privileged Account Management",
"Encrypt Sensitive Information",
"Update Software",
"User Training",
"Operating System Configuration",
"Password Policies",
"Restrict File and Directory Permissions",
"Active Directory Configuration",
"Audit",
"Password Policies",
"Restrict File and Directory Permissions",
"User Training",
"Audit",
"Password Policies",
"Privileged Account Management",
"Operating System Configuration",
"Audit",
"Password Policies",
"Restrict File and Directory Permissions",
"Encrypt Sensitive Information",
"Disable or Remove Feature or Program",
"Filter Network Traffic",
"Audit",
"Update Software",
"Active Directory Configuration",
"Network Segmentation",
"Limit Access to Resource Over Network",
"Privileged Account Management",
"Software Configuration",
"Execution Prevention",
"Operating System Configuration",
"Restrict Registry Permissions",
"Execution Prevention",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Software Configuration",
"Operating System Configuration",
"Execution Prevention",
"Boot Integrity",
"Restrict Registry Permissions",
"Privileged Account Management",
"Code Signing",
"Password Policies",
"Password Policies",
"Password Policies",
"Disable or Remove Feature or Program",
"Update Software",
"Password Policies",
"Software Configuration",
"Privileged Process Integrity",
"Multi-factor Authentication",
"Privileged Account Management",
"Operating System Configuration",
"Restrict File and Directory Permissions",
"Multi-factor Authentication",
"Privileged Account Management",
"Privileged Process Integrity",
"Operating System Configuration",
"Multi-factor Authentication",
"Privileged Account Management",
"Multi-factor Authentication",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Filter Network Traffic",
"Limit Access to Resource Over Network",
"Encrypt Sensitive Information",
"Network Intrusion Prevention",
"User Training",
"Network Segmentation",
"Disable or Remove Feature or Program",
"Network Segmentation",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Disable or Remove Feature or Program",
"Filter Network Traffic",
"Limit Access to Resource Over Network",
"Encrypt Sensitive Information",
"Network Intrusion Prevention",
"User Training",
"Password Policies",
"Privileged Account Management",
"Encrypt Sensitive Information",
"Active Directory Configuration",
"Privileged Account Management",
"Active Directory Configuration",
"Password Policies",
"Privileged Account Management",
"Encrypt Sensitive Information",
"Password Policies",
"Privileged Account Management",
"Encrypt Sensitive Information",
"Audit",
"Password Policies",
"Encrypt Sensitive Information",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Privileged Account Management",
"Software Configuration",
"Application Isolation and Sandboxing",
"Privileged Account Management",
"Application Isolation and Sandboxing",
"Disable or Remove Feature or Program",
"Behavior Prevention on Endpoint",
"Software Configuration",
"Application Isolation and Sandboxing",
"Audit",
"Audit",
"Data Backup",
"Data Backup",
"Data Backup",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"User Account Management",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"User Account Management",
"Audit",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"User Account Management",
"Environment Variable Permissions",
"Operating System Configuration",
"Restrict Registry Permissions",
"Restrict File and Directory Permissions",
"User Account Management",
"Software Configuration",
"Restrict File and Directory Permissions",
"User Account Management",
"Audit",
"User Account Management",
"User Account Management",
"Software Configuration",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Network Segmentation",
"Disable or Remove Feature or Program",
"Privileged Account Management",
"User Account Management",
"Disable or Remove Feature or Program",
"Password Policies",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"Disable or Remove Feature or Program",
"Audit",
"Privileged Account Management",
"Limit Access to Resource Over Network",
"Operating System Configuration",
"Network Segmentation",
"User Account Management",
"Operating System Configuration",
"Execution Prevention",
"Restrict File and Directory Permissions",
"Disable or Remove Feature or Program",
"Execution Prevention",
"Disable or Remove Feature or Program",
"Audit",
"Application Developer Guidance",
"Network Segmentation",
"Restrict File and Directory Permissions",
"Encrypt Sensitive Information",
"Remote Data Storage",
"Restrict File and Directory Permissions",
"Encrypt Sensitive Information",
"Remote Data Storage",
"Encrypt Sensitive Information",
"Network Segmentation",
"Restrict File and Directory Permissions",
"Network Intrusion Prevention",
"Software Configuration",
"User Training",
"Antivirus/Antimalware",
"Restrict Web-Based Content",
"Network Intrusion Prevention",
"Software Configuration",
"User Training",
"Antivirus/Antimalware",
"Restrict Web-Based Content",
"Software Configuration",
"User Training",
"Restrict Web-Based Content",
"User Training",
"Antivirus/Antimalware",
"Restrict Web-Based Content",
"Data Loss Prevention",
"Restrict Web-Based Content",
"Restrict Web-Based Content",
"Restrict Web-Based Content",
"Restrict Web-Based Content",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"Restrict Web-Based Content",
"Behavior Prevention on Endpoint",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"User Account Management",
"User Account Management",
"Behavior Prevention on Endpoint",
"Restrict File and Directory Permissions",
"Privileged Account Management",
"Filter Network Traffic",
"Network Intrusion Prevention",
"Network Segmentation",
"Network Intrusion Prevention",
"Filter Network Traffic",
"Network Intrusion Prevention",
"SSL/TLS Inspection",
"Network Intrusion Prevention",
"Network Intrusion Prevention",
"SSL/TLS Inspection",
"Network Intrusion Prevention",
"Execution Prevention",
"Audit",
"Restrict Library Loading",
"User Account Control",
"Update Software",
"Restrict Registry Permissions",
"Application Developer Guidance",
"Restrict File and Directory Permissions",
"User Account Management",
"Audit",
"Execution Prevention",
"Restrict Library Loading",
"Update Software",
"Application Developer Guidance",
"Restrict File and Directory Permissions",
"Audit",
"User Account Control",
"User Account Management",
"Execution Prevention",
"Operating System Configuration",
"Audit",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Audit",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Audit",
"Restrict File and Directory Permissions",
"Execution Prevention",
"Audit",
"User Account Control",
"User Account Management",
"Restrict Registry Permissions",
"Restrict Registry Permissions",
"Execution Prevention",
"User Account Management",
"Audit",
"User Account Management",
"Audit",
"User Account Management",
"Audit",
"User Account Management",
"Audit",
"User Account Management",
"User Account Management",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",
"Pre-compromise",