-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathatrm.json
1287 lines (1287 loc) · 47.4 KB
/
atrm.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": [
"AlertIQ",
"Craig Fretwell",
"Dor Edry",
"Jonny Johnson",
"Karl Fosaaen",
"MITRE ATT&CK",
"Manuel Berrueta",
"Microsoft",
"Nestori Syynimaa",
"Nikhil Mittal",
"Ram Pliskin",
"Roberto Rodriguez",
"Ryan Cobb"
],
"category": "atrm",
"description": "The purpose of the Azure Threat Research Matrix (ATRM) is to educate readers on the potential of Azure-based tactics, techniques, and procedures (TTPs). It is not to teach how to weaponize or specifically abuse them. For this reason, some specific commands will be obfuscated or parts will be omitted to prevent abuse.",
"name": "Azure Threat Research Matrix",
"source": "https://github.com/microsoft/Azure-Threat-Research-Matrix",
"type": "atrm",
"uuid": "b541a056-154c-41e7-8a56-41db3f871c00",
"values": [
{
"description": "It is possible to view the open ports on a virtual machine by viewing the Virtual Network Interface's assigned Network Security Group",
"meta": {
"external_id": "AZT101",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT101/AZT101"
]
},
"uuid": "2b95d14b-2af8-53d9-b72b-a15a966fcd7a",
"value": "AZT101 - Port Mapping"
},
{
"description": "It is possible to view the IP address on a resource by viewing the Virtual Network Interface",
"meta": {
"external_id": "AZT102",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT102/AZT102"
]
},
"uuid": "1c5cdaa4-3e58-5158-8027-7b08c0bd93de",
"value": "AZT102 - IP Discovery"
},
{
"description": "A resource within Azure is accessible from the public internet.",
"meta": {
"external_id": "AZT103",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT103/AZT103"
]
},
"uuid": "6c6052f7-3d6b-503b-99b2-8c32e0ed44cf",
"value": "AZT103 - Public Accessible Resource"
},
{
"description": "An adversary may obtain information about a User within Azure Active Directory. Details may include email addresses, first/last names, job information, addresses, and assigned roles. By default, all users are able to read other user's roles and group memberships within AAD.",
"meta": {
"external_id": "AZT104",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT104/AZT104"
]
},
"uuid": "df3fd847-3947-5ffa-9fc1-3482575a0796",
"value": "AZT104 - Gather User Information"
},
{
"description": "An adversary may obtain information about an application within Azure Active Directory.",
"meta": {
"external_id": "AZT105",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT105/AZT105"
]
},
"uuid": "9a3ef449-a40d-5f65-bbc1-1170dea045d5",
"value": "AZT105 - Gather Application Information"
},
{
"description": "An adversary may obtain information about a role within Azure Active Directory or within Azure Resource Manager.",
"meta": {
"external_id": "AZT106",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT106/AZT106"
]
},
"uuid": "ce93d401-b5aa-55f2-942a-d06541dac19a",
"value": "AZT106 - Gather Role Information"
},
{
"description": "An adversary may gather role assignments within Azure Active Directory.",
"meta": {
"external_id": "AZT106.1",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT106/AZT106-1"
]
},
"uuid": "b8fc3465-e7d8-5615-a625-f1835d3c313e",
"value": "AZT106.1 - Gather AAD Role Information"
},
{
"description": "An adversary may gather information about an application role & it's member assignments within Azure Active Directory.",
"meta": {
"external_id": "AZT106.2",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT106/AZT106-2"
]
},
"uuid": "641e1474-3fa2-5851-9c5b-35bac592825e",
"value": "AZT106.2 - Gather Application Role Information"
},
{
"description": "An adversary may gather role assignments for a specific Azure Resource, Resource Group, or Subscription.",
"meta": {
"external_id": "AZT106.3",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT106/AZT106-3"
]
},
"uuid": "12374642-bb8b-5339-ae75-093390894e98",
"value": "AZT106.3 - Gather Azure Resources Role Assignments"
},
{
"description": "An adversary may obtain information and data within a resource.",
"meta": {
"external_id": "AZT107",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT107/AZT107"
]
},
"uuid": "41439ad7-9877-532a-a289-3fff16707deb",
"value": "AZT107 - Gather Resource Data"
},
{
"description": "An adversary may access a user's personal data if their account is compromised. This includes data such as email, OneDrive, Teams, etc.",
"meta": {
"external_id": "AZT108",
"kill_chain": [
"ATRM-tactics:Reconnaissance"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Reconnaissance/AZT108/AZT108"
]
},
"uuid": "08444afe-88de-50a9-8396-c9ca035afc22",
"value": "AZT108 - Gather Victim Data"
},
{
"description": "Adversaries may login to AzureAD using valid credentials. By logging in with valid credentials to an account or service principal, the adversary will assume all privileges of that account or service principal. If the account is privileged, this may lead to other tactics, such as persistence or privilege escalation.",
"meta": {
"external_id": "AZT201",
"kill_chain": [
"ATRM-tactics:Initial Access",
"ATRM-tactics:Privilege Escalation",
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/InitialAccess/AZT201/AZT201"
]
},
"uuid": "6ac38262-72d7-52a9-b450-a493ae97c7b4",
"value": "AZT201 - Valid Credentials"
},
{
"description": "By obtaining valid user credentials, an adversary may login to AzureAD via command line or through the Azure Portal.",
"meta": {
"external_id": "AZT201.1",
"kill_chain": [
"ATRM-tactics:Initial Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/InitialAccess/AZT201/AZT201-1"
]
},
"uuid": "6782f12a-7221-5a47-9aae-5eef4e030a02",
"value": "AZT201.1 - User Account"
},
{
"description": "By obtaining a valid secret or certificate, an adversary may login to AzureAD via command line.",
"meta": {
"external_id": "AZT201.2",
"kill_chain": [
"ATRM-tactics:Initial Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/InitialAccess/AZT201/AZT201-2"
]
},
"uuid": "30478a5c-82fc-5172-8129-0ece37005762",
"value": "AZT201.2 - Service Principal"
},
{
"description": "An adversary may potentially gain access to AzureAD by guessing a common password for multiple users.",
"meta": {
"external_id": "AZT202",
"kill_chain": [
"ATRM-tactics:Initial Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/InitialAccess/AZT202/AZT202"
]
},
"uuid": "fab95406-0d7c-5239-bb94-38e1ca52a70a",
"value": "AZT202 - Password Spraying"
},
{
"description": "An adversary may lure a victim into giving their access to a malicious application registered in AzureAD.",
"meta": {
"external_id": "AZT203",
"kill_chain": [
"ATRM-tactics:Initial Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/InitialAccess/AZT203/AZT203"
]
},
"uuid": "8a01a6ea-9fbb-518b-bae0-bafc27a54966",
"value": "AZT203 - Malicious Application Consent"
},
{
"description": "Adversaries may abuse access to virtual machines by executing a script through various methods in order to gain access to the Virtual Machine.",
"meta": {
"external_id": "AZT301",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301"
]
},
"uuid": "ac69d8a0-d616-5580-95a5-5abef15c8b81",
"value": "AZT301 - Virtual Machine Scripting"
},
{
"description": "By utilizing the 'RunCommand' feature on a Virtual Machine, an attacker can pass:* **Windows**: PowerShell commands to the VM as SYSTEM.* **Linux**: Shell commands to the VM as root.",
"meta": {
"external_id": "AZT301.1",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-1"
]
},
"uuid": "9369194c-c4d6-5df4-aab1-93c1b3c631c2",
"value": "AZT301.1 - RunCommand"
},
{
"description": "By utilizing the 'CustomScriptExtension' extension on a Virtual Machine, an attacker can pass PowerShell commands to the VM as SYSTEM.",
"meta": {
"external_id": "AZT301.2",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-2"
]
},
"uuid": "04ee0b6c-40dd-5e71-8825-b4ac9acdb0de",
"value": "AZT301.2 - CustomScriptExtension"
},
{
"description": "By utilizing the 'Desired State Configuration extension' extension on a Virtual Machine, an attacker can pass PowerShell commands to the VM as SYSTEM.",
"meta": {
"external_id": "AZT301.3",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-3"
]
},
"uuid": "40233909-2e71-5884-95e6-79b2a06ffa46",
"value": "AZT301.3 - Desired State Configuration"
},
{
"description": "By utilizing Compute Gallery Applications, an attacker can pass MS-DOS or PowerShell commands to the VM as SYSTEM.",
"meta": {
"external_id": "AZT301.4",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-4"
]
},
"uuid": "74db1f38-d26b-576b-abac-b6b2ca53bcc8",
"value": "AZT301.4 - Compute Gallery Application"
},
{
"description": "By utilizing 'command invoke' on an Azure Kubernetes Service (AKS) cluster, an attacker can pass commands to the cluster's VM as SYSTEM",
"meta": {
"external_id": "AZT301.5",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-5"
]
},
"uuid": "dd442218-8ee7-5601-9fae-9d5ab16fcf62",
"value": "AZT301.5 - AKS Command Invoke"
},
{
"description": "By utilizing the 'RunCommand' feature on a virtual machine scale set (Vmss), an attacker can execute a command on an instance or instances of VMs as:* **Windows**: PowerShell commands to the VM as SYSTEM.* **Linux**: Shell commands to the VM as root.",
"meta": {
"external_id": "AZT301.6",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-6"
]
},
"uuid": "6d141243-f440-54bb-9de3-81b65a01faf4",
"value": "AZT301.6 - Vmss Run Command"
},
{
"description": "By utilizing the serial console feature on an Azure Virtual Machine, an adversary can pass arbitrary commands.",
"meta": {
"external_id": "AZT301.7",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT301/AZT301-7"
]
},
"uuid": "b2f70558-6986-5dab-9a49-55fa5a1212bb",
"value": "AZT301.7 - Serial Console"
},
{
"description": "Adversaries may abuse access to serverless resources that are able to execute PowerShell or Python scripts on an Azure resource.",
"meta": {
"external_id": "AZT302",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT302/AZT302"
]
},
"uuid": "5ff07106-9f9e-5e52-9513-ccc856ea295a",
"value": "AZT302 - Serverless Scripting"
},
{
"description": "By utilizing an Automation Account configured with a Hybrid Worker Group, an attacker can execute Azure commands on any Azure VM within that Hybrid Worker Group.",
"meta": {
"external_id": "AZT302.1",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT302/AZT302-1"
]
},
"uuid": "0b61dd42-24af-586a-b910-9c780c12d92a",
"value": "AZT302.1 - Automation Account Runbook Hybrid Worker Group"
},
{
"description": "By utilizing an Automation Account configured with a RunAs account, an attacker can execute commands on an Azure VM via RunCommand [(AZT301.1)](../AZT301/AZT301-1.md) if that service principal has the correct role and privileges.",
"meta": {
"external_id": "AZT302.2",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT302/AZT302-2"
]
},
"uuid": "21851b3a-6fd8-563a-8a51-f8ec44313879",
"value": "AZT302.2 - Automation Account Runbook RunAs Account"
},
{
"description": "By utilizing an Automation Account configured with a Managed Identity, an attacker can execute commands on an Azure VM via RunCommand [(AZT301.1)](../AZT301/AZT301-1.md) if that service principal has the correct role and privileges.",
"meta": {
"external_id": "AZT302.3",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT302/AZT302-3"
]
},
"uuid": "69c9faf8-2f97-5be1-ac7c-446593e88089",
"value": "AZT302.3 - Automation Account Runbook Managed Identity"
},
{
"description": "By utilizing a Function Application, an attacker can execute Azure operations on a given resource.",
"meta": {
"external_id": "AZT302.4",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT302/AZT302-4"
]
},
"uuid": "b38b17be-7adc-529d-8f75-378d5e298f5f",
"value": "AZT302.4 - Function Application"
},
{
"description": "Adversaries may abuse access to any managed devices in AzureAD by executing PowerShell or Python scripts on them.",
"meta": {
"external_id": "AZT303",
"kill_chain": [
"ATRM-tactics:Execution"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Execution/AZT303/AZT303"
]
},
"uuid": "5f103828-8662-50b7-a7b3-faa546194729",
"value": "AZT303 - Managed Device Scripting"
},
{
"description": "An adversary may escalate their privileges if their current account is eligible for role activation via Privileged Identity Management (PIM).",
"meta": {
"external_id": "AZT401",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT401/AZT401"
]
},
"uuid": "74deaa24-30f1-5642-a1e1-44c8cbea46a7",
"value": "AZT401 - Privileged Identity Management Role"
},
{
"description": "An adversary may escalate their privileges from Azure AD to all Azure subscriptions in the tenant if they are a global administrator",
"meta": {
"external_id": "AZT402",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT402/AZT402"
]
},
"uuid": "f264fd49-c9a1-5ada-ba42-b59cb609d656",
"value": "AZT402 - Elevated Access Toggle"
},
{
"description": "By modifying the .bashrc file in a CloudShell .IMG file, an adversary may escalate their privileges by injecting commands that will add an arbitrary user account to a desired role and scope.",
"meta": {
"external_id": "AZT403",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT403/AZT403-1"
]
},
"uuid": "9c190f8f-3ec2-5d7c-b19d-a8f5d40d826e",
"value": "AZT403 - Local Resource Hijack"
},
{
"description": "Adversaries may abuse resources that are configured with a service principal or other identity to further their access to the current or other resources.",
"meta": {
"external_id": "AZT404",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT404/AZT404"
]
},
"uuid": "adeea4ca-8ff0-5159-815d-4bd53b0d1877",
"value": "AZT404 - Principal Impersonation"
},
{
"description": "By utilizing a Function Application configured with a managed identity or other identity provider, an attacker can execute Azure operations on a given resource.",
"meta": {
"external_id": "AZT404.1",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT404/AZT404-1"
]
},
"uuid": "7ed04b40-029b-5eb0-8c3d-e021f47e6bfa",
"value": "AZT404.1 - Function Application"
},
{
"description": "By utilizing a Logic Application configured with a managed identity or other identity provider, an attacker can execute Azure operations on a given resource.",
"meta": {
"external_id": "AZT404.2",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT404/AZT404-2"
]
},
"uuid": "a7bf6734-eae0-53d0-8356-be438c3909eb",
"value": "AZT404.2 - Logic Application"
},
{
"description": "By utilizing a Function Application, an attacker can execute Azure operations on a given resource.",
"meta": {
"external_id": "AZT404.3",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT404/AZT404-3"
]
},
"uuid": "d1694a7f-8497-5ce6-b426-b65728778bc2",
"value": "AZT404.3 - Automation Account"
},
{
"description": "By utilizing an App Service configured with a managed identity or other identity provider, an attacker can execute Azure operations on a given resource.",
"meta": {
"external_id": "AZT404.4",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT404/AZT404-4"
]
},
"uuid": "a69ea209-9156-5cfd-8190-c8e7c0d667bc",
"value": "AZT404.4 - App Service"
},
{
"description": "Adversaries may abuse the assigned permissions on an Azure AD Application to escalate their privileges.",
"meta": {
"external_id": "AZT405",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT405/AZT405"
]
},
"uuid": "67271cac-5189-56b2-86e3-a40879107eca",
"value": "AZT405 - Azure AD Application"
},
{
"description": "By compromising a user, user in a group, or service principal that has an application role over an application, they may be able to escalate their privileges by impersonating the associated service principal and leveraging any privileged assigned application role.",
"meta": {
"external_id": "AZT405.1",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT405/AZT405-1"
]
},
"uuid": "f46e3cf1-d5d4-540e-b96d-d46ca6c092b9",
"value": "AZT405.1 - Application API Permissions"
},
{
"description": "By compromising a service principal whose application has privileged API permissions, an attacker can escalate their privileges to a higher privileged role.",
"meta": {
"external_id": "AZT405.2",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT405/AZT405-2"
]
},
"uuid": "b00aa43b-033e-5c73-a558-adaf16391169",
"value": "AZT405.2 - Application Role"
},
{
"description": "By compromising an account who is an 'Owner' over an application that is configured with additional roles or API permissions, an attacker can escalate their privileges by adding a certificate or credentials & logging in as the service principal.",
"meta": {
"external_id": "AZT405.3",
"kill_chain": [
"ATRM-tactics:Privilege Escalation"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/PrivilegeEscalation/AZT405/AZT405-3"
]
},
"uuid": "c9012720-805b-5765-bb19-117b8844fff7",
"value": "AZT405.3 - Application Registration Owner"
},
{
"description": "An adverary may manipulate an account to maintain access in an Azure tenant",
"meta": {
"external_id": "AZT501",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT501/AZT501"
]
},
"uuid": "63bdb79b-02b5-53f5-84cd-7af94c28b5f8",
"value": "AZT501 - Account Manipulation"
},
{
"description": "An adverary may manipulate a user account to maintain access in an Azure tenant",
"meta": {
"external_id": "AZT501.1",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT501/AZT501-1"
]
},
"uuid": "76b94161-b0c4-58e9-8f2e-38c53e72af71",
"value": "AZT501.1 - User Account Manipulation"
},
{
"description": "An adverary may manipulate a service principal to maintain access in an Azure tenant",
"meta": {
"external_id": "AZT501.2",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT501/AZT501-2"
]
},
"uuid": "011f820f-cb51-5118-b491-6b533f907c64",
"value": "AZT501.2 - Service Principal Manipulation"
},
{
"description": "An adverary may manipulate the local admin account on an Azure VM",
"meta": {
"external_id": "AZT501.3",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT501/AZT501-3"
]
},
"uuid": "a9e76b8d-9a2e-5635-8d31-2f2782f1b4b1",
"value": "AZT501.3 - Azure VM Local Administrator Manipulation"
},
{
"description": "An adversary may create an account in Azure Active Directory.",
"meta": {
"external_id": "AZT502",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT502/AZT502"
]
},
"uuid": "c3e571e8-9893-5e3c-ac6b-cd2cfdf353b7",
"value": "AZT502 - Account Creation"
},
{
"description": "An adversary may create an application & service principal in Azure Active Directory",
"meta": {
"external_id": "AZT502.1",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT502/AZT502-1"
]
},
"uuid": "abfc6aa3-2201-5c2b-8c23-ac50a918d692",
"value": "AZT502.1 - User Account Creation"
},
{
"description": "An adversary may create an application & service principal in Azure Active Directory",
"meta": {
"external_id": "AZT502.2",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT502/AZT502-2"
]
},
"uuid": "fa999394-eadd-550a-8d47-50cdc65abe9a",
"value": "AZT502.2 - Service Principal Creation"
},
{
"description": "An adversary may create a guest account in Azure Active Directory",
"meta": {
"external_id": "AZT502.3",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT502/AZT502-3"
]
},
"uuid": "9f28935a-4eba-55bf-8f02-93ec6479bd31",
"value": "AZT502.3 - Guest Account Creation"
},
{
"description": "Adversaries may configure a resource with an HTTP trigger to run commands without needing authentication.",
"meta": {
"external_id": "AZT503",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT503/AZT503"
]
},
"uuid": "fbdebeff-4c97-5576-8ca1-edc008c8d6f0",
"value": "AZT503 - HTTP Trigger"
},
{
"description": "Adversaries may configure a Logic Application with a user account or managed identity and modify the HTTP trigger to run a command via HTTP request.",
"meta": {
"external_id": "AZT503.1",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT503/AZT503-1"
]
},
"uuid": "a540c588-a229-5f06-8e55-aa9936d48d29",
"value": "AZT503.1 - Logic Application HTTP Trigger"
},
{
"description": "Adversaries may configure a Function Application with a user account or managed identity and modify the HTTP trigger to run a command via HTTP request.",
"meta": {
"external_id": "AZT503.2",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT503/AZT503-2"
]
},
"uuid": "6e223830-9497-5d9d-9e64-2349d8fd7da3",
"value": "AZT503.2 - Function App HTTP Trigger"
},
{
"description": "Adversaries may create a webhook to a Runbook which allows unauthenticated access into an Azure subscription or tenant.",
"meta": {
"external_id": "AZT503.3",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT503/AZT503-3"
]
},
"uuid": "efe38e61-5580-5b23-b947-f93dfc1c6e1b",
"value": "AZT503.3 - Runbook Webhook"
},
{
"description": "Adversaries may create a WebJob on a App Service which allows arbitrary background tasks to be run on a set schedule",
"meta": {
"external_id": "AZT503.4",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT503/AZT503-4"
]
},
"uuid": "3b5e2af6-1e38-562b-8969-048ad7a75262",
"value": "AZT503.4 - WebJob"
},
{
"description": "By configurating a watcher task and a Runbook, an adversary can establish persistence by executing the Runbook on a triggered event.",
"meta": {
"external_id": "AZT504",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT504/AZT504"
]
},
"uuid": "94a052a1-83aa-588c-9d8e-1269e7e9eecf",
"value": "AZT504 - Watcher Tasks"
},
{
"description": "Adversaries may create a schedule for a Runbook to run at a defined interval.",
"meta": {
"external_id": "AZT505",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT505/AZT505-1"
]
},
"uuid": "4818f3d9-39ae-58ba-8e3c-c38610473435",
"value": "AZT505 - Scheduled Jobs"
},
{
"description": "Adversaries can modify the rules in a Network Security Group to establish access over additional ports.",
"meta": {
"external_id": "AZT506",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT506/AZT506"
]
},
"uuid": "b611390f-01b1-5043-8abd-0f37a1edcb14",
"value": "AZT506 - Network Security Group Modification"
},
{
"description": "Adversaries may configure the target Azure tenant to be managed by another, externel tenant, or its users.",
"meta": {
"external_id": "AZT507",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT507/AZT507"
]
},
"uuid": "1a35a003-3f49-560d-a54a-8acfbf203b97",
"value": "AZT507 - External Entity Access"
},
{
"description": "Adversaries may utilize Azure Lighthouse to manage the target tenant from an external tenant",
"meta": {
"external_id": "AZT507.1",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT507/AZT507-1"
]
},
"uuid": "dc904434-aac2-5509-8ecf-7ef7d1b22c28",
"value": "AZT507.1 - Azure Lighthouse"
},
{
"description": "Adversaries may use Delegated Administrative Privileges to give themselves administrator access to the target tenant.",
"meta": {
"external_id": "AZT507.2",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT507/AZT507-2"
]
},
"uuid": "5f12fafa-7f63-5066-968c-d5d82d292623",
"value": "AZT507.2 - Microsoft Partners"
},
{
"description": "An adversary may transfer a subscription from a target tenant to an attacker-controlled tenant. This retains the billing account setup by the target and the target tenant administrators will no longer have control over the subscription.",
"meta": {
"external_id": "AZT507.3",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT507/AZT507-3"
]
},
"uuid": "bcaad79d-3751-569b-97cc-cc21605a83bd",
"value": "AZT507.3 - Subscription Hijack"
},
{
"description": "An adversary may add an additional identity provider or domain to maintain a backdoor into the tenant.",
"meta": {
"external_id": "AZT507.4",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT507/AZT507-4"
]
},
"uuid": "0c19e4bf-39f4-577e-a722-af289cbe594e",
"value": "AZT507.4 - Domain Trust Modification"
},
{
"description": "By configuring a policy with the 'DeployIfNotExists' definition, an adverary may establish persistence by creating a backdoor when the policy is triggered.",
"meta": {
"external_id": "AZT508",
"kill_chain": [
"ATRM-tactics:Persistence"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/Persistence/AZT508/AZT508"
]
},
"uuid": "3f56cce5-bfd6-5cde-8e64-8142fcce23f4",
"value": "AZT508 - Azure Policy"
},
{
"description": "An adverary may utilize the resource's functionality to obtain a JWT for the applied Managed Identity Service Principal account.",
"meta": {
"external_id": "AZT601",
"kill_chain": [
"ATRM-tactics:Credential Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/CredentialAccess/AZT601/AZT601"
]
},
"uuid": "8c2dea2c-2bfd-53b0-aca5-1e6d3bf4b369",
"value": "AZT601 - Steal Managed Identity JsonWebToken"
},
{
"description": "By utilizing access to IMDS, an attacker can request a JWT for a Managed Identity on an Azure VM if they have access to execute commands on the system.",
"meta": {
"external_id": "AZT601.1",
"kill_chain": [
"ATRM-tactics:Credential Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/CredentialAccess/AZT601/AZT601-1"
]
},
"uuid": "e11c90b6-eba6-5f5a-93f6-7c7de1bdd104",
"value": "AZT601.1 - Virtual Machine IMDS Request"
},
{
"description": "By utilizing access to IMDS, an attacker can request a JWT for a Managed Identity on an AKS Cluster if they have access to execute commands on the system.",
"meta": {
"external_id": "AZT601.2",
"kill_chain": [
"ATRM-tactics:Credential Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/CredentialAccess/AZT601/AZT601-2"
]
},
"uuid": "6c8935d7-037d-568d-86a6-2eeadf5ca385",
"value": "AZT601.2 - Azure Kubernetes Service IMDS Request"
},
{
"description": "If a Logic App is using a Managed Identity, an adversary can modify the logic to make an HTTP POST request to reveal the Managed Identity's JWT.",
"meta": {
"external_id": "AZT601.3",
"kill_chain": [
"ATRM-tactics:Credential Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/CredentialAccess/AZT601/AZT601-3"
]
},
"uuid": "36c2bbe2-07b7-5601-ae4a-0657a1c75895",
"value": "AZT601.3 - Logic Application JWT PUT Request"
},
{
"description": "If a Function App is using a Managed Identity, an adversary can modify the logic respond to an HTTP GET request to reveal the Managed Identity's JWT.",
"meta": {
"external_id": "AZT601.4",
"kill_chain": [
"ATRM-tactics:Credential Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/CredentialAccess/AZT601/AZT601-4"
]
},
"uuid": "c64f2172-0dc5-5061-8128-c6c1fc59d3b3",
"value": "AZT601.4 - Function Application JWT GET Request"
},
{
"description": "If an Automation Account is using a Managed Identity, an adversary can create a Runbook to request the Managed Identity's JWT.",
"meta": {
"external_id": "AZT601.5",
"kill_chain": [
"ATRM-tactics:Credential Access"
],
"refs": [
"https://microsoft.github.io/Azure-Threat-Research-Matrix/CredentialAccess/AZT601/AZT601-5"