More Android phones than ever are covertly listening for inaudible sounds in ads
11–20 of 107 posts
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#12I wouldn't be surprised if Google, Apple or Amazon are doing (or going to do) something similar. It doesn't create much traffic at all, a couple of bytes is enough and they can be tacked on to the data stream without anyone noticing. Someone should build an ultrasonic detector that can recognize these kind of packets and have a look how wide spread this technique already is. We could also need an ultrasonic jammer an…
Apple would never do something like this. It's totally against their MO.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#13Earlier quoted context omitted.
Apple would never do something like this. It's totally against their MO.
Apple is made of people. People who change, people who come and go. Maybe Apple today wouldn't, but tomorrow Apple will be a different company.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#14Earlier quoted context omitted.
Yes there should be an icon when your mic is active. I tried to build a service in Android to do this but there's no API to get whether the mic is in use or not AFAIK. I ended up disabling mic access for almost all apps, but the Google App and Google Play Services complain when you do this.
I'd go even further and light the notification LED the entire time something is reading the camera/mic from the firmware (such that applications can't disable it via software). The indicator works well for the webcams on most laptops.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#15Why does android trust developers so much? Just lock down the apps already, and make microphone usage obvious.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#16Earlier quoted context omitted.
Yes there should be an icon when your mic is active. I tried to build a service in Android to do this but there's no API to get whether the mic is in use or not AFAIK. I ended up disabling mic access for almost all apps, but the Google App and Google Play Services complain when you do this.
I'd go even further and light the notification LED the entire time something is reading the camera/mic from the firmware (such that applications can't disable it via software). The indicator works well for the webcams on most laptops.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#17I'd like to be able to find an Android utility that shows me apps/processes that are auto-launching in the background and kill them, but my last attempt yielded two that I tried and blacklisted (a feature it has) some apps, yet after booting I was still able to force stop them, implying they still had launched on their own. Is there any app that actually works for this, or is it somehow not possible?
Also Android now has the doze feature that should hibernate apps by default when not used.
[0]https://play.google.com/store/apps/details?id=com.oasisfeng....
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#18I'd like to be able to find an Android utility that shows me apps/processes that are auto-launching in the background and kill them, but my last attempt yielded two that I tried and blacklisted (a feature it has) some apps, yet after booting I was still able to force stop them, implying they still had launched on their own. Is there any app that actually works for this, or is it somehow not possible?
The apps might be started using misc broadcasted events, not only on boot. If you want to prevent them to start, you will need root.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#19On modern Androids (6.0+) accessing the microphone requires an explicit permission granted by user (just like on iOS). Furthermore, due to Doze mode implemented in 6.0 and expanded in 7.0 running these kind of services without notifying the user cleary (with permanent notification) has become pretty much impossible and unreliable. To run in background when the phone isn't in active use the service needs to be marked "Foreground" which demands a permanent notification.
Having said that - Google is failing here in several ways. First, they STILL let apps be published that don't target Android 6.0. Apps that target older Androids get permissions granted at install time (those can be revoked, but user needs to go to settings for that). There's no reason to let people publish new apps that don't adhere to new permission model, but Google just doesn't care.
They also need to clearly mark use of system resources in the background - just like we have the GPS icon, we need a clear indication of active microphone, speaker and other hardware modules while running in the backgorund.
Re: More Android phones than ever are covertly listening for inaudible sounds in ads
#20Why does android trust developers so much? Just lock down the apps already, and make microphone usage obvious.