Bypassing the Android Permission Model


             Georgia Weidman
        Founder and CEO, Bulb Security LLC
Is the permission model working?
  Are users making good decisions?
Most Popular Android App
Demo




App abusing permissions
Demo explained
Permissions:
    −   Read IMEI
    −   Read Contacts
    −   Send SMS



    We exploited every one of these
Rooting Android
Rooting Android for Evil
     (DroidDream)
DroidDream Permissions




INTERNET
READ_PHONE_STATE
CHANGE_WIFI_STATE
ACCESS_WIFI_STATE
DroidDream
DroidDream
DroidDream Rooting




                           Exploid
CVE-2010-Easy (RageAgainsttheCage)
Rooting Android
DroidDream Root Payload



    Permission model no longer applies
       −   installed packages
       −   All personal data
       −   Send to C&C
Rooting Android for Evil
     (DroidDream)
Rooting Android
Mitigation

    Users update their phones

    That means they need the updates pushed out


    That means you third party platforms!!
Android Storage

    Sdcard
    
        VFAT


    With apps
    
        Only visible to app (default)
    
        World readable
Demo




Exploiting bad storage practices
Demo Explained

    Stores sensitive data on the sdcard

    Sdcard is VFAT

    Everything is world readable
Demo Explained

    Discovers how the data is stored

    Accesses it

    Sends it to an attacker
Code Examples




Vulnerable Code
Malicious Code
BadSaveFile
BadSendFile
Wait? How do we get source code?



Winzip/7zip etc.
dex2jar
jd-gui

Whitepaper with more info: http://cdn01.exploit-db.com/wp-
 content/themes/exploit/docs/17717.pdf
Nonsensical Code
while (true)
      {
          if (i < 0);
          String str;
          while (true)
          {
              return;
          try
          {
Mitigation

    Store information securely
    
        Not on sdcard

    
        Not in source code

    
        Not world readable
Android Interfaces

    Call other programs


    Don't reinvent the wheel


    Take a picture


    Twitter from photo app
Demo




Exploiting open interface with SMS functionality
Demo Explained

    When it is called it sends an SMS

    Caller can set the number and message

    Sadly this is considered useful!
Demo Explained

    Calls the SMSBroadcastr

    Sends number and message

    Sends an SMS
Code Examples




Vulnerable Code
Malicious Code
SMSBroadcastr
SMSIntent
Mitigations

    Don't have dangerous functionality available in
    interfaces


    Require user interaction (click ok)


    Require-permission tag in manifest for interface
Contact

         Georgia Weidman
georgiaweidman.com bulbsecurity.com
     georgia@bulbsecurity.com
         @georgiaweidman

Bypassing the Android Permission Model

Editor's Notes

  • #2 Song lyrics Android permission model- how does it work. Explicitly ask for permissions Users must accept or deny
  • #3 Edit and Read SMS, send SMS, receive SMS Modify/delete USB storage contents Prevent phone from sleeping, write sync settings GPS data Services that cost you money Act as account authenticator, manage accounts Read and write to your personal information including contact data Phone calls, read phone state and identity Full network access
  • #4 Now that I am doing a lot of development I know why this happens. I used to rag on developers for doing this, but after having my app crash over and over and me spending hours on google and rewriting code and putting debugging statements in, unable to come up with a good reason why a very simple instruction is crashing my app, and then realizing its because I forgot to ask for the permission, I see why developers would just ask for every permission imaginable right off the bat
  • #5 So naturally I wrote an app to demo how ridiculously easy it is to abuse users acceptance of dangerous permissions
  • #7 Anyone used a tool like this to root your Android phone? They use known exploits to give you root so you can load custom firmwares etc.
  • #8 Trojaned Android apps on the official android market. Antivirus finds it now, doesn&apos;t find my app. Pretends to be a normal app, runs exploits and steals your data in the background
  • #9 That&apos;s all. It actually does abuse the IMEI one right off the bat before it even roots your phone.
  • #10 Pretended to be different apps, games, ads, dirty apps
  • #11 Droiddream takes all the code from the regular apps and calls the it so to the user it looks like the app is running normally but it runs evil code in the background
  • #12 Tried two different known root exploits for Android Both were patched in Android 2.2.1 which was released before the droiddream story broke Not necessarily patched when droiddream was written
  • #13 These are the same sorts of roots that tools like these use In fact from reading the source of both I have reason to believe that the ragegainstthecage payload in droiddream was actually copied from z4root
  • #14 So after it runs the root exploits if it is successful then it installs a system service. Only firmware apps should be system. System services have access to additional permissions and the permission model breaks down around system services. System app steals your data and sends it to a C&amp;C
  • #15 The moral of the story is Droiddream was an evil app masquerading as a beneign one
  • #16 What&apos;s to stop these guys from doing the same?
  • #17 For a while Android had the best updating mechanism out there for a smartphone Iphone you had to plug it in blackberry you had to plug it in Android pushes over the air, so do the others now Problem with Android is third party. Google releases new versions and Google phones get it. Others have to port it. There have been instances of new versions taking 6 months to push out to everyone. Older phones don&apos;t update. G1 still runs Android 1.6. That phone I rooted for Mom&apos;s fried
  • #18 So far we&apos;ve looked at apps that were meant to be evil by their developers. Now we are going to look at what I consider to be next generation flaws.
  • #19 Benign apps that have flaws that allow bad code to take advantage of it. I&apos;m not talking about traditional attack vectors like buffer overflows. Those are old and uninteresting. What I&apos;m interested in here is getting permissions we shouldn&apos;t by piggybacking on poorly coded apps.