forked from MISP/misp-galaxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
android.json
4659 lines (4659 loc) · 180 KB
/
android.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": [
"Unknown"
],
"category": "tool",
"description": "Android malware galaxy based on multiple open sources.",
"name": "Android",
"source": "Open Sources",
"type": "android",
"uuid": "84310ba3-fa6a-44aa-b378-b9e3271c58fa",
"values": [
{
"description": "CopyCat is a fully developed malware with vast capabilities, including rooting devices, establishing persistency, and injecting code into Zygote – a daemon responsible for launching apps in the Android operating system – that allows the malware to control any activity on the device.",
"meta": {
"refs": [
"https://blog.checkpoint.com/2017/07/06/how-the-copycat-malware-infected-android-devices-around-the-world/"
]
},
"uuid": "40aa797a-ee87-43a1-8755-04d040dbea28",
"value": "CopyCat"
},
{
"description": "Andr/Dropr-FH can silently record audio and video, monitor texts and calls, modify files, and ultimately spawn ransomware.",
"meta": {
"refs": [
"https://nakedsecurity.sophos.com/2017/07/21/watch-out-for-the-android-malware-that-snoops-on-your-phone/",
"https://www.neowin.net/news/the-ghostctrl-android-malware-can-silently-record-your-audio-and-steal-sensitive-data"
],
"synonyms": [
"GhostCtrl"
]
},
"related": [
{
"dest-uuid": "3b6c1771-6d20-4177-8be0-12116e254bf5",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "a01e1d0b-5303-4d11-94dc-7db74f3d599d",
"value": "Andr/Dropr-FH"
},
{
"description": "The malware, dubbed Judy, is an auto-clicking adware which was found on 41 apps developed by a Korean company. The malware uses infected devices to generate large amounts of fraudulent clicks on advertisements, generating revenues for the perpetrators behind it.",
"meta": {
"refs": [
"http://fortune.com/2017/05/28/android-malware-judy/",
"https://blog.checkpoint.com/2017/05/25/judy-malware-possibly-largest-malware-campaign-found-google-play/"
]
},
"uuid": "1a73ceaf-7054-4882-be82-8994805676fc",
"value": "Judy"
},
{
"description": "The trojan waits in hiding until the user opens a banking or social media app. When this happens, the trojan shows an HTML-based overlay on top of the original app, alerting the user of an error, and asking to reauthenticate. Red Alert then collects the user's credentials and sends them to its C&C server.",
"meta": {
"refs": [
"https://www.bleepingcomputer.com/news/security/researchers-discover-new-android-banking-trojan/",
"https://www.threatfabric.com/blogs/new_android_trojan_targeting_over_60_banks_and_social_apps.html"
]
},
"related": [
{
"dest-uuid": "e9aaab46-abb1-4390-b37b-d0457d05b28f",
"synonyms": [
"Red Alert 2",
"Red Alert 2.0"
],
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "d10f8cd5-0077-4d8f-9145-03815a68dd33",
"value": "RedAlert2"
},
{
"description": "Tizi is a fully featured backdoor that installs spyware to steal sensitive data from popular social media applications. The Google Play Protect security team discovered this family in September 2017 when device scans found an app with rooting capabilities that exploited old vulnerabilities. The team used this app to find more applications in the Tizi family, the oldest of which is from October 2015. The Tizi app developer also created a website and used social media to encourage more app installs from Google Play and third-party websites.",
"meta": {
"refs": [
"https://security.googleblog.com/2017/11/tizi-detecting-and-blocking-socially.html"
]
},
"uuid": "8f374460-aa58-4a31-98cb-58db42d0902a",
"value": "Tizi"
},
{
"description": "DoubleLocker can change the device’s PIN, preventing victims from accessing their devices, and also encrypts the data requesting a ransom. It will misuse accessibility services after being installed by impersonating the Adobe Flash player - similar to BankBot.",
"meta": {
"refs": [
"https://www.welivesecurity.com/2017/10/13/doublelocker-innovative-android-malware/"
]
},
"related": [
{
"dest-uuid": "10d0115a-00b4-414e-972b-8320a2bb873c",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "6671bb0b-4fab-44a7-92f9-f641a887a0aa",
"value": "DoubleLocker"
},
{
"description": "Svpeng is a Banking trojan which acts as a keylogger. If the Android device is not Russian, Svpeng will ask for permission to use accessibility services. In abusing this service it will gain administrator rights allowing it to draw over other apps, send and receive SMS and take screenshots when keys are pressed. ",
"meta": {
"refs": [
"https://securelist.com/a-new-era-in-mobile-banking-trojans/79198/",
"https://www.theregister.co.uk/2017/08/02/banking_android_malware_in_uk/"
],
"synonyms": [
"Invisble Man"
]
},
"related": [
{
"dest-uuid": "a33df440-f112-4a5e-a290-3c65dae6091d",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "d99c0a47-9d61-4d92-86ec-86a87b060d76",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "426ead34-b3e6-45c7-ba22-5b8f3b8214bd",
"value": "Svpeng"
},
{
"description": "LokiBot is a banking trojan for Android 4.0 and higher. It can steal the information and send SMS messages. It has the ability to start web browsers, and banking applications, along with showing notifications impersonating other apps. Upon attempt to remove it will encrypt the devices' external storage requiring Bitcoins to decrypt files.",
"meta": {
"refs": [
"https://clientsidedetection.com/lokibot___the_first_hybrid_android_malware.html"
]
},
"related": [
{
"dest-uuid": "b8fa5036-813f-4887-b4d4-bb17b4a7eba0",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "4793a29b-1191-4750-810e-9301a6576fc4",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "fbda9705-677b-4c5b-9b0b-13b52eff587c",
"value": "LokiBot"
},
{
"description": "The main goal of this malware is to steal banking credentials from the victim’s device. It usually impersonates flash player updaters, android system tools, or other legitimate applications.",
"meta": {
"refs": [
"https://blog.fortinet.com/2017/09/19/a-look-into-the-new-strain-of-bankbot",
"https://forensics.spreitzenbarth.de/android-malware/",
"https://blog.avast.com/mobile-banking-trojan-sneaks-into-google-play-targeting-wells-fargo-chase-and-citibank-customers"
]
},
"related": [
{
"dest-uuid": "85975621-5126-40cb-8083-55cbfa75121b",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "4ed03b03-a34f-4583-9db1-6c58a4bd952b",
"value": "BankBot"
},
{
"description": "In rooted devices, Viking Horde installs software and executes code remotely to get access to the mobile data.",
"meta": {
"refs": [
"http://www.alwayson-network.com/worst-types-android-malware-2016/"
]
},
"uuid": "c62a6121-2ebc-4bee-a25a-5285bf33328a",
"value": "Viking Horde"
},
{
"description": "A Chinese advertising company has developed this malware. The malware has the power to take control of devices; it forces users to click advertisements and download apps. The malware uses a multistage attack chain.",
"meta": {
"refs": [
"http://www.alwayson-network.com/worst-types-android-malware-2016/",
"http://blog.checkpoint.com/wp-content/uploads/2016/07/HummingBad-Research-report_FINAL-62916.pdf"
]
},
"related": [
{
"dest-uuid": "c8770c81-c29f-40d2-a140-38544206b2b4",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "f5cacc72-f02a-42d1-a020-7a59650086bb",
"value": "HummingBad"
},
{
"description": "Ackposts is a Trojan horse for Android devices that steals the Contacts information from the compromised device and sends it to a predetermined location.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-072302-3943-99"
]
},
"uuid": "8261493f-c9a3-4946-874f-fe8445aa7691",
"value": "Ackposts"
},
{
"description": "Wirex is a Trojan horse for Android devices that opens a backdoor on the compromised device which then joins a botnet for conducting click fraud.",
"meta": {
"refs": [
"https://krebsonsecurity.com/2017/08/tech-firms-team-up-to-take-down-wirex-android-ddos-botnet/",
"http://www.zdnet.com/article/wirex-ddos-malware-given-udp-flood-capabilities/"
]
},
"uuid": "0b4f1af0-e0fb-4148-b08c-f6782757752a",
"value": "Wirex"
},
{
"description": "WannaLocker is a strain of ransomware for Android devices that encrypts files on the device's external storage and demands a payment to decrypt them.",
"meta": {
"refs": [
"https://fossbytes.com/wannalocker-ransomware-wannacry-android/"
]
},
"uuid": "db4ddfc4-4f39-4e0b-905f-4703ed6b39b6",
"value": "WannaLocker"
},
{
"description": "Switcher is a Trojan horse for Android devices that modifies Wi-Fi router DNS settings. Swticher attempts to infiltrate a router's admin interface on the devices' WIFI network by using brute force techniques. If the attack succeeds, Switcher alters the DNS settings of the router, making it possible to reroute DNS queries to a network controlled by the malicious actors.",
"meta": {
"refs": [
"http://www.zdnet.com/article/this-android-infecting-trojan-malware-uses-your-phone-to-attack-your-router/",
"https://www.theregister.co.uk/2017/01/03/android_trojan_targets_routers/",
"https://www.symantec.com/security_response/writeup.jsp?docid=2017-090410-0547-99"
]
},
"related": [
{
"dest-uuid": "e3e90666-bc19-4741-aca8-1e4cbc2f4c9e",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "60857664-0671-4b12-ade9-86ee6ecb026a",
"value": "Switcher"
},
{
"description": "Vibleaker was an app available on the Google Play Store named Beaver Gang Counter that contained malicious code that after specific orders from its maker would scan the user's phone for the Viber app, and then steal photos and videos recorded or sent through the app.",
"meta": {
"refs": [
"http://news.softpedia.com/news/malicious-android-app-steals-viber-photos-and-BankBot-505758.shtml"
]
},
"uuid": "27354d65-ca90-4f73-b942-13046e61700c",
"value": "Vibleaker"
},
{
"description": "ExpensiveWall is Android malware that sends fraudulent premium SMS messages and charges users accounts for fake services without their knowledge",
"meta": {
"refs": [
"https://blog.checkpoint.com/2017/09/14/expensivewall-dangerous-packed-malware-google-play-will-hit-wallet/",
"http://fortune.com/2017/09/14/google-play-android-malware/"
]
},
"uuid": "1484d72b-54d0-41b7-a9fa-18db9e9e5c69",
"value": "ExpensiveWall"
},
{
"description": "Cepsohord is a Trojan horse for Android devices that uses compromised devices to commit click fraud, modify DNS settings, randomly delete essential files, and download additional malware such as ransomware.",
"meta": {
"refs": [
"https://www.cyber.nj.gov/threat-profiles/android-malware-variants/cepsohord"
]
},
"uuid": "05b0c492-e1ef-4352-a714-b813e54b9032",
"value": "Cepsohord"
},
{
"description": "Fakem RAT makes their network traffic look like well-known protocols (e.g. Messenger traffic, HTML pages).",
"meta": {
"refs": [
"https://www.trendmicro.de/cloud-content/us/pdfs/security-intelligence/white-papers/wp-fakem-rat.pdf",
"https://www.symantec.com/security_response/writeup.jsp?docid=2016-012608-1538-99"
]
},
"uuid": "c657075e-3ffb-4748-bfe2-f40c3527739f",
"value": "Fakem Rat"
},
{
"description": "GM Bot – also known as Acecard, SlemBunk, or Bankosy – scams people into giving up their banking log-in credentials and other personal data by displaying overlays that look nearly identical to banking apps log-in pages. Subsequently, the malware intercepts SMS to obtain two-factor authentication PINs, giving cybercriminals full access to bank accounts.",
"meta": {
"refs": [
"https://blog.avast.com/android-trojan-gm-bot-is-evolving-and-targeting-more-than-50-banks-worldwide"
],
"synonyms": [
"Acecard",
"SlemBunk",
"Bankosy"
]
},
"related": [
{
"dest-uuid": "f8047de2-fefc-4ee0-825b-f1fae4b20c09",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "620981e8-49c8-486a-b30c-359702c8ffbc",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "d87e2574-7b9c-4ea7-98eb-88f3e139f6ff",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "3d3aa832-8847-47c5-9e31-ef13ab7ab6fb",
"value": "GM Bot"
},
{
"description": "The Wormhole vulnerability in the Moplus SDK could be exploited by hackers to open an unsecured and unauthenticated HTTP server connection on the user’s device, and this connection is established in the background without the user’s knowledge.",
"meta": {
"refs": [
"http://securityaffairs.co/wordpress/41681/hacking/100m-android-device-baidu-moplus-sdk.html"
]
},
"uuid": "d3f2ec07-4af3-4b3b-9cf0-2dba08bf5e68",
"value": "Moplus"
},
{
"description": "Adwind is a backdoor written purely in Java that targets system supporting the Java runtime environment. Commands that can be used, among other things, to display messages on the system, open URLs, update the malware, download/execute files, and download/load plugins. According to the author, the backdoor component can run on Windows, Mac OS, Linux and Android platforms providing rich capabilities for remote control, data gathering, data exfiltration and lateral movement.",
"meta": {
"refs": [
"https://securelist.com/adwind-faq/73660/"
],
"synonyms": [
"AlienSpy",
"Frutas",
"Unrecom",
"Sockrat",
"Jsocket",
"jRat",
"Backdoor:Java/Adwind"
]
},
"related": [
{
"dest-uuid": "b76d9845-815c-4e77-9538-6b737269da2f",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "ab4694d6-7043-41f2-b328-d93bec9c1b22",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "dadccdda-a4c2-4021-90b9-61a394e602be",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "8eb9d4aa-257a-45eb-8c65-95c18500171c",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "ce1a9641-5bb8-4a61-990a-870e9ef36ac1",
"value": "Adwind"
},
{
"description": "Adsms is a Trojan horse that may send SMS messages from Android devices.",
"meta": {
"refs": [
"https://www.fortiguard.com/encyclopedia/virus/7389670",
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-051313-4039-99"
]
},
"uuid": "55b6621f-f928-4530-8271-5150e5f39211",
"value": "AdSms"
},
{
"description": "Airpush is a very aggresive Ad - Network",
"meta": {
"refs": [
"https://crypto.stanford.edu/cs155old/cs155-spring16/lectures/18-mobile-malware.pdf"
],
"synonyms": [
"StopSMS"
]
},
"uuid": "1393cccf-19c0-4cc8-8488-8156672d87ba",
"value": "Airpush"
},
{
"description": "BeanBot forwards device's data to a remote server and sends out premium-rate SMS messages from the infected device.",
"meta": {
"refs": [
"https://www.f-secure.com/v-descs/trojan_android_beanbot.shtml"
]
},
"uuid": "8dbacb31-2ae9-4c0a-bf62-d017b802d345",
"value": "BeanBot"
},
{
"description": "Kemoge is adware that disguises itself as popular apps via repackaging, then allows for a complete takeover of the users Android device.",
"meta": {
"refs": [
"https://www.fireeye.com/blog/threat-research/2015/10/kemoge_another_mobi.html",
"https://www.symantec.com/security_response/writeup.jsp?docid=2015-101207-3555-99"
]
},
"related": [
{
"dest-uuid": "c80a6bef-b3ce-44d0-b113-946e93124898",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "0c769e82-df28-4f65-97f5-7f3d88488f2e",
"value": "Kemoge"
},
{
"description": "Ghost Push is a family of malware that infects the Android OS by automatically gaining root access, downloading malicious software, masquerading as a system app, and then losing root access, which then makes it virtually impossible to remove the infection even by factory reset unless the firmware is reflashed.",
"meta": {
"refs": [
"https://en.wikipedia.org/wiki/Ghost_Push",
"https://blog.avast.com/how-to-protect-your-android-device-from-ghost-push"
]
},
"uuid": "c878cdfc-ab8b-40f1-9173-e62a51e6f804",
"value": "Ghost Push"
},
{
"description": "The BeNews app is a backdoor app that uses the name of defunct news site BeNews to appear legitimate. After installation it bypasses restrictions and downloads additional threats to the compromised device.",
"meta": {
"refs": [
"http://blog.trendmicro.com/trendlabs-security-intelligence/fake-news-app-in-hacking-team-dump-designed-to-bypass-google-play/"
]
},
"uuid": "281cf173-d547-4b37-a372-447caab577be",
"value": "BeNews"
},
{
"description": "Accstealer is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2015-012711-1159-99"
]
},
"uuid": "cbc1c053-5ee8-40c9-96c2-431ac6852fe1",
"value": "Accstealer"
},
{
"description": "Acnetdoor is a detection for Trojan horses on the Android platform that open a back door on the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-051611-4258-99"
]
},
"uuid": "b36f7ce2-e208-4879-9a3f-58623727f887",
"value": "Acnetdoor"
},
{
"description": "Acnetsteal is a detection for Trojan horses on the Android platform that steal information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-051612-0505-99"
]
},
"uuid": "dbbc6b6f-fa87-4fdc-880d-7c22c2723c58",
"value": "Acnetsteal"
},
{
"description": "Actech is a Trojan horse for Android devices that steals information and sends it to a remote location. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-080111-3948-99"
]
},
"uuid": "0bf67f5b-0bcc-41e0-8db9-2b8df8cf1d03",
"value": "Actech"
},
{
"description": "AdChina is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-032814-2947-99"
]
},
"uuid": "33a06139-1c18-4a9a-b86b-440c43266b15",
"value": "AdChina"
},
{
"description": "Adfonic is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052615-0024-99"
]
},
"uuid": "a02b2327-525a-4343-9c76-64f2c984c536",
"value": "Adfonic"
},
{
"description": "AdInfo is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-040416-2433-99"
]
},
"uuid": "a1737465-7af6-4362-b938-3a3fa737ebb7",
"value": "AdInfo"
},
{
"description": "Adknowledge is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052822-1033-99"
]
},
"uuid": "dd626b23-173c-4737-b9d7-c44571c1abb3",
"value": "Adknowledge"
},
{
"description": "AdMarvel is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-060621-2450-99"
]
},
"uuid": "6eb47eef-898e-4d74-9f85-ac9c99250e9b",
"value": "AdMarvel"
},
{
"description": "AdMob is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052822-3437-99"
]
},
"uuid": "932d18c5-6332-4334-83fc-4af3c46a4992",
"value": "AdMob"
},
{
"description": "Adrd is a Trojan horse that steals information from Android devices. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-021514-4954-99"
]
},
"uuid": "121b8084-fdfd-4746-9675-cf8a191bf6d9",
"value": "Adrd"
},
{
"description": "Aduru is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052618-2419-99"
]
},
"uuid": "3476c6dd-3cb0-443d-8668-0f731616b068",
"value": "Aduru"
},
{
"description": "Adwhirl is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052918-1414-99"
]
},
"uuid": "6fe8fd1b-a7d9-4ece-95f5-fdaaa0acd797",
"value": "Adwhirl"
},
{
"description": "Adwlauncher is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-082308-1823-99"
]
},
"uuid": "8ee649b6-8379-4b01-8997-dc7c82e22bb5",
"value": "Adwlauncher"
},
{
"description": "Adwo is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-032814-5806-99"
]
},
"uuid": "5c979585-51c3-427c-a23d-cbe43083ce2d",
"value": "Adwo"
},
{
"description": "Airad is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-032815-1704-99"
]
},
"uuid": "5824688f-e91c-44ab-ae2e-392299e9d071",
"value": "Airad"
},
{
"description": "Alienspy is a Trojan horse for Android devices that steals information from the compromised device. It may also download potentially malicious files. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2015-042714-5942-99"
]
},
"uuid": "680a1677-9bff-4285-9394-62b1ce096c84",
"value": "Alienspy"
},
{
"description": "AmazonAds is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052618-5002-99"
]
},
"uuid": "3a94a731-4566-4cc5-8c01-d651dc11b8a5",
"value": "AmazonAds"
},
{
"description": "Answerbot is a Trojan horse that opens a back door on Android devices. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-100711-2129-99"
]
},
"uuid": "b8f8d1c1-5f33-4b13-8ecf-2383e3213713",
"value": "Answerbot"
},
{
"description": "Antammi is a Trojan horse that steals information from Android devices. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-032106-5211-99"
]
},
"uuid": "bbc13ff1-0cee-4c30-a864-2c6a341ac365",
"value": "Antammi"
},
{
"description": "Apkmore is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-040113-4813-99"
]
},
"uuid": "f45b87cf-6811-427c-84ff-027898b0592a",
"value": "Apkmore"
},
{
"description": "Aplog is a Trojan horse for Android devices that steals information from the device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-100911-1023-99"
]
},
"uuid": "600da14d-a959-4a06-9a13-85ff50cb05b4",
"value": "Aplog"
},
{
"description": "Appenda is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-062812-0516-99"
]
},
"uuid": "1840c69b-f340-444e-a4e5-ac324c8214eb",
"value": "Appenda"
},
{
"description": "Apperhand is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-032815-5637-99"
]
},
"uuid": "2c199154-888b-4444-8d21-622ed62e6e63",
"value": "Apperhand"
},
{
"description": "Appleservice is a Trojan horse for Android devices that may steal information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-031011-4321-99"
]
},
"uuid": "920b0561-abc9-409e-92b1-3b13b7d21a06",
"value": "Appleservice"
},
{
"description": "AppLovin is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-040112-1739-99"
]
},
"uuid": "e212433e-6dac-40ab-8793-8dcfe4a1538f",
"value": "AppLovin"
},
{
"description": "Arspam is a Trojan horse for Android devices that sends spam SMS messages to contacts on the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-121915-3251-99"
]
},
"uuid": "e565a78c-8fa8-419b-b235-1fafa500686c",
"value": "Arspam"
},
{
"description": "Aurecord is a spyware application for Android devices that allows the device it is installed on to be monitored. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-031914-2310-99"
]
},
"uuid": "80a800a7-01ec-4712-9d2b-2382f7bf9201",
"value": "Aurecord"
},
{
"description": "Backapp is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-092708-5017-99"
]
},
"uuid": "a4100d65-78d0-47ec-b939-709447641bab",
"value": "Backapp"
},
{
"description": "Backdexer is a Trojan horse for Android devices that may send premium-rate SMS messages from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2013-121812-2502-99"
]
},
"uuid": "27c289c7-a661-4322-9c21-8053f347e457",
"value": "Backdexer"
},
{
"description": "Backflash is a Trojan horse for Android devices that opens a back door and steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2013-091714-0427-99"
]
},
"uuid": "da8cc77b-a26d-43da-a47a-a50892c08edd",
"value": "Backflash"
},
{
"description": "Backscript is a Trojan horse for Android devices that downloads files onto the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-090704-3639-99"
]
},
"uuid": "d9f11a96-5f9a-48b6-9dac-735ca4fca4d2",
"value": "Backscript"
},
{
"description": "Badaccents is a Trojan horse for Android devices that may download apps on the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-123015-3618-99"
]
},
"uuid": "1442e5a8-d2cf-48cd-86e5-276a9dfc0bae",
"value": "Badaccents"
},
{
"description": "Badpush is an advertisement library that is bundled with certain Android applications.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-040311-4133-99"
]
},
"uuid": "ceacaa80-471e-4e38-b648-78b000771076",
"value": "Badpush"
},
{
"description": "Ballonpop is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2013-120911-1731-99"
]
},
"uuid": "6f957cc5-467b-4465-b14d-ccc6f2206543",
"value": "Ballonpop"
},
{
"description": "Bankosy is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-072316-5249-99"
]
},
"related": [
{
"dest-uuid": "f8047de2-fefc-4ee0-825b-f1fae4b20c09",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "3d3aa832-8847-47c5-9e31-ef13ab7ab6fb",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "d87e2574-7b9c-4ea7-98eb-88f3e139f6ff",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
}
],
"uuid": "620981e8-49c8-486a-b30c-359702c8ffbc",
"value": "Bankosy"
},
{
"description": "Bankun is a Trojan horse for Android devices that replaces certain banking applications on the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2013-072318-4143-99"
]
},
"uuid": "bc45ca3c-a6fa-408d-bfab-cc845ffde1e2",
"value": "Bankun"
},
{
"description": "Basebridge is a Trojan horse that attempts to send premium-rate SMS messages to predetermined numbers. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-060915-4938-99"
]
},
"uuid": "9ae60aaa-bcdb-46a1-a1da-d779cb13cb2b",
"value": "Basebridge"
},
{
"description": "Basedao is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2013-061715-3303-99"
]
},
"uuid": "9d625454-80a7-4c56-bb90-c0a678c6dec1",
"value": "Basedao"
},
{
"description": "Batterydoctor is Trojan that makes exaggerated claims about the device's ability to recharge the battery, as well as steal information. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-101916-0847-99"
]
},
"uuid": "5bd321b1-afef-482f-b160-2e209dffb390",
"value": "Batterydoctor"
},
{
"description": "Beaglespy is an Android mobile detection for the Beagle spyware program as well as its associated client application.",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-091010-0627-99"
]
},
"uuid": "2e3ad1af-e24c-4b1c-87cb-360dab4d90a9",
"value": "Beaglespy"
},
{
"description": "Becuro is a Trojan horse for Android devices that downloads potentially malicious files onto the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2015-051410-3348-99"
]
},
"uuid": "dd83dbc7-9ffa-4ca7-a8c3-6b27bde4c3bd",
"value": "Becuro"
},
{
"description": "Beita is a Trojan horse for Android devices that steals information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2013-110111-1829-99"
]
},
"uuid": "4baa74be-682f-4a38-b4b1-aceba8f48009",
"value": "Beita"
},
{
"description": "Bgserv is a Trojan that opens a back door and transmits information from the device to a remote location. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2011-031005-2918-99"
]
},
"uuid": "e4a18a09-09ed-4ca8-93b8-be946e9f560c",
"value": "Bgserv"
},
{
"description": "Biigespy is an Android mobile detection for the Biige spyware program as well as its associated client application. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-091012-0526-99"
]
},
"uuid": "7a46c9c6-9af5-41e6-a625-aa14009c528e",
"value": "Biigespy"
},
{
"description": "Bmaster is a Trojan horse on the Android platform that opens a back door, downloads files and steals potentially confidential information from the compromised device. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2012-020609-3003-99"
]
},
"uuid": "9ac3232d-b533-44d6-9b73-4341e2cba4b4",
"value": "Bmaster"
},
{
"description": "Bossefiv is a Trojan horse for Android devices that steals information. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2015-061520-4322-99"
]
},
"uuid": "45d85c09-8bed-4c4e-b1d1-4784737734a5",
"value": "Bossefiv"
},
{
"description": "Boxpush is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-040207-4613-99"
]
},
"uuid": "412bb5c6-a5fd-4f36-939e-47f87cc3edae",
"value": "Boxpush"
},
{
"description": "Burstly is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052918-1443-99"
]
},
"uuid": "74053925-b076-47b0-8c23-bb90ff89653c",
"value": "Burstly"
},
{
"description": "Buzzcity is an advertisement library that is bundled with certain Android applications. ",
"meta": {
"refs": [
"https://www.symantec.com/security_response/writeup.jsp?docid=2014-052918-1454-99"
]