security best practices for mobile development @ dreamforce 2013

56
Security Best Practices for Mobile Development Tom Gersic, Salesforce.com Director, Mobile Services Delivery @tomgersic

Upload: tom-gersic

Post on 15-Jan-2015

6.961 views

Category:

Technology


0 download

DESCRIPTION

The slide deck from my Mobile Security session from Dreamforce 2013

TRANSCRIPT

Page 1: Security Best Practices for Mobile Development @ Dreamforce 2013

Security Best Practices for Mobile DevelopmentSecurity Best Practices for Mobile Development

Tom Gersic, Salesforce.com

Director, Mobile Services Delivery

@tomgersic

Page 2: Security Best Practices for Mobile Development @ Dreamforce 2013

Safe harborSafe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Security Best Practices for Mobile Development @ Dreamforce 2013

Tom GersicTom Gersic

Director, Mobile Services Delivery

@tomgersic

Director, Mobile Services Delivery

@tomgersic

Page 4: Security Best Practices for Mobile Development @ Dreamforce 2013

Agenda

• Fundamental Principles

• What iOS and Android Share

• iOS Specific Characteristics

• Android Specific Characteristics

• Salesforce Mobile Offerings

Page 5: Security Best Practices for Mobile Development @ Dreamforce 2013

Who thinks the data on their phone is secure?

Page 6: Security Best Practices for Mobile Development @ Dreamforce 2013

Everything on my iPhone is encrypted because I use a PIN code.

Is this a true Statement?

Page 7: Security Best Practices for Mobile Development @ Dreamforce 2013

Anybody here use Facebook?

Page 8: Security Best Practices for Mobile Development @ Dreamforce 2013

Improved in iOS7, though

Page 9: Security Best Practices for Mobile Development @ Dreamforce 2013

What about Salesforce 1?

Page 10: Security Best Practices for Mobile Development @ Dreamforce 2013

Fundamental Security Principles

Page 11: Security Best Practices for Mobile Development @ Dreamforce 2013
Page 12: Security Best Practices for Mobile Development @ Dreamforce 2013

Vulnerability

Page 13: Security Best Practices for Mobile Development @ Dreamforce 2013

Threat

Page 14: Security Best Practices for Mobile Development @ Dreamforce 2013

Consequence

Page 15: Security Best Practices for Mobile Development @ Dreamforce 2013

Mitigation

Page 16: Security Best Practices for Mobile Development @ Dreamforce 2013

Separation of Concerns – Principle of Least Privilege

Page 17: Security Best Practices for Mobile Development @ Dreamforce 2013

Security Stack

Page 18: Security Best Practices for Mobile Development @ Dreamforce 2013

Real life examples

Page 19: Security Best Practices for Mobile Development @ Dreamforce 2013

Libtiff Image Exploit / Jailbreak• iPhone 1 – patched in 1.1.2

• Tiff buffer overflow

• Nothing to prevent executing code on the heap

• Gained root access from viewing an image on the web

Page 20: Security Best Practices for Mobile Development @ Dreamforce 2013

ASLR (PIE) and DEP

Page 21: Security Best Practices for Mobile Development @ Dreamforce 2013

iOS 7 Lock Screen Bypass

Page 22: Security Best Practices for Mobile Development @ Dreamforce 2013

Fingerprint Hacking

Page 23: Security Best Practices for Mobile Development @ Dreamforce 2013

“Bluebox uncovers Android Master Key -- 2013”

Page 24: Security Best Practices for Mobile Development @ Dreamforce 2013

Concatenated SMS Exploit – Charlie Miller

Page 25: Security Best Practices for Mobile Development @ Dreamforce 2013

Concatenated SMS Exploit

• Takes 519 SMS messages – all but 1 is invisible

• Send message -1 of X to underflow the array buffer

• Can’t be stopped by the user

• Used to write an entire binary executable to the heap, and run

it, taking over the phone.

Page 26: Security Best Practices for Mobile Development @ Dreamforce 2013

NFC Exploit

Page 27: Security Best Practices for Mobile Development @ Dreamforce 2013

But most of the time…

Page 28: Security Best Practices for Mobile Development @ Dreamforce 2013

Data Security – Hardware Encryption

Requires PIN/Passcode on both iOS and Android

On iOS, apps opt-in

Supported on iPhone 3GS w/ iOS v4+ (AES 256 bit)

Android Honeycomb+ (AES 128 bit)• Some manufacturers increase to AES 256 bit (Samsung SAFE)

SD Card encryption on Android is manufacturer specific.

Page 29: Security Best Practices for Mobile Development @ Dreamforce 2013

App Security

Page 30: Security Best Practices for Mobile Development @ Dreamforce 2013

Layers of Defense

Page 31: Security Best Practices for Mobile Development @ Dreamforce 2013

Application Signing

Page 32: Security Best Practices for Mobile Development @ Dreamforce 2013

Application Sandboxing

Page 33: Security Best Practices for Mobile Development @ Dreamforce 2013

iOS Sandbox• All apps (Apple’s and App Store) run as “mobile” user.

• Sandboxing is bolted on -- handled via XNU Sandbox

“Seatbelt” kernel extension.

• Applications run in separate subdirectories of

/private/var/mobile/Applications

• Any app in this directory is loaded with “container”

(sandboxed) profile.

Page 34: Security Best Practices for Mobile Development @ Dreamforce 2013

Android Sandbox

• Uses underlying Linux security model

• Every app runs as a separate user

• Apps signed by the same developer can run as the same user, if desired

(not the default, though)

• Every app runs in its own instance of the Android Runtime (Dalvik Virtual

Machine)

• Like iOS, every app has its own directory structure

• SD Card, though, is generally public – accessible to all apps and

unencrypted unless manufacturer has added encryption (Samsung SAFE)

Page 35: Security Best Practices for Mobile Development @ Dreamforce 2013

Background Processing

Page 36: Security Best Practices for Mobile Development @ Dreamforce 2013

iOS 7 Backgrounding

Page 37: Security Best Practices for Mobile Development @ Dreamforce 2013

Background Processes / App Interaction

Page 38: Security Best Practices for Mobile Development @ Dreamforce 2013

Types of Android Components

Activities

Intent

Service

Content Provider

Broadcast Receiver

Page 39: Security Best Practices for Mobile Development @ Dreamforce 2013

Public / Private Components

Page 40: Security Best Practices for Mobile Development @ Dreamforce 2013

But what about custom keyboards?

Page 41: Security Best Practices for Mobile Development @ Dreamforce 2013

Keyboard Security Risks

Page 42: Security Best Practices for Mobile Development @ Dreamforce 2013

Except Passwords?

https://github.com/tomgersic/AndroidKeyLogger

Page 43: Security Best Practices for Mobile Development @ Dreamforce 2013

Permissions

Page 44: Security Best Practices for Mobile Development @ Dreamforce 2013

Mitigation

Page 45: Security Best Practices for Mobile Development @ Dreamforce 2013

Static Analysis Tools

Page 46: Security Best Practices for Mobile Development @ Dreamforce 2013

Application Encryption

• Encrypt your data yourself using PIN / Passcode

• CoreData/SQLCipher NSIncrementalStore

Good Dynamics

• FMDB/SQLCipher Salesforce Smartstore

Page 47: Security Best Practices for Mobile Development @ Dreamforce 2013

Jailbreak Detection

• Sandbox integrity check: fork() should fail

• Check for jailbreak files: /Applications/Cydia.app

/Library/MobileSubstrate/MobileSubstrate.dylib

/var/cache/apt

/bin/sh

/bin/bash

Page 48: Security Best Practices for Mobile Development @ Dreamforce 2013

In-App Encryption

Page 49: Security Best Practices for Mobile Development @ Dreamforce 2013

Customer DataSalesforce.com Mobile SDK

Page 50: Security Best Practices for Mobile Development @ Dreamforce 2013

SmartStore Stack

Page 51: Security Best Practices for Mobile Development @ Dreamforce 2013

Enable ASLR in your app

• ASLR: Address Space Layout Randomization

Page 52: Security Best Practices for Mobile Development @ Dreamforce 2013

Stack Canaries

• AKA Stack Smashing Protection

• Protect against buffer overflows

• Places random known value (canary) before local variables

• Use Apple LLVM – won’t work with LLVM GCC

Page 53: Security Best Practices for Mobile Development @ Dreamforce 2013

Hide Data from App Snapshot Images

Page 54: Security Best Practices for Mobile Development @ Dreamforce 2013

Who STILL thinks the data on their phone is secure?

Page 55: Security Best Practices for Mobile Development @ Dreamforce 2013

Tom GersicTom Gersic

Director, Mobile Services Delivery@tomgersic

Page 56: Security Best Practices for Mobile Development @ Dreamforce 2013

@tomgersic