0% found this document useful (0 votes)
102 views

PM Android Security

Android takes a multi-layered approach to security by sandboxing applications, using permissions, application signing, and the Linux kernel for access controls. It aims to prevent vulnerabilities, minimize their impact if they occur, and allow detection and reaction to issues. Key aspects of the Android security model include running each app in its own Linux user ID sandbox, controlling access to sensitive APIs and data through permissions, and facilitating automatic updates to address vulnerabilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
102 views

PM Android Security

Android takes a multi-layered approach to security by sandboxing applications, using permissions, application signing, and the Linux kernel for access controls. It aims to prevent vulnerabilities, minimize their impact if they occur, and allow detection and reaction to issues. Key aspects of the Android security model include running each app in its own Linux user ID sandbox, controlling access to sensitive APIs and data through permissions, and facilitating automatic updates to address vulnerabilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 36

Android Security

CEG436: Mobile Computing


Prabhaker Mateti
Security Philosophy
• Finite time and resources
• Humans have difficulty understanding risk
• Safer to assume that
– Most developers do not understand security
– Most users do not understand security
• Security philosophy cornerstones
– Need to prevent security breaches from occurring
– Need to minimize the impact of a security breach
– Need to detect vulnerabilities and security breaches
– Need to react to vulnerabilities and security breaches
swiftly
Prevent
• 5 million new lines of code
• Uses almost 100 open source libraries
• Android is open source ⇒ can't rely on obscurity
• Teamed up with security experts from
– Google Security Team
– iSEC Partners
– n.runs
• Concentrated on high risk areas
– Remote attacks
– Media codecs
– New/custom security features
• Low-effort/high-benefit features
– ProPolice stack overflow protection
– Heap protection in dlmalloc
Minimize
• We cannot rely on prevention alone
– Vulnerabilities happen
• Users will install malware
• Code will be buggy
• How can we minimize the impact of a security issue?
• My webmail cannot access my banking web app
– Same origin policy
• Why can malware access my browser? my banking
info?
• Extend the web security model to the OS
Minimize
• Traditional operating system security
– Host based
– User separation
• Mobile OSes are for single users
• User separation is like a "same user policy"
• Run each application in its own UID is like a
"same application policy"
– Privilege separation
• Make privilege separation relatively transparent
to the developer
Detect
• A lesser-impact security issue is still a security issue
• Internal detection processes
– Developer education
– Code audits
– Fuzzing
– Honeypot
• Everyone wants security ⇒ allow everyone to detect
issues
– Users
– Developers
– Security Researchers
React
• Autoupdaters are the best security tool since
Diffie-Hellman
• Every modern operating system should be
responsible for:
– Automatically updating itself
– Providing a central update system for third-party
applications
• Android's Over-The-Air update system (OTA)
– User interaction is optional
– No additional computer or cable is required
– Very high update rate
Android Platform Security Architecture
• Security at the OS through the Linux kernel
• Mandatory application sandbox
• Secure interprocess communication
• Application signing
• Application-defined and user-granted
permissions
Linux Security
• Linux is used in millions of security-sensitive
environments.
– constantly being researched, attacked, and fixed by
thousands of developers,
– Linux has become trusted by many
• A user-ID-based permissions model
• Process isolation
• Extensible mechanism for secure IPC
• The ability to remove unnecessary and potentially
insecure parts of the kernel
Android Security Basics
• Applications, by default, have no permissions
• Permissions list: Manifest.permission
• Applications statically declare the permissions they
require
– Android system prompts the user for consent at the time
the application is installed
– no mechanism for granting permissions dynamically (at
run-time)
– in AndroidManifest.xml, add one or more <uses-
permission> tags
– e.g., <uses-permission android:name=
"android.permission.RECEIVE_SMS" />
Android Security Extras
• Hardware-based No eXecute (NX) to prevent code
execution on the stack and heap
• ProPolice canaries to prevent stack buffer overruns
• safe-iop safe integer op lib for C
• Extensions to dlmalloc to prevent double free()
vulnerabilities and to prevent heap exploits
• OpenBSD calloc to prevent integer overflows during
memory allocation
• Linux mmap_min_addr() to mitigate null pointer
dereference privilege escalation
dlmalloc

– Heap consolidation attack


– Allocation meta-data is stored in band
– Heap overflow can perform 2 arbitrary pointer
overwrites
– To fix, check:
• b->fd->bk == b
• b->bk->fd == b
System Files
• The system partition
– Android's kernel as well as the OS libraries,
application runtime, application framework, and
applications.
– set to read-only
• When a user boots the device into Safe Mode
– only core Android applications are available.
– free of third-party software.
OS protected APIs
• Cost-Sensitive APIs
– Telephony
– SMS/MMS
– Network/Data connections
– In-App Billing
– NFC Access
• Sensitive Data Input Devices
– Location data (GPS)
– Camera functions
– microphone
• Bluetooth functions
• Personal Information
Interprocess Communication
• Standard IPC
– file system, local sockets, or signals.
– Linux permissions still apply.
• new IPC mechanisms:
• Binder: RPC mechanism for in-process and cross-
process calls. Via a custom Linux driver.
• Services: interfaces directly accessible using binder.
• Intents: A message object that represents an
"intention" to do something.
• ContentProviders: A data storehouse
Application Signing
• Why self signing?
– Market ties identity to developer account
– CAs have had major problems with fidelity in the
past
– No applications are trusted. No "magic key"

• What does signing determine?


– Shared UID for shared keys
– Self-updates
Application Signing
• All .apk files must be signed with a certificate
– identifies the author of the application.
– does not need to be signed by a certificate authority
• allows the system to grant or deny applications
– access to signature-level permissions
– request to be given the same Linux identity as another
application.
• If the public key matches the key used to sign any
other APK, the new APK may request to share a
UID with the other APK.
User IDs and File Access
• each package is assigned a distinct Linux UID
– there is no /etc/passwd however
– different device => may have a different UID
– files created by pkg are owned by this “user”
• Shared UID feature
– Two applications are signed ⇒ can share UIDs
– More interactivity
Permissions
• Whitelist model
– Allow minimal access by default
– User accepted access
• Ask users fewer questions
• Make questions more understandable
• 194 permissions
– More ⇒ granularity
– Less ⇒ understandability
Permissions
• PERMISSION_GRANTED or
PERMISSION_DENIED
Context.checkCallingPermission() Arbitrarily
fine-grained permissions
• Context.checkPermission(String, pid, uid)
“Android sandboxes applications”
• The sandbox is based on separation of
– processes
– file permissions
– Authenticated IPC
• Each application
– is a different “user”; its own UID
– runs in its own Linux process
– its own Dalvik VM
• Sandboxes native code and sys applications
Application Sandbox
• Place access controls close to the resource, not in
the VM
– Smaller perimeter ⇒ easier to protect
• Default Linux applications have too much power
• Lock down user access for a "default" application
• Fully locked down applications limit innovation
• Relying on users making correct security
decisions is tricky
File system Encryption
• full file system encryption
– Android 3.0 and later
– AES128
– Password + random salt
Rooting of Android Devices
• root
– uid == 0 as in Linux
– has full access to all
• applications and all application data
• system
– the kernel and a few core applications
• Boot Loaders
– embedded system boot techniques
– “Locked”: Check a signature of the OS files being
booted, or installed.
SIM Card Access
• Low level access to the SIM card is not available
to third-party apps.
• The OS handles all communications with the SIM
card including access to personal information
(contacts) on the SIM card memory.
• Applications also cannot access AT commands, as
these are managed exclusively by the Radio
Interface Layer (RIL). The RIL provides no high
level APIs for these commands.
GSM Vulnerabilities
– GSM
• Largest Mobile network in the world
• 3.8 billion phones on network
– David Hulton and Steve Muller
• Developed method to quickly crack GSM encryption
• Can crack encryption in under 30 seconds
• Allows for undetectable evesdropping
– Similar exploits available for CDMA phones
SMS Vulnerabilities
– SMS
• Short Messaging System
• Very commonly used protocol
• Used to send "Text Messages"
– GSM uses 2 signal bands, 1 for "control", the other
for "data".
– SMS operates entirely on the "control" band.
– High volume text messaging can disable the
"control" band, which also disables voice calls.
– Can render entire city 911 services unresponsive.
MMS Vulnerabilities
– MMS
• Unsecure data protocol for GSM
• Extends SMS, allows for WAP connectivity
– Exploit of MMS can drain battery 22x faster
• Multiple UDP requests are sent concurrently, draining
the battery as it responds to request
– Does not expose data
– Does make phone useless
Bluetooth Vulnerabilities
– Bluetooth
• Short range wireless communication protocol
• Used in many personal electronic devices
• Requires no authentication
– An attack, if close enough, could take over
Bluetooth device.
– Attack would have access to all data on the
Bluetooth enabled device
– Practice known as bluesnarfing
A Study of Android Market Apps
Information Misuse by Apps
• phone identifiers: phone number, IMEI (device
identifier), IMSI (subscriber identifier), and ICC-ID (SIM
card serial number).
• Phone identifiers are frequently leaked through
plaintext requests.
• Phone identifiers are used as device fingerprints.
• Phone identifiers, specifically the IMEI, are used to
track individual users.
• Not all phone identifier use leads to exfiltration.
• Phone identifiers are sent to advertisement and
analytics servers.
• Private information is written to Android’s
general logging interface.
• Applications broadcast private information in
IPC accessible to all applications.
• Few applications are vulnerable to forging
attacks to dynamic broadcast receivers.
• Some applications define intent addresses
based on IPC input.
• Null dereferences cause an application to
crash, and can thus be used to as a denial of
service.
• Applications frequently do not perform null
checks on IPC input.
More Privilege Separation
• Media codecs are very complex ⇒ very insecure
• Won't find all the issues in media libraries
• Banish OpenCore media library to a lesser
privileged process
– mediaserver
• Immediately paid off
– Charlie Miller reported a vulnerability in our MP3
parsing
– CERT-2009-002
External Reports
• Patrick McDaniel, William Enck, Machigar Ongtang
– Applied formal methods to assess SMS and Dialer
• Charlie Miller, John Hering
– Outdated WebKit library with PCRE issue
• XDA Developers
– Safe mode lock screen bypass
• Charlie Miller, Collin Mulliner
– MP3, SMS fuzzing results
• Panasonic, Chris Palmer
– Permission regression bugs
• If you find a security issue, email [email protected]
References
• Android Security Overview, source.android.
com/tech/security/
• Nils, “Building Android Sandcastles in
Android’s Sandbox,” Oct 2010, BlackHat
• William Enck, Damien Octeau, Patrick
McDaniel, and Swarat Chaudhuri, “A Study of
Android Application Security”, 20th USENIX
Security, Aug 2011

You might also like