-
Notifications
You must be signed in to change notification settings - Fork 270
/
Copy pathmitre-mobile-attack-attack-pattern.json
1674 lines (1674 loc) · 92.7 KB
/
mitre-mobile-attack-attack-pattern.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": "attack-pattern",
"description": "ATT&CK tactic",
"name": "Mobile Attack - Attack Pattern",
"source": "https://github.com/mitre/cti",
"type": "mitre-mobile-attack-attack-pattern",
"uuid": "1e606d06-1708-11e8-8a43-df11c8cf9ae2",
"values": [
{
"description": "An SMS message could contain content designed to exploit vulnerabilities in the SMS parser on the receiving device. For example, Mulliner and Miller demonstrated such an attack against the iPhone in 2009 as described in (Citation: Forbes-iPhoneSMS).\n\nAn SMS message could also contain a link to a web site containing malicious content designed to exploit the device web browser.\n\nAs described by SRLabs in (Citation: SRLabs-SIMCard), vulnerable SIM cards may be remotely exploited and reprogrammed via SMS messages.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1057",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:exploit-via-cellular-network"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1057",
"http://www.forbes.com/2009/07/28/hackers-iphone-apple-technology-security-hackers.html",
"https://srlabs.de/bites/rooting-sim-cards/"
]
},
"related": [
{
"dest-uuid": "2d646840-f6f5-4619-a5a8-29c8316bbac5",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "0bcc4ec1-a897-49a9-a9ff-c00df1d1209d",
"value": "Malicious SMS Message - MOB-T1057"
},
{
"description": "If network traffic between the mobile device and remote servers is unencrypted or is encrypted in an insecure manner, then an adversary positioned on the network can eavesdrop on communication. For example, He et al. (Citation: mHealth) describe numerous healthcare-related applications that did not properly protect network communication.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-1",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:general-network-based"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1042",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-0.html",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-1.html",
"https://experts.illinois.edu/en/publications/security-concerns-in-android-mhealth-apps"
]
},
"uuid": "393e8c12-a416-4575-ba90-19cc85656796",
"value": "Eavesdrop on Insecure Network Communication - MOB-T1042"
},
{
"description": "An adversary could use knowledge of the techniques used by security software to evade detection. For example, some mobile security products perform compromised device detection by searching for particular artifacts such as an installed \"su\" binary, but that check could be evaded by naming the binary something else. Similarly, polymorphic code techniques could be used to evade signature-based detection as described by (Citation: Rastogi) et al. (Citation: Rastogi). \n\n (Citation: Brodie) (Citation: Brodie) describes limitations of jailbreak/root detection mechanisms.\n\n (Citation: Tan) (Citation: Tan) describes his experience defeating the jailbreak detection used by the iOS version of Good for Enterprise.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "EMM-5",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:defense-evasion"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1011",
"https://pages.nist.gov/mobile-threat-catalogue/emm-threats/EMM-5.html",
"http://pages.cs.wisc.edu/~vrastogi/static/papers/rcj13b.pdf",
"https://media.blackhat.com/eu-13/briefings/Brodie/bh-eu-13-lacoon-attacks-mdm-brodie-wp.pdf",
"http://www.blackhat.com/us-16/briefings.html#bad-for-enterprise-attacking-byod-enterprise-mobile-security-solutions"
]
},
"uuid": "b332a960-3c04-495a-827f-f17a5daed3a6",
"value": "Disguise Root/Jailbreak Indicators - MOB-T1011"
},
{
"description": "On Android, device type information is accessible to apps through the android.os.Build class (Citation: Android-Build). Device information could be used to target privilege escalation exploits.\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1022",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1022",
"https://zeltser.com/third-party-keyboards-security/"
]
},
"uuid": "89fcd02f-62dc-40b9-a54b-9ac4b1baef05",
"value": "Device Type Discovery - MOB-T1022"
},
{
"description": "A malicious app could use standard Android APIs to send SMS messages. SMS messages could potentially be sent to premium numbers that charge the device owner and generate revenue for an adversary, for example as described by Lookout in (Citation: Lookout-SMS).\n\nOn iOS, apps cannot send SMS messages.\n\nOn Android, apps must hold the SEND_SMS permission to send SMS messages. Additionally, Android version 4.2 and above has mitigations against this threat by requiring user consent before allowing SMS messages to be sent to premium numbers (Citation: AndroidSecurity2014).\n\nDetection: As described in Google's Android Security 2014 Year in Review Report (Citation: AndroidSecurity2014), starting with Android 4.2 the user is prompted and must provide consent before applications can send SMS messages to premium numbers.\n\nOn Android 6.0 and up, the user can view which applications have permission to send SMS messages through the device settings screen, and the user can choose to revoke the permissions.\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1051",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:effects"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1051",
"https://blog.lookout.com/blog/2013/08/02/dragon-lady/",
"https://static.googleusercontent.com/media/source.android.com/en//security/reports/Google%20Android%20Security%202014%20Report%20Final.pdf"
]
},
"uuid": "8f0e39c6-82c9-41ec-9f93-5696c0f2e274",
"value": "Premium SMS Toll Fraud - MOB-T1051"
},
{
"description": "An adversary who is able to obtain unauthorized access to or misuse authorized access to cloud backup services (e.g. Google's Android backup service or Apple's iCloud) could use that access to obtain sensitive data stored in device backups. For example, the Elcomsoft Phone Breaker product advertises the ability to retrieve iOS backup data from Apple's iCloud (Citation: Elcomsoft-EPPB).\n\nDetection: Google provides the ability for users to view their account activity. Apple iCloud also provides notifications to users of account activity.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "ECO-1",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:cloud-based"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1073",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-0.html",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-1.html",
"https://www.elcomsoft.com/eppb.html"
]
},
"uuid": "0c71033e-401e-4b97-9309-7a7c95e43a5d",
"value": "Obtain Device Cloud Backups - MOB-T1073"
},
{
"description": "On versions of Android prior to 4.1, an adversary may use a malicious application that holds the READ_LOGS permission to obtain private keys, passwords, other credentials, or other sensitive data stored in the device's system log. On Android 4.1 and later, an adversary would need to attempt to perform an operating system privilege escalation attack to be able to access the log.\n\nPlatforms: Android",
"meta": {
"external_id": "APP-13",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:collection",
"mitre-mobile-attack:mobile-attack:credential-access"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1016",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-3.html",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-13.html"
]
},
"uuid": "29e07491-8947-43a3-8d4e-9a787c45f3d3",
"value": "Access Sensitive Data in Device Logs - MOB-T1016"
},
{
"description": "With escalated privileges, an adversary could program the mobile device to impersonate USB devices such as input devices (keyboard and mouse), storage devices, and/or networking devices in order to attack a physically connected PC. Wang and Stavrou (Citation: Wang-ExploitingUSB) and Kamkar (Citation: ArsTechnica-PoisonTap) describe this technique. This technique has been demonstrated on Android, and we are unaware of any demonstrations on iOS.\n\nPlatforms: Android",
"meta": {
"external_id": "PHY-2",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:lateral-movement"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1030",
"https://pages.nist.gov/mobile-threat-catalogue/physical-threats/PHY-2.html",
"http://dl.acm.org/citation.cfm?id=1920314",
"http://arstechnica.com/security/2016/11/meet-poisontap-the-5-tool-that-ransacks-password-protected-computers/"
]
},
"uuid": "a0464539-e1b7-4455-a355-12495987c300",
"value": "Attack PC via USB Connection - MOB-T1030"
},
{
"description": "A malicious app can register to receive intents meant for other applications and may then be able to receive sensitive values such as OAuth authorization codes as described in (Citation: IETF-PKCE).\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1019",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:credential-access"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1019",
"https://tools.ietf.org/html/rfc7636"
]
},
"uuid": "77e30eee-fd48-40b4-99ec-73e97c158b58",
"value": "Android Intent Hijacking - MOB-T1019"
},
{
"description": "An iOS application may be able to maliciously claim a URL scheme, allowing it to intercept calls that are meant for a different application. This technique, for example, could be used to capture OAuth authorization codes as described in (Citation: IETF-PKCE) or to phish user credentials as described in (Citation: MobileIron-XARA). Related potential security implications are described in (Citation: Dhanjani-URLScheme). FireEye researchers describe URL scheme hijacking in a blog post (Citation: FireEye-Masque2), including evidence of its use.\n\nPlatforms: iOS",
"meta": {
"external_id": "AUT-10",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:credential-access"
],
"mitre_platforms": [
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1018",
"https://pages.nist.gov/mobile-threat-catalogue/authentication-threats/AUT-10.html",
"https://tools.ietf.org/html/rfc7636",
"https://www.mobileiron.com/en/smartwork-blog/ios-url-scheme-hijacking-xara-attack-analysis-and-countermeasures",
"http://www.dhanjani.com/blog/2010/11/insecure-handling-of-url-schemes-in-apples-ios.html",
"https://www.fireeye.com/blog/threat-research/2015/02/ios%20masque%20attackre.html"
]
},
"uuid": "8f142a25-f6c3-4520-bd50-2ae3ab50ed3e",
"value": "URL Scheme Hijacking - MOB-T1018"
},
{
"description": "Adversaries may attempt to exploit enterprise servers, workstations, or other resources over the network. This technique may take advantage of the mobile device's access to an internal enterprise network either through local connectivity or through a Virtual Private Network (VPN).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-32",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:lateral-movement"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1031",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-32.html"
]
},
"uuid": "22379609-a99f-4a01-bd7e-70f3e105859d",
"value": "Exploit Enterprise Resources - MOB-T1031"
},
{
"description": "If an adversary can escalate privileges, he or she may be able to use those privileges to place malicious code in the device system partition, where it may persist after device resets and may not be easily removed by the device user.\n\nMany Android devices provide the ability to unlock the bootloader for development purposes. An unlocked bootloader may provide the ability for an adversary to modify the system partition. Even if the bootloader is locked, it may be possible for an adversary to escalate privileges and then modify the system partition.\n\nDetection: Android devices with the Verified Boot capability (Citation: Android-VerifiedBoot) perform cryptographic checks of the integrity of the system partition.\n\nThe Android SafetyNet API's remote attestation capability could potentially be used to identify and respond to compromised devices.\n\nSamsung KNOX also provides a remote attestation capability on supported Samsung Android devices.\n\nAs described in the iOS Security Guide (Citation: Apple-iOSSecurityGuide), iOS devices will fail to boot or fail to allow device activation if unauthorized modifications are detected.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-27",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:defense-evasion",
"mitre-mobile-attack:mobile-attack:persistence"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1003",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-27.html",
"https://source.android.com/security/verifiedboot/",
"https://www.apple.com/business/docs/iOS%20Security%20Guide.pdf"
]
},
"uuid": "c5089859-b21f-40a3-8be4-63e381b8b1c0",
"value": "Modify System Partition - MOB-T1003"
},
{
"description": "An adversary may attempt to get detailed information about the operating system and hardware, including version, patches, and architecture.\n\nOn Android, much of this information is programmatically accessible to applications through the android.os.Build class (Citation: Android-Build).\n\nOn iOS, techniques exist for applications to programmatically access this information, for example as described in (Citation: StackOverflow-iOSVersion).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1029",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1029",
"https://zeltser.com/third-party-keyboards-security/",
"http://stackoverflow.com/questions/7848766/how-can-we-programmatically-detect-which-ios-version-is-device-running-on"
]
},
"uuid": "e2ea7f6b-8d4f-49c3-819d-660530d12b77",
"value": "System Information Discovery - MOB-T1029"
},
{
"description": "Adversaries may attempt to get a listing of services running on remote hosts, including those that may be vulnerable to remote software exploitation. Methods to acquire this information include port scans and vulnerability scans from the mobile device. This technique may take advantage of the mobile device's access to an internal enterprise network either through local connectivity or through a Virtual Private Network (VPN).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1026",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1026"
]
},
"uuid": "2de38279-043e-47e8-aaad-1b07af6d0790",
"value": "Network Service Scanning - MOB-T1026"
},
{
"description": "On Android, an adversary could call standard operating system APIs from a malicious application to gather call log data, or with escalated privileges could directly access files containing call log data.\n\nOn iOS, applications do not have access to the call log, so privilege escalation would be required in order to access the data.\n\nDetection: On Android 6.0 and up, the user can view which applications have permission to access call log information through the device settings screen, and the user can choose to revoke the permissions.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-13",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:collection"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1036",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-13.html"
]
},
"uuid": "79eec66a-9bd0-4a3f-ac82-19159e94bd44",
"value": "Access Call Log - MOB-T1036"
},
{
"description": "An adversary could evade app vetting techniques by placing code in a malicious application to detect whether it is running in an app analysis environment and, if so, avoid performing malicious actions while under analysis.\n\nDiscussion of general Android anti-analysis techniques can be found in (Citation: Petsas). Discussion of Google Play Store-specific anti-analysis techniques can be found in (Citation: Oberheide-Bouncer), (Citation: Percoco-Bouncer).\n\n (Citation: Wang) presents a discussion of iOS anti-analysis techniques.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "ECO-22",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:app-delivery-via-authorized-app-store"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1043",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-20.html",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-21.html",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-22.html",
"http://dl.acm.org/citation.cfm?id=2592796",
"https://jon.oberheide.org/files/summercon12-bouncer.pdf",
"https://media.blackhat.com/bh-us-12/Briefings/Percoco/BH%20US%2012%20Percoco%20Adventures%20in%20Bouncerland%20WP.pdf",
"https://www.usenix.org/conference/usenixsecurity13/technical-sessions/presentation/wang%20tielei"
]
},
"related": [
{
"dest-uuid": "d9db3d46-66ca-44b4-9daa-1ef97cb7465a",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "b765efd1-02e6-4e67-aebf-0fef5c37e54b",
"value": "Detect App Analysis Environment - MOB-T1043"
},
{
"description": "Content of a web page could be designed to exploit vulnerabilities in a web browser running on the mobile device.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "CEL-22",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:exploit-via-internet"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1059",
"https://pages.nist.gov/mobile-threat-catalogue/cellular-threats/CEL-22.html"
]
},
"uuid": "fd339382-bfec-4bf0-8d47-1caedc9e7e57",
"value": "Malicious Web Content - MOB-T1059"
},
{
"description": "An adversary could use fake identities, payment cards, etc., to create developer accounts to publish malicious applications to app stores. For example, Oberheide and Miller describe use of this technique in (Citation: Oberheide-Bouncer).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1045",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:app-delivery-via-authorized-app-store"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1045",
"https://jon.oberheide.org/files/summercon12-bouncer.pdf"
]
},
"related": [
{
"dest-uuid": "d9db3d46-66ca-44b4-9daa-1ef97cb7465a",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "e30cc912-7ea1-4683-9219-543b86cbdec9",
"value": "Fake Developer Accounts - MOB-T1045"
},
{
"description": "Content of a media (audio or video) file could be designed to exploit vulnerabilities in parsers on the mobile device, as for example demonstrated by the Android Stagefright vulnerability (Citation: Zimperium-Stagefright).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "CEL-22",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:exploit-via-internet"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1060",
"https://pages.nist.gov/mobile-threat-catalogue/cellular-threats/CEL-22.html",
"https://blog.zimperium.com/experts-found-a-unicorn-in-the-heart-of-android/"
]
},
"related": [
{
"dest-uuid": "fd339382-bfec-4bf0-8d47-1caedc9e7e57",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "a9cab8f6-4c94-4c9b-9e7d-9d863ff53431",
"value": "Malicious Media Content - MOB-T1060"
},
{
"description": "The application is delivered as an email attachment.\n\nDetection: An EMM/MDM or mobile threat protection solution can identify the presence of unwanted, known insecure, or malicious apps on devices. Enterprise email security solutions can identify the presence of Android or iOS application packages within email messages.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "ECO-13",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:app-delivery-via-other-means"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1037",
"https://pages.nist.gov/mobile-threat-catalogue/authentication-threats/AUT-9.html",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-13.html"
]
},
"related": [
{
"dest-uuid": "53263a67-075e-48fa-974b-91c5b5445db7",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "1f96d624-8409-4472-ad8a-30618ee6b2e2",
"value": "App Delivered via Email Attachment - MOB-T1037"
},
{
"description": "Adversaries may communicate using a common, standardized application layer protocol such as HTTP, HTTPS, SMTP, or DNS to avoid detection by blending in with existing traffic.\n\nIn the mobile environment, the Google Cloud Messaging (GCM; two-way) and Apple Push Notification Service (APNS; one-way server-to-device) are commonly used protocols on Android and iOS respectively that would blend in with routine device traffic and are difficult for enterprises to inspect. As described by Kaspersky (Citation: Kaspersky-MobileMalware), Google responds to reports of abuse by blocking access to GCM.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-29",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:command-and-control",
"mitre-mobile-attack:mobile-attack:exfiltration"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1040",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-29.html",
"https://securelist.com/analysis/kaspersky-security-bulletin/58335/mobile-malware-evolution-2013/"
]
},
"uuid": "6a3f6490-9c44-40de-b059-e5940f246673",
"value": "Standard Application Layer Protocol - MOB-T1040"
},
{
"description": "On Android, command line tools or the Java file APIs can be used to enumerate file system contents. However, Linux file permissions and SELinux policies generally strongly restrict what can be accessed by apps (without taking advantage of a privilege escalation exploit). The contents of the external storage directory are generally visible, which could present concern if sensitive data is inappropriately stored there.\n\niOS's security architecture generally restricts the ability to perform file and directory discovery without use of escalated privileges.\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1023",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1023"
]
},
"uuid": "cf28ca46-1fd3-46b4-b1f6-ec0b72361848",
"value": "File and Directory Discovery - MOB-T1023"
},
{
"description": "A malicious application could abuse Android device administrator access to wipe device contents, for example if a ransom is not paid.\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1050",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:effects"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1050"
]
},
"uuid": "8e27551a-5080-4148-a584-c64348212e4f",
"value": "Wipe Device Data - MOB-T1050"
},
{
"description": "An adversary could use a malicious or exploited application to surreptitiously record activities using the device microphone and/or camera through use of standard operating system APIs.\n\nDetection: On both Android (6.0 and up) and iOS, the user can view which applications have permission to use the microphone or the camera through the device settings screen, and the user can choose to revoke the permissions.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-19",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:collection"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1032",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-19.html"
]
},
"uuid": "6683aa0c-d98a-4f5b-ac57-ca7e9934a760",
"value": "Microphone or Camera Recordings - MOB-T1032"
},
{
"description": "The mobile device could contain built-in functionality with malicious behavior or exploitable vulnerabilities. An adversary could deliberately insert and take advantage of the malicious behavior or could exploit inadvertent vulnerabilities. In many cases, it is difficult to be certain whether exploitable functionality is due to malicious intent or simply an inadvertent mistake.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1076",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:supply-chain"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1076"
]
},
"related": [
{
"dest-uuid": "0d95940f-9583-4e0f-824c-a42c1be47fad",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "f9e4f526-ac9d-4df5-8949-833a82a1d2df",
"value": "Malicious or Vulnerable Built-in Device Functionality - MOB-T1076"
},
{
"description": "An app could contain malicious code in obfuscated or encrypted form, then deobfuscate or decrypt the code at runtime to evade many app vetting techniques, as described in (Citation: Rastogi) (Citation: Zhou) (Citation: TrendMicro-Obad) (Citation: Xiao-iOS).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-21",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:defense-evasion"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1009",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-21.html",
"http://pages.cs.wisc.edu/~vrastogi/static/papers/rcj13b.pdf",
"http://ieeexplore.ieee.org/document/6234407",
"http://blog.trendmicro.com/trendlabs-security-intelligence/cybercriminals-improve-android-malware-stealth-routines-with-obad/",
"http://www.slideshare.net/Shakacon/fruit-vs-zombies-defeat-nonjailbroken-ios-malware-by-claud-xiao"
]
},
"uuid": "d13fa042-8f26-44e1-a2a8-af0bf8e2ac9a",
"value": "Obfuscated or Encrypted Payload - MOB-T1009"
},
{
"description": "At least three methods exist to perform User Interface Spoofing:\n\nFirst, on both Android and iOS, an adversary could impersonate the user interface of a legitimate app or device function to trick a user into entering account credentials. \n\nSecond, on both Android and iOS, a malicious app could impersonate the identity of another app in order to trick users into installing and using it.\n\nThird, on older versions of Android, a malicious app could abuse mobile operating system features to interfere with a running legitimate app as described in (Citation: Felt-PhishingOnMobileDevices) and (Citation: Hassell-ExploitingAndroid). However, this technique appears to have been addressed starting in Android 5.0 with the deprecation of the Android's ActivityManager.getRunningTasks method and modification of its behavior (Citation: Android-getRunningTasks) and further addressed in Android 5.1.1 (Citation: StackOverflow-getRunningAppProcesses) to prevent a malicious app from determining what app is currently in the foreground.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-31",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:credential-access"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1014",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-31.html",
"http://w2spconf.com/2011/papers/felt-mobilephishing.pdf",
"http://conference.hitb.org/hitbsecconf2011kul/materials/D1T1",
"https://developer.android.com/reference/android/app/ActivityManager.html#getRunningTasks%28int%29",
"http://stackoverflow.com/questions/30619349/android-5-1-1-and-above-getrunningappprocesses-returns-my-application-packag"
]
},
"uuid": "3dd58c80-4c2e-458c-9503-1b2cd273c4d2",
"value": "User Interface Spoofing - MOB-T1014"
},
{
"description": "A message sent over a radio interface (typically cellular, but potentially Bluetooth, GPS, NFC, Wi-Fi or other) to the mobile device could exploit a vulnerability in code running on the device.\n\nD. Komaromy and N. Golde demonstrated baseband exploitation of a Samsung mobile device at the PacSec 2015 security conference (Citation: Register-BaseStation).\n\nWeinmann described and demonstrated \"the risk of remotely exploitable memory corruptions in cellular baseband stacks.\" (Citation: Weinmann-Baseband)\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "STA-19",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:exploit-via-cellular-network"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1058",
"https://pages.nist.gov/mobile-threat-catalogue/stack-threats/STA-18.html",
"https://pages.nist.gov/mobile-threat-catalogue/stack-threats/STA-19.html",
"http://www.theregister.co.uk/2015/11/12/mobile%20pwn2own1/",
"https://www.usenix.org/system/files/conference/woot12/woot12-final24.pdf"
]
},
"related": [
{
"dest-uuid": "2d646840-f6f5-4619-a5a8-29c8316bbac5",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "c91c304a-975d-4501-9789-0db1c57afd3f",
"value": "Exploit Baseband Vulnerability - MOB-T1058"
},
{
"description": "On Android versions prior to 5, applications can observe information about other processes that are running through methods in the ActivityManager class. On Android versions prior to 7, applications can obtain this information by executing the <code>ps</code> command, or by examining the <code>/proc</code> directory. Starting in Android version 7, use of the Linux kernel's <code>hidepid</code> feature prevents applications (without escalated privileges) from accessing this information (Citation: Android-SELinuxChanges).\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1027",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1027",
"https://code.google.com/p/android/issues/detail?id=205565"
]
},
"uuid": "1b51f5bc-b97a-498a-8dbd-bc6b1901bf19",
"value": "Process Discovery - MOB-T1027"
},
{
"description": "A malicious application can request Device Administrator privileges. If the user grants the privileges, the application can take steps to make its removal more difficult.\n\nDetection: The device user can view a list of apps with Device Administrator privilege in the device settings.\n\nPlatforms: Android",
"meta": {
"external_id": "APP-22",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:persistence"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1004",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-22.html"
]
},
"uuid": "82f04b1e-5371-4a6f-be06-411f0f43b483",
"value": "Abuse Device Administrator Access to Prevent Removal - MOB-T1004"
},
{
"description": "The application is downloaded from an arbitrary web site. A link to the application's download URI may be sent in an email or SMS, placed on another web site that the target is likely to view, or sent via other means (such as QR code).\n\nDetection: An EMM/MDM or mobile threat protection solution can identify the presence of unwanted, known insecure, or malicious apps on devices.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "ECO-21",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:app-delivery-via-other-means"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1034",
"https://pages.nist.gov/mobile-threat-catalogue/authentication-threats/AUT-9.html",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-21.html"
]
},
"related": [
{
"dest-uuid": "53263a67-075e-48fa-974b-91c5b5445db7",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "6b846ad0-cc20-4db6-aa34-91561397c5e2",
"value": "App Delivered via Web Download - MOB-T1034"
},
{
"description": "A malicious application could capture sensitive data sent via SMS, including authentication credentials. SMS is frequently used to transmit codes used for multi-factor authentication.\n\nOn Android, a malicious application must request and obtain permission (either at app install time or run time) in order to receive SMS messages. Alternatively, a malicious application could attempt to perform an operating system privilege escalation attack to bypass the permission requirement.\n\nOn iOS, applications cannot access SMS messages in normal operation, so an adversary would need to attempt to perform an operating system privilege escalation attack to potentially be able to access SMS messages.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1015",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:collection",
"mitre-mobile-attack:mobile-attack:credential-access"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1015"
]
},
"uuid": "e8b4e1ec-8e3b-484c-9038-4459b1ed8060",
"value": "Capture SMS Messages - MOB-T1015"
},
{
"description": "An adversary may encrypt files stored on the mobile device to prevent the user from accessing them, only unlocking access to the files after a ransom is paid. Without escalated privileges, the adversary is generally limited to only encrypting files in external/shared storage locations. This technique has been demonstrated on Android, and we are unaware of any demonstrated use on iOS.\n\nPlatforms: Android",
"meta": {
"external_id": "APP-28",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:effects"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1074",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-28.html"
]
},
"uuid": "d9e88203-2b5d-405f-a406-2933b1e3d7e4",
"value": "Encrypt Files for Ransom - MOB-T1074"
},
{
"description": "An adversary could abuse an iOS enterprise app signing key (intended for enterprise in-house distribution of apps) to sign malicious iOS apps so that they can be installed on iOS devices without the app needing to be published on Apple's App Store. For example, Xiao describes use of this technique in (Citation: Xiao-iOS).\n\nDetection: iOS 9 and above typically requires explicit user consent before allowing installation of applications signed with enterprise distribution keys rather than installed from Apple's App Store.\n\nPlatforms: iOS",
"meta": {
"external_id": "ECO-23",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:app-delivery-via-other-means"
],
"mitre_platforms": [
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1048",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-23.html",
"http://www.slideshare.net/Shakacon/fruit-vs-zombies-defeat-nonjailbroken-ios-malware-by-claud-xiao"
]
},
"related": [
{
"dest-uuid": "53263a67-075e-48fa-974b-91c5b5445db7",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "51aedbd6-2837-4d15-aeb0-cb09f2bf22ac",
"value": "Abuse of iOS Enterprise App Signing Key - MOB-T1048"
},
{
"description": "On Android, details of onboard network interfaces are accessible to apps through the java.net. (Citation: NetworkInterface) class (Citation: NetworkInterface). The Android (Citation: TelephonyManager) class can be used to gather related information such as the IMSI, IMEI, and phone number (Citation: TelephonyManager).\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1025",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1025",
"https://developer.android.com/reference/java/net/NetworkInterface.html",
"https://developer.android.com/reference/android/telephony/TelephonyManager.html"
]
},
"uuid": "d4536441-1bcc-49fa-80ae-a596ed3f7ffd",
"value": "Local Network Configuration Discovery - MOB-T1025"
},
{
"description": "Adversaries can communicate using cellular networks rather than enterprise Wi-Fi in order to bypass enterprise network monitoring systems. Adversaries may also communicate using other non-Internet Protocol mediums such as SMS, NFC, or Bluetooth to bypass network monitoring systems.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-30",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:command-and-control",
"mitre-mobile-attack:mobile-attack:exfiltration"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1041",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-30.html"
]
},
"uuid": "b3c2e5de-0941-4b57-ba61-af029eb5517a",
"value": "Alternate Network Mediums - MOB-T1041"
},
{
"description": "On Android, applications can use standard APIs to gather a list of network connections to and from the device. For example, the Network Connections app available in the Google Play Store (Citation: ConnMonitor) advertises this functionality.\n\nPlatforms: Android",
"meta": {
"external_id": "MOB-T1024",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:discovery"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1024",
"https://play.google.com/store/apps/details?id=com.antispycell.connmonitor&hl=en"
]
},
"uuid": "dd818ea5-adf5-41c7-93b5-f3b839a219fb",
"value": "Local Network Connections Discovery - MOB-T1024"
},
{
"description": "An adversary could make educated guesses of the device lock screen's PIN/password (e.g., commonly used values, birthdays, anniversaries) or attempt a dictionary or brute force attack against it. Brute force attacks could potentially be automated (Citation: PopSci-IPBox).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1062",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:exploit-via-physical-access"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1062",
"http://www.popsci.com/box-can-figure-out-your-4-digit-iphone-passcode"
]
},
"related": [
{
"dest-uuid": "dfe29258-ce59-421c-9dee-e85cb9fa90cd",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "f296fc9c-2ff5-43ee-941e-6b49c438270a",
"value": "Device Unlock Code Guessing or Brute Force - MOB-T1062"
},
{
"description": "A malicious app or other attack vector could be used to exploit vulnerabilities in code running within the Trusted Execution Environment (TEE) (Citation: Thomas-TrustZone). The adversary could then obtain privileges held by the TEE potentially including the ability to access cryptographic keys or other sensitive data (Citation: QualcommKeyMaster). Escalated operating system privileges may be first required in order to have the ability to attack the TEE (Citation: EkbergTEE). If not, privileges within the TEE can potentially be used to exploit the operating system (Citation: laginimaineb-TEE).\n\nPlatforms: Android",
"meta": {
"external_id": "APP-27",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:credential-access",
"mitre-mobile-attack:mobile-attack:privilege-escalation"
],
"mitre_platforms": [
"Android"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1008",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-27.html",
"https://usmile.at/symposium/program/2015/thomas-holmes",
"https://bits-please.blogspot.in/2016/06/extracting-qualcomms-keymaster-keys.html",
"https://usmile.at/symposium/program/2015/ekberg",
"http://bits-please.blogspot.co.il/2016/05/war-of-worlds-hijacking-linux-kernel.html"
]
},
"uuid": "ef771e03-e080-43b4-a619-ac6f84899884",
"value": "Exploit TEE Vulnerability - MOB-T1008"
},
{
"description": "An adversary could set up unauthorized Wi-Fi access points or compromise existing access points and, if the device connects to them, carry out network-based attacks such as eavesdropping on or modifying network communication as described in NIST SP 800-153 (Citation: NIST-SP800153). \n\nFor example, Kaspersky describes a threat actor they call DarkHotel that targeted hotel Wi-Fi networks, using them to compromise computers belonging to business executives (Citation: Kaspersky-DarkHotel).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "LPN-0",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:general-network-based"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1068",
"https://pages.nist.gov/mobile-threat-catalogue/lan-pan-threats/LPN-0.html",
"http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-153.pdf",
"https://blog.kaspersky.com/darkhotel-apt/6613/"
]
},
"uuid": "633baf01-6de4-4963-bb54-ff6c6357bed3",
"value": "Rogue Wi-Fi Access Points - MOB-T1068"
},
{
"description": "An adversary who is able to obtain unauthorized access to or misuse authorized access to cloud services (e.g. Google's Android Device Manager or Apple iCloud's Find my iPhone) or to an enterprise mobility management (EMM) / mobile device management (MDM) server console could use that access to track mobile devices.\n\nDetection: Google sends a notification to the device when Android Device Manager is used to locate it. Additionally, Google provides the ability for users to view their general account activity. Apple iCloud also provides notifications to users of account activity.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "EMM-7",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:cloud-based"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1071",
"https://pages.nist.gov/mobile-threat-catalogue/ecosystem-threats/ECO-5.html",
"https://pages.nist.gov/mobile-threat-catalogue/emm-threats/EMM-7.html"
]
},
"uuid": "6f86d346-f092-4abc-80df-8558a90c426a",
"value": "Remotely Track Device Without Authorization - MOB-T1071"
},
{
"description": "An adversary could attempt to spoof a mobile device's biometric authentication mechanism, for example by providing a fake fingerprint as described by SRLabs in (Citation: SRLabs-Fingerprint).\n\niOS partly mitigates this attack by requiring the device passcode rather than a fingerprint to unlock the device after every device restart and after 48 hours since the device was last unlocked (Citation: Apple-TouchID).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "MOB-T1063",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:exploit-via-physical-access"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1063",
"https://srlabs.de/bites/spoofing-fingerprints/",
"https://support.apple.com/en-us/HT204587"
]
},
"related": [
{
"dest-uuid": "dfe29258-ce59-421c-9dee-e85cb9fa90cd",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "revoked-by"
}
],
"uuid": "45dcbc83-4abc-4de1-b643-e528d1e9df09",
"value": "Biometric Spoofing - MOB-T1063"
},
{
"description": "An attacker could jam radio signals (e.g. Wi-Fi, cellular, GPS) to prevent the mobile device from communicating as described in draft NIST SP 800-187 (Citation: NIST-SP800187).\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "GPS-0",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:cellular-network-based",
"mitre-mobile-attack:mobile-attack:general-network-based"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1067",
"https://pages.nist.gov/mobile-threat-catalogue/cellular-threats/CEL-7.html",
"https://pages.nist.gov/mobile-threat-catalogue/cellular-threats/CEL-8.html",
"https://pages.nist.gov/mobile-threat-catalogue/lan-pan-threats/LPN-5.html",
"https://pages.nist.gov/mobile-threat-catalogue/gps-threats/GPS-0.html",
"http://csrc.nist.gov/publications/drafts/800-187/sp800%20187%20draft.pdf"
]
},
"uuid": "d2e112dc-f6d4-488d-b8df-ecbfb57a0a2d",
"value": "Jamming or Denial of Service - MOB-T1067"
},
{
"description": "A malicious app or other attack vector could capture sensitive data stored in the device clipboard, for example passwords being copy-and-pasted from a password manager app.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-35",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:collection",
"mitre-mobile-attack:mobile-attack:credential-access"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [
"https://attack.mitre.org/mobile/index.php/Technique/MOB-T1017",
"https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-35.html"
]
},
"uuid": "c4b96c0b-cb58-497a-a1c2-bb447d79d692",
"value": "Capture Clipboard Data - MOB-T1017"
},
{
"description": "An adversary could call standard operating system APIs from a malicious application to gather contact list (i.e., address book) data, or with escalated privileges could directly access files containing contact list data.\n\nDetection: On both Android (6.0 and up) and iOS, the user can view which applications have permission to access contact list information through the device settings screen, and the user can choose to revoke the permissions.\n\nPlatforms: Android, iOS",
"meta": {
"external_id": "APP-13",
"kill_chain": [
"mitre-mobile-attack:mobile-attack:collection"
],
"mitre_platforms": [
"Android",
"iOS"
],
"refs": [