-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathcarrier.json
More file actions
1506 lines (1506 loc) · 62.1 KB
/
Copy pathcarrier.json
File metadata and controls
1506 lines (1506 loc) · 62.1 KB
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
[
{
"id": "ca.bell.wt.android.tunesappswidget",
"label": "App Widget",
"description": "Developped by Bell Canada, it is a home screen widget which shows advertisements, promotions, news, sports & entertainment.",
"web": [
"https://play.google.com/store/apps/details?id=ca.bell.wt.android.tunesappswidget"
],
"removal": "delete"
},
{
"id": "com.LogiaGroup.LogiaDeck",
"label": "Mobile Services Manager",
"description": "Seems to be a spyware",
"web": [
"https://www.reddit.com/r/lgv20/comments/6u0wnf/what_is_mobile_services_manager_did_i_catch_a/"
],
"removal": "delete"
},
{
"id": "com.Rogers.MyRogersTab",
"description": "Appears to be the tablet version of MyRogers (https://play.google.com/store/apps/details?id=com.fivemobile.myaccount), an app to manage your account with Canadian carrier Rogers.",
"removal": "delete"
},
{
"id": "com.aetherpal.attdh.se",
"label": "Device Help",
"description": "Device Help for AT&T Samsung device.\nDeveloped by Aetherpal, a company which sells smart remote controls tools.\nI guess this app is used for tech support.",
"web": [
"https://docs.samsungknox.com/CCMode/G935A_O.pdf",
"https://en.wikipedia.org/wiki/AetherPal"
],
"removal": "delete"
},
{
"id": "com.aetherpal.attdh.zte",
"label": "Device Help",
"description": "Device Help for AT&T ZTE devices.\nDeveloped by Aetherpal, a company which sells smart remote controls tools.\nI guess this app is used for tech support.",
"web": [
"https://en.wikipedia.org/wiki/AetherPal"
],
"removal": "delete"
},
{
"id": "com.altice.android.myapps",
"description": "MyApps\nit's probably for install apps but it's useless.",
"removal": "delete"
},
{
"id": "com.americanexpress.plenti",
"description": "Plenti\nGet points and promos with your American Express card",
"removal": "delete"
},
{
"id": "com.android.partnerbrowsercustomizations.tmobile",
"description": "The proprietary application of the mobile operator T-Mobile, presumably displays ads, is responsible for the operation of some of the operator's settings",
"removal": "delete"
},
{
"id": "com.android.sprint.hiddenmenuapp",
"label": "HiddenMenu",
"description": "Lets you access hidden features tests/settings (you need to type a special code in the dialer).",
"web": [
"https://bestcellular.com/dial-codes/"
],
"removal": "delete"
},
{
"id": "com.android.wifi.resources.overlay.WifiVodafoneOverlay",
"label": "com.android.wifi.resources.overlay.WifiVodafoneOverlay",
"description": "Not sure what it does",
"web": [
"https://beta.pithus.org/report/d8b19f854eb85ea97fbaeafb8c11842cf9b27f169b08d3e8b2659f52db9dd408"
],
"removal": "delete"
},
{
"id": "com.asurion.android.mobilerecovery.att",
"label": "AT&T Protect Plus",
"description": "Discontinued and replaced by AT&T ProTech (com.asurion.android.protech.att)\nHelp and support app. Lets you call or chat with a live U.S.-based AT&T ProTech support expert.",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.mobilerecovery.sprint",
"label": "Sprint Protect",
"description": "Let you find a phone, secure from viruses, back up data, and more.",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.mobilerecovery.sprint.vpl",
"label": "Sprint Protect",
"description": "Let you find a phone, secure from viruses, back up data, and more.",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.protech.att",
"label": "AT&T ProTech",
"description": "Help and support app. Lets you call or chat with a live U.S.-based AT&T ProTech support \"expert\".",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.android.verizon.vms",
"label": "Digital Secure",
"description": "Verizon's one-stop suite of privacy and security tools that is supposed to protect your devices from online threats, connect to public Wi-Fi with a secure VPN, take control with always-on dark web monitoring, and get guidance on online security from \"security experts\".",
"web": [
"https://play.google.com/store/apps/details?id=com.asurion.android.verizon.vms",
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.home.sprint",
"label": "Sprint Complete",
"description": "Lets you call or chat with live tech experts! Maybe you will find the love of your life!",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.asurion.home.sprint.vpl",
"label": "Tech Expert",
"description": "Replaced by \"Sprint Complete\".",
"web": [
"https://en.wikipedia.org/wiki/Asurion"
],
"removal": "delete",
"warning": "This app is developed by Asurion, a US company whose business is to sell insurances. All US carriers use Asurion for the phone insurances."
},
{
"id": "com.att.android.attsmartwifi",
"label": "AT&T Smart Wi-Fi",
"description": "Finds and auto-connects to available hotspots to minimize cellular data consumption.\nAuto-connects is not a good idea. You are ok if you go on HTTPS websites. Use a VPN if you want to hide the domain names you visit, avoid usage restriction (no P2P, blacklisted websites...) and encrypt HTTP traffic.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.android.attsmartwifi",
"https://www.europol.europa.eu/activities-services/public-awareness-and-prevention-guides/risks-of-using-public-wi-fi",
"https://www.eff.org/deeplinks/2020/01/why-public-wi-fi-lot-safer-you-think",
"https://thatoneprivacysite.net/choosing-the-best-vpn-for-you/"
],
"removal": "delete"
},
{
"id": "com.att.callprotect",
"label": "AT&T Call Protect",
"description": "Spam call blocking app provided by Hiya.",
"web": [
"https://itmunch.com/robocall-caught-sending-customers-confidential-data-without-consent/"
],
"removal": "delete",
"warning": "Never trust an app that automatically blocks spam calls."
},
{
"id": "com.att.csoiam.mobilekey",
"label": "AT&T Sign in Helper",
"description": "Allows AT&T applications to securely authenticate on Android devices.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.csoiam.mobilekey"
],
"removal": "delete"
},
{
"id": "com.att.deviceunlock",
"description": "Device Unlock\nUseless app from AT&T. it's only for unlock device.",
"removal": "delete"
},
{
"id": "com.att.dh",
"label": "Device Help",
"description": "Troubleshooting app from AT&T.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.dh"
],
"removal": "delete"
},
{
"id": "com.att.dtv.shaderemote",
"label": "DIRECTV Remote App",
"description": "Lets you control DIRECTV HD receivers in your home that are connected to Internet, from your phone. DIRECTV is a subsidiary of AT&T.",
"web": [
"https://en.wikipedia.org/wiki/DirecTV#Consumer_protection_lawsuits_and_violations"
],
"removal": "delete"
},
{
"id": "com.att.iqi",
"label": "Device Health",
"description": "(AKA Carrier IQ) Gathers, stores and forwards diagnostic measurements on its behalf.\nGreat! A rootkit.",
"web": [
"https://docs.samsungknox.com/CCMode/G935A_O.pdf",
"https://en.wikipedia.org/wiki/Carrier_IQ#Rootkit_discovery_and_media_attention"
],
"removal": "delete"
},
{
"id": "com.att.mobile.android.vvm",
"label": "AT&T Visual Voicemail",
"description": "Lets you manage your voicemail directly from the app without the need to dial into your mailbox.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.mobile.android.vvm"
],
"removal": "delete"
},
{
"id": "com.att.mobilesecurity",
"label": "AT&T ActiveArmor℠",
"description": "AT&T android antivirus.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.mobilesecurity"
],
"removal": "delete"
},
{
"id": "com.att.mobiletransfer",
"label": "AT&T Mobile Transfer",
"description": "Lets you transfer user data from an older AT&T phone to a new one.",
"removal": "delete"
},
{
"id": "com.att.myWireless",
"label": "myAT&T",
"description": "Lets you manage your AT&T account.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.myWireless"
],
"removal": "delete"
},
{
"id": "com.att.personalcloud",
"label": "AT&T Personal Cloud",
"description": "It has paid extra features and data are obviously not E2EE (i.e AT&T can access them)\nPrivacy nightmare and was poorly coded.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.personalcloud",
"https://beta.pithus.org/report/bc54b5e2446ace90d9f992278d0ec320befe4983a76cb4fdcf47e565366e67b6"
],
"removal": "replace",
"suggestions": "cloud_services"
},
{
"id": "com.att.tv",
"label": "DIRECTV",
"description": "Lets you Stream TV live and on demand from your phone.",
"web": [
"https://play.google.com/store/apps/details?id=com.att.tv"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.att.tv.watchtv",
"label": "AT&T WatchTV",
"description": "Lets you stream TV live and VOD form your phone.\nNo it's not the same thing than AT&T TV. Yes, it's a mess.",
"web": [
"https://www.cordcuttersnews.com/att-tv-vs-att-tv-now-whats-the-difference/"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.aura.jet.att",
"description": "AT&T Hub\nApp from AT&T. Installs apps on oobe and its maded by advertising company 'ironSource'.",
"removal": "delete"
},
{
"id": "com.aura.oobe.att",
"description": "AppCloud\nApp from AT&T. Installs apps on oobe and its maded by advertising company 'ironSource'.",
"removal": "delete"
},
{
"id": "com.aura.oobe.motorola",
"description": "MotoApps\nIt's something to install apps, but it's an advertising company.",
"removal": "delete"
},
{
"id": "com.aura.oobe.samsung",
"label": "AppCloud",
"description": "It offers the \"Aura Out-Of-the-Box Experience\" (OOBE)\nIt is some kind of post-install recommended apps setup from the carrier. Asks for your age and gender and then recommends you to install popular apps.\nHas way too many permissions.",
"web": [
"https://en.wikipedia.org/wiki/IronSource",
"https://aura.ironsrc.com/tools/drive-app-downloads/",
"https://arxiv.org/pdf/2010.10088.pdf",
"https://github.com/0x192/universal-android-debloater/issues/278",
"https://docs.samsungknox.com/admin/knox-platform-for-enterprise/knox-service-plugin/kbas/kba-954-unable-to-access-home-screen/",
"https://smex.org/invasive-israeli-software-is-harvesting-data-from-samsung-users-in-wana/",
"https://investors.unity.com/news/news-details/2022/Unity-Announces-Merger-Agreement-with-ironSource/default.aspx",
"https://beta.pithus.org/report/9f8ff7db0924711be9a8a238beafecde84f42f3f249dfd9acfbe6cab390994b5",
"https://www.virustotal.com/gui/file/9f8ff7db0924711be9a8a238beafecde84f42f3f249dfd9acfbe6cab390994b5"
],
"removal": "delete",
"warning": "This app is developed by IronSource, an Israeli advertising company (now owned by the American company Unity)."
},
{
"id": "com.aura.oobe.samsung.gl",
"label": "AppCloud",
"description": "It offers the \"Aura Out-Of-the-Box Experience\" (OOBE)\nIt is some kind of post-install recommended apps setup from the carrier. Asks for your age and gender and then recommends you to install popular apps.\nHas way too many permissions.",
"web": [
"https://en.wikipedia.org/wiki/IronSource",
"https://aura.ironsrc.com/tools/drive-app-downloads/",
"https://arxiv.org/pdf/2010.10088.pdf",
"https://github.com/0x192/universal-android-debloater/issues/278",
"https://docs.samsungknox.com/admin/knox-platform-for-enterprise/knox-service-plugin/kbas/kba-954-unable-to-access-home-screen/",
"https://smex.org/invasive-israeli-software-is-harvesting-data-from-samsung-users-in-wana/",
"https://investors.unity.com/news/news-details/2022/Unity-Announces-Merger-Agreement-with-ironSource/default.aspx"
],
"removal": "delete",
"warning": "This app is developed by IronSource, an Israeli advertising company (now owned by the American company Unity)."
},
{
"id": "com.aura.oobe.vodafone",
"description": "Vodafone AppBox\nIt is some kind of post-install recommended apps setup from the carrier.\nAsks for your age and gender and then recommends you to install popular apps.\nDeveloped by IronSource, an Israeli advertising company.",
"removal": "delete"
},
{
"id": "com.bc360.android.service",
"description": "Verizon Adaptive Sound\nProvides Voice Enhance, but according to the carrier.\nDoes the same thing as the 'com.bc360.control' app.",
"removal": "delete"
},
{
"id": "com.bc360.control",
"description": "Verizon Adaptive Sound\nProvides Voice Enhance, but according to the carrier.",
"removal": "delete"
},
{
"id": "com.claroColombia.contenedor",
"description": "Claro\nIt's something to install apps, but it's an advertising company.",
"removal": "delete"
},
{
"id": "com.cricketwireless.minus",
"description": "Cricket partner tab? better remove it. It probably have news or partner customization to chrome.",
"removal": "delete"
},
{
"id": "com.customermobile.preload.vzw",
"label": "Verizon Store Demo Mode",
"description": "Requires a lot of permissions and downloads a remote configuration file from an AWS-hosted domain over plain-text HTTP.\nThis leaves the overall device and configuration vulnerable.",
"web": [
"https://thehackernews.com/2024/08/google-pixel-devices-shipped-with.html"
],
"removal": "delete"
},
{
"id": "com.directv.promo.shade",
"description": "DIRECTV Remote\nOfficial app from DIRECTV (subsidiary of AT&T). With the DIRECTV Remote for AT&T Samsung devices, control of your favorite DIRECTV shows is just a swipe away. Swipe down from the status bar at the top of your screen to automatically connect and control your DIRECTV receivers, it's that simple.",
"removal": "delete"
},
{
"id": "com.dti.amx",
"description": "it's used to choose app install? A lot trackers, permissions.\nUseless.",
"removal": "delete"
},
{
"id": "com.dti.att",
"label": "Mobile Services Manager",
"description": "Formerly known as AT&T App Select.\nI guess it lets you choose AT&T apps to install.\nIt has a LOT of permissions.",
"web": [
"https://knowledge.protektoid.com/apps/com.dti.att/7a36d4f5f00bae044566221400719c75ea2f4f33bc2578a7f8210f36d718a8d6"
],
"removal": "delete"
},
{
"id": "com.dti.bouyguestelecom",
"description": "Bouygues AppCloud\nit's probably for install apps but it's useless and have ads and a lot permissions.",
"removal": "delete"
},
{
"id": "com.dti.cricket",
"description": "it's app for installing recommended apps? it's only used on first-boot setup and it's useless.",
"removal": "delete"
},
{
"id": "com.dti.motorola",
"description": "Mobile Services Manager\nit's something for install apps but it's useless and a lot permissions.",
"removal": "delete"
},
{
"id": "com.dti.samsung",
"description": "Mobile Services Manager\nDigital Turbine app, pre-install some apps/games to your phone and its made by advertising company.",
"removal": "delete"
},
{
"id": "com.dti.tim",
"description": "Mobile Service Manager\nIt's a system app that can't be opened but keeps running in the background. It can install/uninstall apps without notifying you, access internet, run at the boot of the system, kill background processes, ads and other permissions.\nIt's only bloatware, OTA updates work the same without it. Uninstalling didn't give any negative side-effects.",
"removal": "delete"
},
{
"id": "com.dti.tracfone",
"label": "Mobile Services",
"description": "Installs sponsored apps automatically on Tracfone and affiliated carriers (Straight Talk, Total Wireless, etc)",
"removal": "delete"
},
{
"id": "com.felicanetworks.mfc",
"description": "Chinese felicanetworks",
"removal": "delete"
},
{
"id": "com.felicanetworks.mfm",
"description": "Setup Chinese felicanetworks",
"removal": "delete"
},
{
"id": "com.felicanetworks.mfm.main",
"description": "Chinese felicanetworks",
"removal": "delete"
},
{
"id": "com.felicanetworks.mfs",
"description": "Chinese felicanetworks",
"removal": "delete"
},
{
"id": "com.felicanetworks.mfw.a.boot",
"description": "Chinese felicanetworks",
"removal": "delete"
},
{
"id": "com.google.omadm.trigger",
"description": "OemDmTrigger\nOMA Device Managment Verizon.",
"removal": "delete"
},
{
"id": "com.gsma.rcs",
"description": "RCS\nHidden RCS Messaging? or only Frameworks?\nFeature code:184501\nCarrier name: GSM Association.",
"removal": "caution"
},
{
"id": "com.hyperlync.Sprint.Backup",
"label": "Sprint Backup",
"description": "Lets you backup your phone’s content to your Sprint Backup account.\nThis app was developed by Hyperlync Technologies an Israel-based company which provides cyber-security solutions. It is now owned by Edition Ltd, a big Singapore based company.",
"web": [
"https://www.reuters.com/companies/EDITol.SI"
],
"removal": "replace",
"suggestions": "backup_apps"
},
{
"id": "com.hyperlync.Sprint.CloudBinder",
"label": "Sprint Cloud Binder",
"description": "Hub for all you cloud accounts.\nThis app was developed by Hyperlync Technologies an Israel-based company which provide cyber-security solutions.\nIt is now owned by Edition Ltd, a big Singapore based company.",
"web": [
"https://www.reuters.com/companies/EDITol.SI"
],
"removal": "delete"
},
{
"id": "com.inmobi.installer",
"description": "it's installer advertising company app.",
"removal": "delete"
},
{
"id": "com.ironsource.appcloud.oobe.hutchison",
"description": "AppCloud (discontinued) from ironSource, an advertising company.\nWorth reading:\nhttps://en.wikipedia.org/wiki/IronSource",
"removal": "delete"
},
{
"id": "com.jrd.verizonuriintentservice",
"description": "",
"removal": "caution"
},
{
"id": "com.kmsjp",
"description": "Kaspersky\nAnti-virus pre-installed on some Huawei phone's in Japanese.",
"removal": "delete"
},
{
"id": "com.kuackmedia.orange",
"description": "Altice Music\nIt's a music application that allows you to stream music, but it comes pre-installed.\nhttps://play.google.com/store/apps/details?id=com.kuackmedia.orange",
"removal": "delete"
},
{
"id": "com.locationlabs.cni.att",
"label": "AT&T Smart Limits℠",
"description": "A parental Control app.",
"web": [
"https://m.att.com/shopmobile/wireless/features/smart-limits.html"
],
"removal": "delete"
},
{
"id": "com.locationlabs.finder.sprint",
"label": "Sprint Family Locator",
"description": "Lets you locate any phone registered under the Sprint family plan.\nLocation labs is owned by AGV which is owned by Avast.\nYou shouldn't trust Avast.",
"web": [
"https://www.vice.com/en_us/article/qjdkq7/avast-antivirus-sells-user-browsing-data-investigation",
"https://www.pcmag.com/news/the-cost-of-avasts-free-antivirus-companies-can-spy-on-your-clicks"
],
"removal": "replace",
"suggestions": "locators"
},
{
"id": "com.locationlabs.finder.sprint.vpl",
"label": "Sprint Family Locator",
"description": "Lets you locate any phone registered under the Sprint family plan\nLocation labs is owned by AGV which is owned by Avast.\nYou shouldn't trust Avast.",
"web": [
"https://www.vice.com/en_us/article/qjdkq7/avast-antivirus-sells-user-browsing-data-investigation",
"https://www.pcmag.com/news/the-cost-of-avasts-free-antivirus-companies-can-spy-on-your-clicks"
],
"removal": "replace",
"suggestions": "locators"
},
{
"id": "com.matchboxmobile.wisp",
"label": "AT&T Hot Spots",
"description": "Runs in background. Automatically connects you to a free AT&T wifi hotspot at one of their participating partner locations, such as Starbucks.",
"web": [
"https://docs.samsungknox.com/CCMode/G935A_O.pdf"
],
"removal": "delete"
},
{
"id": "com.mobitv.client.sprinttvng",
"label": "Sprint TV & Movies",
"description": "Provided by MobiTV. Lets you watch live TV and VOD.",
"web": [
"https://en.wikipedia.org/wiki/MobiTV"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.mobitv.client.tmobiletvhd",
"label": "T-Mobile TV with Mobile HD",
"description": "Discontinued and replaced by nl.tmobiletv.vinson, provided by MobiTV.",
"web": [
"https://en.wikipedia.org/wiki/MobiTV",
"https://play.google.com/store/apps/details?id=nl.tmobiletv.vinson"
],
"removal": "replace",
"suggestions": "streaming_apps"
},
{
"id": "com.mobolize.sprint.securewifi",
"label": "Secure WiFi",
"description": "Sprint VPN app provided by Mobolize. You need to pay for using it.\nYou'd better use a reliable third-party VPN if you really need to use one.\nThis one runs in background all time and every time it sees a \"unsecured network\" it will popup to encourage you to pay for this VPN.",
"removal": "replace",
"suggestions": "vpn_services"
},
{
"id": "com.motorola.att.phone.extensions",
"label": "ATT Phone Extension",
"description": "Provide access to AT&T extensions in you dialer.",
"web": [
"https://asecare.att.com/tutorials/adding-and-deleting-an-extension-on-your-officehand-mobile-app-2990/?product=AT&T%20Office@Hand"
],
"removal": "delete"
},
{
"id": "com.motorola.attvowifi",
"label": "Wi-Fi Calling",
"description": "AT&T Wifi-calling app.",
"web": [
"https://www.att.com/shop/wireless/features/wifi-calling.html"
],
"removal": "delete"
},
{
"id": "com.motorola.carrierconfig",
"label": "Carrier Services",
"description": "Related to various communication related actions.",
"web": [
"https://source.android.com/docs/core/connect/carrier"
],
"removal": "caution",
"warning": "Disabling this app may cause network-related issues"
},
{
"id": "com.motorola.ltebroadcastservices_vzw",
"label": "com.motorola.ltebroadcastservices_vzw",
"description": "LTE Broadcast services from Verizon. Allows your phone to receive broadcast message from Verizon?",
"removal": "delete"
},
{
"id": "com.motorola.mot5gmod",
"label": "5G Moto Mod",
"description": "Internet sharing using USB tethering and WiFi hotspot.",
"web": [
"https://play.google.com/store/apps/details?id=com.motorola.mot5gmod"
],
"removal": "delete"
},
{
"id": "com.motorola.omadm.sprint",
"label": "SprintDM",
"description": "Configuration of the device (including first time use), enabling and disabling features provided by carriers.\nI believe it's only useful if you want to use a Sprint service with a non branded phone (not sure at all)\nDisplays annoying notifications if you unlocked your bootloader.",
"web": [
"https://www.androidpolice.com/2015/03/10/android-5-1-includes-new-carrier-provisioning-api-allows-carriers-easier-methods-of-setting-up-services-on-devices-they-dont-control/"
],
"removal": "delete"
},
{
"id": "com.motorola.omadm.usc",
"description": "OMA Device Management for Verizon \nHandles configuration of the device (including first time use), enabling and disabling features provided by carriers.\nhttps://en.wikipedia.org/wiki/OMA_Device_Management\nI believe it's only useful if you want to use a Verizon service with a non branded phone (not sure at all)\nhttps://www.androidpolice.com/2015/03/10/android-5-1-includes-new-carrier-provisioning-api-allows-carriers-easier-methods-of-setting-up-services-on-devices-they-dont-control/\nDisplays annoying notifications if you unlocked your bootloader",
"removal": "delete"
},
{
"id": "com.motorola.omadm.vzw",
"label": "VzwDM",
"description": "OMA Device Management for Verizon.\nHandles configuration of the device (including first time use), enabling and disabling features provided by carriers.\nI believe it's only useful if you want to use a Verizon service with a non branded phone (not sure at all)\nDisplays annoying notifications if you unlocked your bootloader.",
"web": [
"https://en.wikipedia.org/wiki/OMA_Device_Management",
"https://www.androidpolice.com/2015/03/10/android-5-1-includes-new-carrier-provisioning-api-allows-carriers-easier-methods-of-setting-up-services-on-devices-they-dont-control/"
],
"removal": "delete"
},
{
"id": "com.motorola.service.vzw.entitlement",
"label": "entitlement",
"description": "",
"web": [
"https://android.stackexchange.com/questions/226580/how-is-verizon-suddenly-tracking-my-hot-spot-usage-on-android-and-how-do-i-disab"
],
"removal": "caution",
"warning": "Deleting this package whill disable Hotspot functionality if you're a Verizon client. What you can do is preventing the phone from notifying the carrier about when you use hotspot."
},
{
"id": "com.motorola.sprintwfc",
"label": "print Wifi Calling",
"description": "Sprint Wifi Calling\nProvides wifi calling to Sprint customers.",
"removal": "delete"
},
{
"id": "com.motorola.visualvoicemail",
"label": "Verizon Visual Voicemail",
"description": "On non-Verizon phones it has a generic \"Voicemail\" name and icon, and doesn't seem to active.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.cloudsetup",
"label": "Cloud setup",
"description": "The exact functionality is unknown.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.loader",
"label": "com.motorola.vzw.loader",
"description": "Exact functionality is unknown. Doesn't seem to break anything once removed.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.mot5gmod",
"label": "5G Moto Mod",
"description": "Internet sharing using USB tethering and WiFi hotspot.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.pco.extensions.pcoreceiver",
"label": "PcoReceiver",
"description": "VZW Carrier sim(Verizon). It's only for notifications.\nYou can remove that if you don't use Verizon wireless or anything like that.",
"removal": "delete"
},
{
"id": "com.motorola.vzw.phone.extensions",
"label": "PhoneExtns",
"description": "Free HD wallpaper from verizon",
"removal": "delete"
},
{
"id": "com.motorola.vzw.provider",
"label": "VzwUnifiedSettingsApp",
"description": "Exact functionality is unknown. Label might be incorrect. Doesn't seem to break anything once removed.",
"removal": "delete"
},
{
"id": "com.motricity.verizon.ssodownloadable",
"label": "Verizon Login",
"description": "Originally by Motricity, now Voltari.\nVoltari provides relevance-driven mobile advertising, mobile marketing, mobile merchandising, and predictive analytics solutions.\nNeeded for \"My Verizon\".",
"web": [
"https://en.wikipedia.org/wiki/Voltari",
"https://www.lightreading.com/motricity-holds-on-to-verizon-account/d/d-id/678478"
],
"removal": "delete"
},
{
"id": "com.naviexpert.NaviExpert",
"description": "Navigation T-Mobile\nhttps://play.google.com/store/apps/details?id=com.naviexpert.NaviExpert",
"removal": "delete"
},
{
"id": "com.nextbit.app",
"description": "docomo LIVE UX backup\nit's on some japanese phones",
"removal": "delete"
},
{
"id": "com.nim.rogers",
"description": "Texture, a digital magazine service created by Rogers Media. Discontinued in 2019.",
"removal": "delete"
},
{
"id": "com.nttdocomo.android.applicationmanager",
"description": "Docomo Application Manager",
"removal": "delete"
},
{
"id": "com.nttdocomo.android.dhome",
"description": "Docomo Launcher",
"removal": "replace"
},
{
"id": "com.nttdocomo.android.iconcier_contents",
"description": "Diagnostics things only in this japanese app",
"removal": "delete"
},
{
"id": "com.nttdocomo.android.initialization",
"description": "Docomo Initialization app",
"removal": "delete"
},
{
"id": "com.nttdocomo.android.rwpushcontroller",
"description": "rwpushcontroller\nAnother FeliCa Networks app, with japanese language\nUseless frameworks",
"removal": "delete"
},
{
"id": "com.nttdocomo.android.store",
"description": "Docomo App Market",
"removal": "delete"
},
{
"id": "com.oem.euiccpartnerapp",
"description": "EuiccPartnerApp\nNeeded for eSIM (eUICC)?\nI think it's useless.",
"removal": "delete"
},
{
"id": "com.orange.aura.oobe",
"label": "Orange Manual Selector",
"description": "Makes unnecessary notifications",
"removal": "delete"
},
{
"id": "com.orange.mail.fr",
"label": "Mail Orange",
"description": "Managing your emails from the Mail Orange application. All your personal data is hosted in France and governed by French law.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.mail.fr"
],
"removal": "replace",
"suggestions": "email_clients"
},
{
"id": "com.orange.miorange",
"label": "Mi Orange",
"description": "Lets you access to your Orange account and services",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.miorange"
],
"removal": "delete"
},
{
"id": "com.orange.mylivebox.fr",
"label": "Ma Livebox",
"description": "Lets you manage your Livebox from your phone.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.mylivebox.fr"
],
"removal": "delete"
},
{
"id": "com.orange.mysosh",
"label": "MySosh France",
"description": "Lets you access to your Sosh account",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.mysosh"
],
"removal": "delete"
},
{
"id": "com.orange.orangeetmoi",
"label": "Orange et moi France",
"description": "Orange customer space.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.orangeetmoi"
],
"removal": "delete"
},
{
"id": "com.orange.owtv",
"label": "TV d'Orange",
"description": "Lets you watch TV/VOD on your phone.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.owtv"
],
"removal": "delete"
},
{
"id": "com.orange.tdd",
"label": "Transfert des données",
"description": "Lets you transfer wirelessly: contacts, SMS, call log, calendar, photos, videos, audio files, etc., all from your old Android.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.tdd"
],
"removal": "delete"
},
{
"id": "com.orange.update",
"label": "App Center",
"description": "Handles Orange apps updates.",
"removal": "delete"
},
{
"id": "com.orange.update.OrangeUpdateApplication",
"label": "com.orange.update.OrangeUpdateApplication",
"description": "Obviously related to update.",
"removal": "delete"
},
{
"id": "com.orange.vvm",
"label": "Messagerie vocale visuelle",
"description": "Lets you manage your voicemail with an app.",
"web": [
"https://play.google.com/store/apps/details?id=com.orange.vvm"
],
"removal": "delete"
},
{
"id": "com.orange.wifiorange",
"label": "Mon Réseau",
"description": "Lets you measure your speed connection and find better Orange wifi hotspots.\nInforms you also about near network incidents.",
"removal": "delete"
},
{
"id": "com.ptc.osp.gnc",
"description": "Playing the Waiting Game by T-Mobile.\nThis app is maded for listening to music.",
"removal": "delete"
},
{
"id": "com.samsung.attvvm",
"label": "Samsung AT&T Visual Voicemail",
"description": "A simple GUI for voicemail.",
"removal": "delete"
},
{
"id": "com.samsung.huxextension",
"description": "Hux Extension\nVerizon activation, registration",
"removal": "delete"
},
{
"id": "com.samsung.slsi.telephony.oem.oemrilhookservice",
"description": "Part of the Samsung cellular modem infrastructure used by the OS to provide cellular support.",
"removal": "caution"
},
{
"id": "com.samsung.slsi.telephony.oemril",
"description": "Part of the Samsung cellular modem infrastructure used by the OS to provide cellular support.",
"removal": "caution"
},
{
"id": "com.samsung.sprint.chameleon",
"description": "Chameleon service which is a service designed to store sprint-specific properties (customizes some apps).",
"removal": "delete"
},
{
"id": "com.sec.android.app.ewidgetatt",
"label": "Entertainment Widget",
"description": "AT&T Widget for One UI.",
"web": [
"https://docs.samsungknox.com/CCMode/F707U_Q.pdf"
],
"removal": "delete"
},
{
"id": "com.sec.android.app.tfstatus",
"description": "Tracfone app, function unknown",
"removal": "caution"
},
{
"id": "com.sec.omadm",
"label": "OMADM",
"description": "Open Mobile Alliance Device Management. A protocol for management of mobile devices.",
"web": [
"https://en.wikipedia.org/wiki/OMA_Device_Management"
],
"removal": "caution"
},
{
"id": "com.sec.omadmspr.syncmlphoneif",
"label": "Sprint OMADM Phone Interface",
"description": "OMADM = Open Mobile Alliance Device Management. A protocol for management of mobile devices.",
"web": [
"https://docs.samsungknox.com/CCMode/G950U1_P.pdf",
"https://en.wikipedia.org/wiki/OMA_Device_Management"
],
"removal": "caution"
},
{
"id": "com.sec.sprint.wfcstub",
"label": "com.sec.sprint.wfcstub",
"description": "Seems to be related to Wifi-Calling on Samsung phone.",
"removal": "delete"
},
{
"id": "com.securityandprivacy.android.verizon.vms",
"label": "Digital Secure",
"description": "I don't know why this apps is released twice on the Play store under 2 different package name.",
"web": [
"https://play.google.com/store/apps/details?id=com.securityandprivacy.android.verizon.vms"
],
"removal": "delete"
},
{
"id": "com.sfr.android.moncompte",
"label": "SFR & Moi",
"description": "Lets you manage your SFR account.",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.moncompte"
],
"removal": "delete"
},
{
"id": "com.sfr.android.sfrcloud",
"label": "SFR Cloud",
"description": "Cloud provided by SFR",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.sfrcloud"
],
"removal": "replace",
"suggestions": "cloud_services"
},
{
"id": "com.sfr.android.sfrjeux",
"description": "My Games\nit's not useful app for games and better uninstall it",
"removal": "delete"
},
{
"id": "com.sfr.android.sfrmail",
"label": "SFR Mail",
"description": "SFR Mail",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.sfrmail"
],
"removal": "replace",
"suggestions": "email_clients"
},
{
"id": "com.sfr.android.sfrplay",
"label": "SFR Play",
"description": "VOD streaming from SFR.",
"removal": "delete"
},
{
"id": "com.sfr.android.vvm",
"label": "SFR Répondeur +",
"description": "Lets you use your voice mail and manage your inbox without dialing into your voicemail.",
"web": [
"https://play.google.com/store/apps/details?id=com.sfr.android.vvm"
],
"removal": "delete"
},
{
"id": "com.shannon.imsservice",
"description": "Verizon IMS service.",
"removal": "replace"
},
{
"id": "com.shannon.rcsservice",
"description": "Verizon RCS service.",
"removal": "replace"
},
{
"id": "com.sprint.android.musicplus2033",
"label": "Sprint Music Plus",
"description": "Sprint’s official Music Store and player.",
"removal": "replace",
"suggestions": "music_apps"
},
{
"id": "com.sprint.android.musicplus2033.vpl",
"label": "Sprint Music Plus",
"description": "Sprint’s official Music Store and player.",
"removal": "replace",
"suggestions": "music_apps"
},
{
"id": "com.sprint.care",
"label": "My Sprint",
"description": "Lets you manage your Sprint Account and pay your bill.",
"web": [
"https://play.google.com/store/apps/details?id=com.sprint.care"
],
"removal": "delete"
},
{
"id": "com.sprint.ce.updater",