Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
Android Apple Your Rights Online

Study Finds iOS Apps Just As Intrusive As Android Apps 107

wiredmikey writes "Despite fevered arguments that iOS is more secure than Android, and that Android offers developers more options than iOS, a study has found that both platforms are equally as invasive and curious when it comes to collecting user data. Security firm BitDefender analyzed more than 522,000 apps over the past year and focused on the 'intrusive behaviors' the app developer may have included in the product, such as tracking location, reading contact lists, and leaking your email address or device ID. According to Catalin Cosi, iOS applications appear to be more focused on harvesting private data than the ones designed for Android. Cosi did acknowledge that Android apps state all the permissions needed at installation time and there is no way to change the settings afterwards, while iOS permissions are requested at run-time, as the specific resource is used, making iOS a little bit more secure in practice."
This discussion has been archived. No new comments can be posted.

Study Finds iOS Apps Just As Intrusive As Android Apps

Comments Filter:
  • The basic problem (Score:5, Interesting)

    by ArsenneLupin ( 766289 ) on Friday July 19, 2013 @04:38AM (#44325281)
    ... is that if apps are denied permission, they may refuse to work (even though the permission requested might not actually needed for the app's official purpose).

    So, what we would need is a change in how permission refusal is communicated (or not communicated) to the app. The OS should always tell the app "yes you got permission", but then just fake the action (return plausible but fake location data, plausible but fake adresses, etc.). Or fail with a code not linked to permission (pretend that there is no cellular network available if user refused permission to use it)

    That way, it will be much more difficult to pressure users into granting apps each and every right they ask for...

  • by magic maverick ( 2615475 ) on Friday July 19, 2013 @04:43AM (#44325307) Homepage Journal

    I like Ubuntu and Debian. They have "app stores" (apt-get install freeciv), and they work well. (I don't use the Ubuntu software center, mainly 'cause I don't want to see ads.) And, the stuff I can install from the main repositories is trustworthy. It's Free Software, and the source is available if I want to look at it. I also trust the organizations behind Debian and Ubuntu to pull software that is found to be unworthy of trust.

    But, Apple? Google? I don't trust them. Not only don't I trust them, I don't trust their app stores. I don't trust the software in them. There isn't sufficient review to prevent malicious software getting in. Not only that, the software isn't Free, and so even if I want to look at the code, I can't.

    And studies like this show that my lack of trust is probably a good thing. Because the software available is potentially malicious and intrusive (and I get to define what is malicious for me, and invading my privacy is malicious).

  • by ArsenneLupin ( 766289 ) on Friday July 19, 2013 @04:53AM (#44325359)

    Accessing the framework APIs will prompt the system to ask for permission, on behalf of the application. Basically, most APIs will work irregardless of what the user chooses. What those APIs return is directly related to the users choice- for example, if the user says "no" when the application attempts to determine your location via Core Location, then the CL APIs will still work- they'll just return useless information (basically hardcoded to nothing). The other APIs work in the same way.

    This was done for backwards compatibility (so applications don't break just because the privacy stuff decided you can't get access to XYZ- the APIs for XYZ still work as expected, they just don't return any usable information) and so that applications can't side step the process of asking for permission but attempting to access the APIs anyways.

    Very sensible choice. Why can't Android do the same? Or for that matter, Javascript on desktop browsers?

    It is possible to circumvent all of this by going around the system frameworks, but that is not trivial in the least- and Apple will smack you down hard for even attempting to access the private APIs you need to do so. You either go through their public APIs and get on the app store, or find some other way onto user devices (in which case the user is responsible for whatever stupidity they're going to run as root on their handheld).

    Now, this is less optimal. The OS or runtime should enforce well behavedness, not the app-store. There might be many reason why a user might bypass the app-store (such as getting apps that compete with Apple's built-in functionality, or are not up to Apple's morality standards), he should not be punished for this choice by having the app bypass system security...

    In java, applets have to respect the sandbox rules no matter where you got it from. There is just no way to use "private APIs" that give extra rights. It's enforced by the run-time (well, unless there are security holes in that runtime, but that is a different discussion...).

  • by Trax3001BBS ( 2368736 ) on Friday July 19, 2013 @05:32AM (#44325513) Homepage Journal

    But you have to be rooted.

    After it became illegal to root a device, Google store remove anything that interfered
    with another programs ability to do what it does, firewalls, adblockers, HOSTS files, permission changers...

    From the AdAway site:
    AdAway is not available on Google Play! It was removed by Google due to Violation of section 4.4 of the Developer Distribution Agreement.
    Please install it from F-Droid. https://code.google.com/p/ad-away/ [google.com]

    My XOOM tablet is rooted (jailbroken / mine) I have the old "permissions" from Google play
    that does change permissions of a program, as well as having a firewall and a HOSTS file installed.

    Can't vouch for it as it's a very quick search but http://code.google.com/p/android-permissions/ [google.com] claims to be able to do this as well.

    To see what information an Android program can send, goto www.Rovio.com and read the Tos and Privacy Policy
    it's a fav site of mine showing what's collected. Rovio.com is Angry Birds for one, ASTRO file manager reads
    the same way both very popular programs.

"Gravitation cannot be held responsible for people falling in love." -- Albert Einstein

Working...