SlideShare a Scribd company logo
Smart Phones Dumb Apps
           Dan Cornell




© Copyright 2011 Denim Group - All Rights Reserved
My Background
 • Dan Cornell, founder and CTO of Denim Group
 • Software developer by background (Java, .NET, etc)
 • OWASP San Antonio, Global Membership Committee

 • Denim Group
         – Build software with special security, performance, reliability
           requirements
         – Help organizations deal with the risk associated with their software
                  • Code reviews and application assessments
                  • SDLC consulting
                  • Secure development training – instructor-led and eLearning

© Copyright 2011 Denim Group - All Rights Reserved                                1
Agenda
 •     Generic Smartphone Threat Model
 •     Sample Application
 •     What an Attacker Sees (Android Edition)
 •     What About iPhones/iPads?
 •     Special Topic: Browser URL handling
 •     Closing Thoughts
 •     Questions




© Copyright 2011 Denim Group - All Rights Reserved   2
Tradeoffs: Value versus Risk
 • Mobile applications can create tremendous value for organizations
         – New classes of applications utilizing mobile capabilities: GPS, camera, etc
         – Innovating applications for employees and customers
 • Mobile devices and mobile applications can create tremendous risks
         – Sensitive data inevitably stored on the device (email, contacts)
         – Connect to a lot of untrusted networks (carrier, WiFi)


 • Most developers are not trained to develop secure applications
         – Fact of life, but slowing getting better
 • Most developers are new to creating mobile applications
         – Different platforms have different security characteristics and capabilities




© Copyright 2011 Denim Group - All Rights Reserved                                        3
Smart Phones, Dumb Apps
 • Lots of media focus on device and platform security
         – Important because successful attacks give tremendous attacker leverage
 • Most organizations:
         –     Accept realities of device and platform security
         –     Concerned about the security of their custom applications
         –     Concerned about sensitive data on the device because of their apps
         –     Concerned about network-available resources that support their apps


 • Who has smartphone application deployed for customers?

 • Who has had smartphone applications deployed without their
   knowledge?
         – *$!%$# marketing department…

© Copyright 2011 Denim Group - All Rights Reserved                                   4
Generic Mobile Application Threat Model




© Copyright 2011 Denim Group - All Rights Reserved   5
Some Assumptions for Developers
 • Smartphone applications are essentially thick-client applications
         –     That people carry in their pockets
         –     And drop in toilets
         –     And put on eBay when the new iPhone comes out
         –     And leave on airplanes
         –     And so on…


 • Attackers will be able to access:
         – Target user (victim) devices
         – Your application binaries


 • What else should you assume they know or will find out?


© Copyright 2011 Denim Group - All Rights Reserved                     6
A Sample Application
 • Attach to your brokerage account
 • Pull stock quotes
 • Make stock purchases

 • Application on mobile device supported by enterprise and 3rd party
   web services

 • (Apologies to anyone with any sense of UI design)

 • This is intentionally nasty, but is it unrealistic?



© Copyright 2011 Denim Group - All Rights Reserved                      7
So What Does a Bad Guy See? (Android Edition)
 • Install the application onto a device
 • Root the device
 • Pull the application’s APK file onto a workstation for analysis

 • APK files are ZIP files
 • They contain:
         – AndroidManifest.xml
         – Other binary XML files in res/
         – classes.dex DEX binary code




© Copyright 2011 Denim Group - All Rights Reserved                   8
Generic Android Application Threat Model




© Copyright 2011 Denim Group - All Rights Reserved   9
What’s Up With My XML Files?
                                                     • Binary encoding

                                                     • Use axml2xml.pl to
                                                       convert them to text




                                                     http://code.google.com/p/android-random/downloads/detail?name=axml2xml.pl



© Copyright 2011 Denim Group - All Rights Reserved                                                                               10
Much Better
 • Now we see:
         – Screens in application
         – Permissions required
           by the application
         – Intents applications is
           registered to consume
         – And so on




© Copyright 2011 Denim Group - All Rights Reserved   11
Do the Same Thing With the Rest of Them
 • Recurse through the res/ subdirectory
 • UI layouts, other resources




© Copyright 2011 Denim Group - All Rights Reserved   12
What About the Code?
 • All of it is stuffed in classes.dex

 • Android phones use DEX rather than Java bytecodes
         – Register-based virtual machine rather than stack-based virtual machine


 • Options:
         – Look at DEX assembly via de-dexing
         – Convert to Java bytecode and then to Java source code




© Copyright 2011 Denim Group - All Rights Reserved                                  13
De-Dex to See DEX Assembly
                                                     • DEX bytecode ~=
                                                       Java bytecode
                                                     • All code goes in one
                                                       file
                                                     • Disassemble to DEX
                                                       assembly with dedexer


                                                     http://dedexer.sourceforge.net/
© Copyright 2011 Denim Group - All Rights Reserved                                     14
Lots of Information
 • Like the fun-fun world
   of Java disassembly
   and decompilation
         – (We‟ll get to the DEX
           decompilation in a
           moment)
 • LOTS of information
   available


© Copyright 2011 Denim Group - All Rights Reserved   15
But Can I Decompile to Java?
 • Yes
 • We
 • Can

 • Convert to Java bytecodes with dex2jar
         – http://code.google.com/p/dex2jar/
         – (Now you can run static analysis tools like Findbugs)


 • Convert to Java source code with your favorite Java decompiler
         – Everyone has a favorite Java decompiler, right?




© Copyright 2011 Denim Group - All Rights Reserved                  16
DEX Assembly Versus Java Source Code
 • De-DEXing works pretty reliably
 • DEX assembly is easy to parse with grep
 • DEX assembly is reasonably easy to manually analyze

 • Java decompilation works most of the time
 • Java source code can be tricky to parse with grep
 • Java source code is very easy to manually analyze

 • Verdict:
         – Do both!
         – Grep through DEX assembly to identify starting points for analysis
         – Analyze Java source in detail

© Copyright 2011 Denim Group - All Rights Reserved                              17
So What Did We Learn?
 • Look at the string constants
         – URLs, hostnames, web paths


 • Look at the de-DEXed assembly
         – Method calls
         – Data flow


 • Developers: BAD NEWS
         – The bad guys have all your code
         – They might understand your app better than you
         – How much sensitive intellectual property do you want to embed in your mobile
           application now?


© Copyright 2011 Denim Group - All Rights Reserved                                        18
Is There Sensitive Data On the Device?
 • Look at the disassemled DEX code

 • Grep for “File”




© Copyright 2011 Denim Group - All Rights Reserved   19
What About Java Source Code?
 • Get the source code with JD-Gui
         – http://java.decompiler.free.fr/




© Copyright 2011 Denim Group - All Rights Reserved   20
Look for Files With Bad Permissions
 • Look for file open operations using
         – Context.MODE_WORLD_READABLE
         – (translates to “1”)




© Copyright 2011 Denim Group - All Rights Reserved   21
Next: What Is On the Server-Side
 • To access sensitive data on a device:
         – Steal a device
         – Want more data?
         – Steal another device


 • To access sensitive data from web services
         – Attack the web service


 • String constants for URLs, hostnames, paths

 • Examples:
         – 3rd party web services
         – Enterprise web services
© Copyright 2011 Denim Group - All Rights Reserved   22
So Now What?
 • 3rd Party Web Services
         – Is data being treated as untrusted?
         – Google promised to “not be evil”
                  • For everyone else…


 • Enterprise Web Services
         – Did you know these were deployed?
         – Have these been tested for possible security flaws?
         – Stealing records en-masse is preferable to stealing them one-at-a-time




© Copyright 2011 Denim Group - All Rights Reserved                                  23
Web Services Example
 • Trumped up example, but based on real life

 • Given a web services endpoint, what will a bad guy do?

 • Sequence:
         –     Request a junk method “abcd”
         –     Get a “No method „abcd‟ available”
         –     Request a method “<script>alert(„hi‟);</script>”
         –     Hilarity ensues…




© Copyright 2011 Denim Group - All Rights Reserved                24
What Is Wrong With the Example Application?
 •     Sensitive data stored on the device unprotected
 •     Trusts data from 3rd party web services
 •     Exposes enterprise web services to attackers
 •     Enterprise web services vulnerable to reflected XSS attacks
 •     And so on…

 • This is a trumped-up example with concentrated vulnerabilities, but…

 • All of these reflect real-world examples of vulnerabilities
         – Public breaches
         – Application assessments


© Copyright 2011 Denim Group - All Rights Reserved                        25
What About iPhones/iPads?
 • Objective-C compiled to ARMv6, ARMv7 machine code
         – Not as fun (easy) as Java compiled to DEX bytecode
         – But … subject to buffer overflows, memory handling issues, other native code fun


 • Apps from iTunes Store
         – Encrypted
         – Used to be “easy” (well, mechanical) to break encryption with a jailbroken phone
           and a debugger
         – Now trickier (but likely not insurmountable)
         – And the default apps are not encrypted…




© Copyright 2011 Denim Group - All Rights Reserved                                            26
Run “strings” on the Binary
 • Web services endpoints: URLs, hostnames, paths

 • Objective-C calling conventions:

 [myThing doStuff:a second:b third:c];


 becomes

 obj_msgsend(myThing, “doStuff:second:third:” a, b, c);
                                             ,




© Copyright 2011 Denim Group - All Rights Reserved        27
Run “otool” on the Binary
 • otool –l <MyApp>
         – View the load commands
         – Segment info, encryption info, libraries in use


 • otool –t –v <MyApp>
         – Disassemble the text segment to ARMv6 assembly
         – If run on an encrypted application you get garbage


 • And so on…




© Copyright 2011 Denim Group - All Rights Reserved              28
Net Result for iPhone/iPad
 • More obscure
         – But does that mean more secure?


 • Can still retrieve a tremendous amount of information
 • Can still observe a running application

 • “Security” based on obscurity is not durable




© Copyright 2011 Denim Group - All Rights Reserved         29
Mobile Browser Content Handling
    • Many mobile platforms allow you to designate applications to handle
      content found in web pages
            – By URI protocol
            – By content type


    • Provide a “premium” experience for users who have the target app
      installed

    • Examples:
            – tel:// URLs initiating phone calls
            – maps:// URLs to display maps




© Copyright 2011 Denim Group - All Rights Reserved                          30
iPhone/iPad URL Schemes
 • iOS applications can
   be set up to “handle”
   certain URL schemes
 • Defined in the
   application’s Info.plist
 • Binary format:
   annoying



© Copyright 2011 Denim Group - All Rights Reserved   31
Decoding plist Files
                                                     • plutil -convert xml1 Info.plist
                                                     • Much nicer




© Copyright 2011 Denim Group - All Rights Reserved                                       32
iOS URL Handlers
 • XPath: Look for:
 /plist/dict/array/dict[key='CFBundleURLSchemes']/array/string
 • Now you know the URL Schemes the app handles

 • SANS blog post on this issue in iOS:
         – http://software-security.sans.org/blog/2010/11/08/insecure-handling-url-schemes-
           apples-
           ios/?utm_source%253Drss%2526utm_medium%253Drss%2526utm_campaign%2
           53Dinsecure-handling-url-schemes-apples-ios
         – Too long to type? http://bit.ly/ezqdK9




© Copyright 2011 Denim Group - All Rights Reserved                                            33
Android Intents
 • Intents are facilities for late-binding messaging between applications
         – http://developer.android.com/guide/topics/intents/intents-filters.html


 • One use is to allow applications to register to receive messages from
   the Browser when certain types of content are received
         – Like iOS URL Schemes but an even more comprehensive IPC mechanism




© Copyright 2011 Denim Group - All Rights Reserved                                  34
Intent Filter Example
 <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="danco" />
 </intent-filter>



 • Action: What to do?
 • Data: Scheme is URI “protocol” to handle
 • Category BROWSABLE: Allow this Action to be
   initiated by the browser
© Copyright 2011 Denim Group - All Rights Reserved                  35
Intent Filter Demo – Manual Launch, HTML Page




© Copyright 2011 Denim Group - All Rights Reserved   36
Intent Filter Demo – Anchor Launch, IFrame
 Launch




© Copyright 2011 Denim Group - All Rights Reserved   37
I’m a Security Tester. Why Do I Care?
 • URL handlers are remotely-accessible attack surface

 • This is a way for you to “reach out and touch” applications installed on
   a device if you can get a user to navigate to a malicious page
 • Send in arbitrary URLs via links or (easier) embedded IFRAMEs

 • Example: iOS Skype application used to automatically launch the
   Skype application and initiate a call when it encountered a skype://
   URL
         – Apple‟s native Phone handle for tel:// URLs would confirm before a call was made




© Copyright 2011 Denim Group - All Rights Reserved                                            38
I’m a Developer. Why Do I Care?
 • See the previous slide. Bad guys care. So should you. Please.

 • Content passed in via these handlers must be treated as untrusted
         – Positively validate
         – Enforce proper logic restrictions


 • All:
         – Should a malicious web page be able to cause this behavior?
                  • Make phone call, transmit location, take photo, start audio recording, etc
 • iOS:
         – Validate inputs to handleOpenURL: message
 • Android:
         – Validate data brought in from Action.getIntent() method
© Copyright 2011 Denim Group - All Rights Reserved                                               39
So What Should Developers Do?
 • Threat model your smartphone applications
         – More complicated architectures -> more opportunities for problems


 • Watch what you store on the device
         – May have PCI, HIPAA implications


 • Be careful consuming 3rd party services
         – Who do you love? Who do you trust?


 • Be careful deploying enterprise web services
         – Very attractive target for bad guys
         – Often deployed “under the radar”


© Copyright 2011 Denim Group - All Rights Reserved                             40
Secure Mobile Development Reference
 • Platform-specific recommendations
 • Key topic areas

 • Provide specific, proscriptive guidance to developers building mobile
   applications




© Copyright 2011 Denim Group - All Rights Reserved                         41
Specific Platforms
 •     iOS (iPhone, iPad)
 •     Android
 •     Blackberry (in progress)
 •     Windows Phone 7 (in progress)
         – Windows Mobile 6.5 (?)
 • Symbian (?)
 • Others (?)

 • Will be guided by demand, which is focused by new development
   activity



© Copyright 2011 Denim Group - All Rights Reserved                 42
Topics Areas
 • Topic Areas
         –     Overview of Application Development
         –     Overview of Secure Development
         –     Defeating Platform Environment Restrictions
         –     Installing Applications
         –     Application Permissions Model
         –     Local Storage
         –     Encryption APIs
         –     Network Communications
         –     Protecting Network Communications
         –     Native Code Execution
         –     Application Licensing and Payments
         –     Browser URL Handling


© Copyright 2011 Denim Group - All Rights Reserved           43
So What Should Security People Do?
 • Find out about smartphone projects
         – Not always done by your usual development teams
         – R&D, “Office of the CTO,” Marketing


 • Assess the security implications of smartphone applications
         – What data is stored on the device?
         – What services are you consuming?
         – Are new enterprise services being deployed to support the application?




© Copyright 2011 Denim Group - All Rights Reserved                                  44
Resources
 • axml2xml.pl (Convert Android XML files to normal XML)
         – http://code.google.com/p/android-random/downloads/detail?name=axml2xml.pl
 • Dedexer (Convert DEX bytecodes into DEX assembler)
         – http://dedexer.sourceforge.net/
 • Dex2jar (Convert DEX bytecode in Java bytecode)
         – http://code.google.com/p/dex2jar/
 • JD-GUI (Convert Java bytecode to Java source code)
         – http://java.decompiler.free.fr/
 • otool (Get information about iPhone binaries)
         –     http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/otool.1.html




© Copyright 2011 Denim Group - All Rights Reserved                                                                 45
Online
 • Code, slides and videos online:

         www.smartphonesdumbapps.com




© Copyright 2011 Denim Group - All Rights Reserved   46
Questions?
 Dan Cornell
 dan@denimgroup.com
 Twitter: @danielcornell

 www.denimgroup.com
 (210) 572-4400




© Copyright 2011 Denim Group - All Rights Reserved   47

More Related Content

PDF
Vulnerability Management In An Application Security World
PPTX
How iOS and Android Handle Security Webinar
PDF
Top Strategies to Capture Security Intelligence for Applications
PDF
Vulnerability Management In An Application Security World: AppSecDC
PDF
The Magic of Symbiotic Security
PDF
What Permissions Does Your Database User REALLY Need?
PDF
The Permanent Campaign
PDF
Monitoring Attack Surface to Secure DevOps Pipelines
Vulnerability Management In An Application Security World
How iOS and Android Handle Security Webinar
Top Strategies to Capture Security Intelligence for Applications
Vulnerability Management In An Application Security World: AppSecDC
The Magic of Symbiotic Security
What Permissions Does Your Database User REALLY Need?
The Permanent Campaign
Monitoring Attack Surface to Secure DevOps Pipelines

What's hot (20)

PDF
Software Security for Project Managers: What Do You Need To Know?
PPTX
Building a Mobile Security Program
PDF
Benchmarking Web Application Scanners for YOUR Organization
PDF
Software Security: Is OK Good Enough? OWASP AppSec USA 2011
PDF
The Need For Open Software Security Standards In A Mobile And Cloudy World
PDF
Social Networks and Security: What Your Teenager Likely Won't Tell You
PDF
The ThreadFix Ecosystem: Vendors, Volunteers, and Versions
PDF
Building Your Application Security Data Hub - OWASP AppSecUSA
PDF
ThreadFix 2.4: Maximizing the Impact of Your Application Security Resources
PDF
Do You Have a Scanner or Do You Have a Scanning Program? (AppSecEU 2013)
PDF
ThreadFix 2.2 Preview Webinar with Dan Cornell
PDF
SecDevOps: Development Tools for Security Pros
PDF
Managing Your Application Security Program with the ThreadFix Ecosystem
PDF
Secure DevOps with ThreadFix 2.3
PDF
ThreadFix 2.1 and Your Application Security Program
PDF
Running a Software Security Program with Open Source Tools
PDF
Developing Secure Mobile Applications
PDF
Using ThreadFix to Manage Application Vulnerabilities
PDF
Structuring and Scaling an Application Security Program
PDF
Running a Software Security Program with Open Source Tools (Course)
Software Security for Project Managers: What Do You Need To Know?
Building a Mobile Security Program
Benchmarking Web Application Scanners for YOUR Organization
Software Security: Is OK Good Enough? OWASP AppSec USA 2011
The Need For Open Software Security Standards In A Mobile And Cloudy World
Social Networks and Security: What Your Teenager Likely Won't Tell You
The ThreadFix Ecosystem: Vendors, Volunteers, and Versions
Building Your Application Security Data Hub - OWASP AppSecUSA
ThreadFix 2.4: Maximizing the Impact of Your Application Security Resources
Do You Have a Scanner or Do You Have a Scanning Program? (AppSecEU 2013)
ThreadFix 2.2 Preview Webinar with Dan Cornell
SecDevOps: Development Tools for Security Pros
Managing Your Application Security Program with the ThreadFix Ecosystem
Secure DevOps with ThreadFix 2.3
ThreadFix 2.1 and Your Application Security Program
Running a Software Security Program with Open Source Tools
Developing Secure Mobile Applications
Using ThreadFix to Manage Application Vulnerabilities
Structuring and Scaling an Application Security Program
Running a Software Security Program with Open Source Tools (Course)
Ad

Similar to Smart Phones Dumb Apps (20)

PDF
Security Testing Mobile Applications
PDF
Mobile Application Security Code Reviews
PDF
Designing Secure Mobile Apps
PDF
Mobile Browser Content Handling
PDF
Introduction to Android Development and Security
PPT
Mobile code mining for discovery and exploits nullcongoa2013
PPTX
Android village @nullcon 2012
PPTX
Security Vulnerabilities in Mobile Applications (Kristaps Felzenbergs)
PPTX
Bam amor mobile development tools
PPTX
Android application development
PDF
Skeletons in the Closet: Securing Inherited Applications
PDF
Brief Tour about Android Security
PDF
Cracking the mobile application code
PPTX
Workshop 12-06 - Architectures for Enterprise Mobile Applications
PPTX
How to be an Independent Mobile Dev by TJ Grant
PPTX
PPTX
Deep Dive into WinRT
PPTX
Virtue Security - The Art of Mobile Security 2013
PPTX
Project trends 2013
PPTX
Mobile Application Development Unit 1.pptx
Security Testing Mobile Applications
Mobile Application Security Code Reviews
Designing Secure Mobile Apps
Mobile Browser Content Handling
Introduction to Android Development and Security
Mobile code mining for discovery and exploits nullcongoa2013
Android village @nullcon 2012
Security Vulnerabilities in Mobile Applications (Kristaps Felzenbergs)
Bam amor mobile development tools
Android application development
Skeletons in the Closet: Securing Inherited Applications
Brief Tour about Android Security
Cracking the mobile application code
Workshop 12-06 - Architectures for Enterprise Mobile Applications
How to be an Independent Mobile Dev by TJ Grant
Deep Dive into WinRT
Virtue Security - The Art of Mobile Security 2013
Project trends 2013
Mobile Application Development Unit 1.pptx
Ad

More from Denim Group (20)

PDF
Long-term Impact of Log4J
PDF
Threat Modeling the CI/CD Pipeline to Improve Software Supply Chain Security ...
PDF
Threat Modeling the CI/CD Pipeline to Improve Software Supply Chain Security ...
PDF
Optimizing Security Velocity in Your DevSecOps Pipeline at Scale
PDF
Application Asset Management with ThreadFix
PDF
OWASP San Antonio Meeting 10/2/20
PDF
AppSec Fast and Slow: Your DevSecOps CI/CD Pipeline Isn’t an SSA Program
PDF
Using Collaboration to Make Application Vulnerability Management a Team Sport
PDF
Managing Penetration Testing Programs and Vulnerability Time to Live with Thr...
PDF
Security Champions: Pushing Security Expertise to the Edges of Your Organization
PDF
The As, Bs, and Four Cs of Testing Cloud-Native Applications
PDF
An Updated Take: Threat Modeling for IoT Systems
PPTX
Continuous Authority to Operate (ATO) with ThreadFix – Bringing Commercial In...
PDF
A New View of Your Application Security Program with Snyk and ThreadFix
PDF
Enabling Developers in Your Application Security Program With Coverity and Th...
PDF
AppSec in a World of Digital Transformation
PDF
The As, Bs, and Four Cs of Testing Cloud-Native Applications
PDF
Enabling Developers in Your Application Security Program With Coverity and Th...
PDF
AppSec in a World of Digital Transformation
PDF
Enumerating Enterprise Attack Surface
Long-term Impact of Log4J
Threat Modeling the CI/CD Pipeline to Improve Software Supply Chain Security ...
Threat Modeling the CI/CD Pipeline to Improve Software Supply Chain Security ...
Optimizing Security Velocity in Your DevSecOps Pipeline at Scale
Application Asset Management with ThreadFix
OWASP San Antonio Meeting 10/2/20
AppSec Fast and Slow: Your DevSecOps CI/CD Pipeline Isn’t an SSA Program
Using Collaboration to Make Application Vulnerability Management a Team Sport
Managing Penetration Testing Programs and Vulnerability Time to Live with Thr...
Security Champions: Pushing Security Expertise to the Edges of Your Organization
The As, Bs, and Four Cs of Testing Cloud-Native Applications
An Updated Take: Threat Modeling for IoT Systems
Continuous Authority to Operate (ATO) with ThreadFix – Bringing Commercial In...
A New View of Your Application Security Program with Snyk and ThreadFix
Enabling Developers in Your Application Security Program With Coverity and Th...
AppSec in a World of Digital Transformation
The As, Bs, and Four Cs of Testing Cloud-Native Applications
Enabling Developers in Your Application Security Program With Coverity and Th...
AppSec in a World of Digital Transformation
Enumerating Enterprise Attack Surface

Recently uploaded (20)

PDF
ai-archetype-understanding-the-personality-of-agentic-ai.pdf
PDF
Sensors and Actuators in IoT Systems using pdf
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PDF
creating-agentic-ai-solutions-leveraging-aws.pdf
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
PDF
AI And Its Effect On The Evolving IT Sector In Australia - Elevate
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
ABU RAUP TUGAS TIK kelas 8 hjhgjhgg.pptx
PDF
Reimagining Insurance: Connected Data for Confident Decisions.pdf
PDF
Smarter Business Operations Powered by IoT Remote Monitoring
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Belt and Road Supply Chain Finance Blockchain Solution
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PDF
REPORT: Heating appliances market in Poland 2024
ai-archetype-understanding-the-personality-of-agentic-ai.pdf
Sensors and Actuators in IoT Systems using pdf
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
madgavkar20181017ppt McKinsey Presentation.pdf
creating-agentic-ai-solutions-leveraging-aws.pdf
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
AI And Its Effect On The Evolving IT Sector In Australia - Elevate
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Chapter 3 Spatial Domain Image Processing.pdf
ABU RAUP TUGAS TIK kelas 8 hjhgjhgg.pptx
Reimagining Insurance: Connected Data for Confident Decisions.pdf
Smarter Business Operations Powered by IoT Remote Monitoring
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Belt and Road Supply Chain Finance Blockchain Solution
NewMind AI Monthly Chronicles - July 2025
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
REPORT: Heating appliances market in Poland 2024

Smart Phones Dumb Apps

  • 1. Smart Phones Dumb Apps Dan Cornell © Copyright 2011 Denim Group - All Rights Reserved
  • 2. My Background • Dan Cornell, founder and CTO of Denim Group • Software developer by background (Java, .NET, etc) • OWASP San Antonio, Global Membership Committee • Denim Group – Build software with special security, performance, reliability requirements – Help organizations deal with the risk associated with their software • Code reviews and application assessments • SDLC consulting • Secure development training – instructor-led and eLearning © Copyright 2011 Denim Group - All Rights Reserved 1
  • 3. Agenda • Generic Smartphone Threat Model • Sample Application • What an Attacker Sees (Android Edition) • What About iPhones/iPads? • Special Topic: Browser URL handling • Closing Thoughts • Questions © Copyright 2011 Denim Group - All Rights Reserved 2
  • 4. Tradeoffs: Value versus Risk • Mobile applications can create tremendous value for organizations – New classes of applications utilizing mobile capabilities: GPS, camera, etc – Innovating applications for employees and customers • Mobile devices and mobile applications can create tremendous risks – Sensitive data inevitably stored on the device (email, contacts) – Connect to a lot of untrusted networks (carrier, WiFi) • Most developers are not trained to develop secure applications – Fact of life, but slowing getting better • Most developers are new to creating mobile applications – Different platforms have different security characteristics and capabilities © Copyright 2011 Denim Group - All Rights Reserved 3
  • 5. Smart Phones, Dumb Apps • Lots of media focus on device and platform security – Important because successful attacks give tremendous attacker leverage • Most organizations: – Accept realities of device and platform security – Concerned about the security of their custom applications – Concerned about sensitive data on the device because of their apps – Concerned about network-available resources that support their apps • Who has smartphone application deployed for customers? • Who has had smartphone applications deployed without their knowledge? – *$!%$# marketing department… © Copyright 2011 Denim Group - All Rights Reserved 4
  • 6. Generic Mobile Application Threat Model © Copyright 2011 Denim Group - All Rights Reserved 5
  • 7. Some Assumptions for Developers • Smartphone applications are essentially thick-client applications – That people carry in their pockets – And drop in toilets – And put on eBay when the new iPhone comes out – And leave on airplanes – And so on… • Attackers will be able to access: – Target user (victim) devices – Your application binaries • What else should you assume they know or will find out? © Copyright 2011 Denim Group - All Rights Reserved 6
  • 8. A Sample Application • Attach to your brokerage account • Pull stock quotes • Make stock purchases • Application on mobile device supported by enterprise and 3rd party web services • (Apologies to anyone with any sense of UI design) • This is intentionally nasty, but is it unrealistic? © Copyright 2011 Denim Group - All Rights Reserved 7
  • 9. So What Does a Bad Guy See? (Android Edition) • Install the application onto a device • Root the device • Pull the application’s APK file onto a workstation for analysis • APK files are ZIP files • They contain: – AndroidManifest.xml – Other binary XML files in res/ – classes.dex DEX binary code © Copyright 2011 Denim Group - All Rights Reserved 8
  • 10. Generic Android Application Threat Model © Copyright 2011 Denim Group - All Rights Reserved 9
  • 11. What’s Up With My XML Files? • Binary encoding • Use axml2xml.pl to convert them to text http://code.google.com/p/android-random/downloads/detail?name=axml2xml.pl © Copyright 2011 Denim Group - All Rights Reserved 10
  • 12. Much Better • Now we see: – Screens in application – Permissions required by the application – Intents applications is registered to consume – And so on © Copyright 2011 Denim Group - All Rights Reserved 11
  • 13. Do the Same Thing With the Rest of Them • Recurse through the res/ subdirectory • UI layouts, other resources © Copyright 2011 Denim Group - All Rights Reserved 12
  • 14. What About the Code? • All of it is stuffed in classes.dex • Android phones use DEX rather than Java bytecodes – Register-based virtual machine rather than stack-based virtual machine • Options: – Look at DEX assembly via de-dexing – Convert to Java bytecode and then to Java source code © Copyright 2011 Denim Group - All Rights Reserved 13
  • 15. De-Dex to See DEX Assembly • DEX bytecode ~= Java bytecode • All code goes in one file • Disassemble to DEX assembly with dedexer http://dedexer.sourceforge.net/ © Copyright 2011 Denim Group - All Rights Reserved 14
  • 16. Lots of Information • Like the fun-fun world of Java disassembly and decompilation – (We‟ll get to the DEX decompilation in a moment) • LOTS of information available © Copyright 2011 Denim Group - All Rights Reserved 15
  • 17. But Can I Decompile to Java? • Yes • We • Can • Convert to Java bytecodes with dex2jar – http://code.google.com/p/dex2jar/ – (Now you can run static analysis tools like Findbugs) • Convert to Java source code with your favorite Java decompiler – Everyone has a favorite Java decompiler, right? © Copyright 2011 Denim Group - All Rights Reserved 16
  • 18. DEX Assembly Versus Java Source Code • De-DEXing works pretty reliably • DEX assembly is easy to parse with grep • DEX assembly is reasonably easy to manually analyze • Java decompilation works most of the time • Java source code can be tricky to parse with grep • Java source code is very easy to manually analyze • Verdict: – Do both! – Grep through DEX assembly to identify starting points for analysis – Analyze Java source in detail © Copyright 2011 Denim Group - All Rights Reserved 17
  • 19. So What Did We Learn? • Look at the string constants – URLs, hostnames, web paths • Look at the de-DEXed assembly – Method calls – Data flow • Developers: BAD NEWS – The bad guys have all your code – They might understand your app better than you – How much sensitive intellectual property do you want to embed in your mobile application now? © Copyright 2011 Denim Group - All Rights Reserved 18
  • 20. Is There Sensitive Data On the Device? • Look at the disassemled DEX code • Grep for “File” © Copyright 2011 Denim Group - All Rights Reserved 19
  • 21. What About Java Source Code? • Get the source code with JD-Gui – http://java.decompiler.free.fr/ © Copyright 2011 Denim Group - All Rights Reserved 20
  • 22. Look for Files With Bad Permissions • Look for file open operations using – Context.MODE_WORLD_READABLE – (translates to “1”) © Copyright 2011 Denim Group - All Rights Reserved 21
  • 23. Next: What Is On the Server-Side • To access sensitive data on a device: – Steal a device – Want more data? – Steal another device • To access sensitive data from web services – Attack the web service • String constants for URLs, hostnames, paths • Examples: – 3rd party web services – Enterprise web services © Copyright 2011 Denim Group - All Rights Reserved 22
  • 24. So Now What? • 3rd Party Web Services – Is data being treated as untrusted? – Google promised to “not be evil” • For everyone else… • Enterprise Web Services – Did you know these were deployed? – Have these been tested for possible security flaws? – Stealing records en-masse is preferable to stealing them one-at-a-time © Copyright 2011 Denim Group - All Rights Reserved 23
  • 25. Web Services Example • Trumped up example, but based on real life • Given a web services endpoint, what will a bad guy do? • Sequence: – Request a junk method “abcd” – Get a “No method „abcd‟ available” – Request a method “<script>alert(„hi‟);</script>” – Hilarity ensues… © Copyright 2011 Denim Group - All Rights Reserved 24
  • 26. What Is Wrong With the Example Application? • Sensitive data stored on the device unprotected • Trusts data from 3rd party web services • Exposes enterprise web services to attackers • Enterprise web services vulnerable to reflected XSS attacks • And so on… • This is a trumped-up example with concentrated vulnerabilities, but… • All of these reflect real-world examples of vulnerabilities – Public breaches – Application assessments © Copyright 2011 Denim Group - All Rights Reserved 25
  • 27. What About iPhones/iPads? • Objective-C compiled to ARMv6, ARMv7 machine code – Not as fun (easy) as Java compiled to DEX bytecode – But … subject to buffer overflows, memory handling issues, other native code fun • Apps from iTunes Store – Encrypted – Used to be “easy” (well, mechanical) to break encryption with a jailbroken phone and a debugger – Now trickier (but likely not insurmountable) – And the default apps are not encrypted… © Copyright 2011 Denim Group - All Rights Reserved 26
  • 28. Run “strings” on the Binary • Web services endpoints: URLs, hostnames, paths • Objective-C calling conventions: [myThing doStuff:a second:b third:c]; becomes obj_msgsend(myThing, “doStuff:second:third:” a, b, c); , © Copyright 2011 Denim Group - All Rights Reserved 27
  • 29. Run “otool” on the Binary • otool –l <MyApp> – View the load commands – Segment info, encryption info, libraries in use • otool –t –v <MyApp> – Disassemble the text segment to ARMv6 assembly – If run on an encrypted application you get garbage • And so on… © Copyright 2011 Denim Group - All Rights Reserved 28
  • 30. Net Result for iPhone/iPad • More obscure – But does that mean more secure? • Can still retrieve a tremendous amount of information • Can still observe a running application • “Security” based on obscurity is not durable © Copyright 2011 Denim Group - All Rights Reserved 29
  • 31. Mobile Browser Content Handling • Many mobile platforms allow you to designate applications to handle content found in web pages – By URI protocol – By content type • Provide a “premium” experience for users who have the target app installed • Examples: – tel:// URLs initiating phone calls – maps:// URLs to display maps © Copyright 2011 Denim Group - All Rights Reserved 30
  • 32. iPhone/iPad URL Schemes • iOS applications can be set up to “handle” certain URL schemes • Defined in the application’s Info.plist • Binary format: annoying © Copyright 2011 Denim Group - All Rights Reserved 31
  • 33. Decoding plist Files • plutil -convert xml1 Info.plist • Much nicer © Copyright 2011 Denim Group - All Rights Reserved 32
  • 34. iOS URL Handlers • XPath: Look for: /plist/dict/array/dict[key='CFBundleURLSchemes']/array/string • Now you know the URL Schemes the app handles • SANS blog post on this issue in iOS: – http://software-security.sans.org/blog/2010/11/08/insecure-handling-url-schemes- apples- ios/?utm_source%253Drss%2526utm_medium%253Drss%2526utm_campaign%2 53Dinsecure-handling-url-schemes-apples-ios – Too long to type? http://bit.ly/ezqdK9 © Copyright 2011 Denim Group - All Rights Reserved 33
  • 35. Android Intents • Intents are facilities for late-binding messaging between applications – http://developer.android.com/guide/topics/intents/intents-filters.html • One use is to allow applications to register to receive messages from the Browser when certain types of content are received – Like iOS URL Schemes but an even more comprehensive IPC mechanism © Copyright 2011 Denim Group - All Rights Reserved 34
  • 36. Intent Filter Example <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="danco" /> </intent-filter> • Action: What to do? • Data: Scheme is URI “protocol” to handle • Category BROWSABLE: Allow this Action to be initiated by the browser © Copyright 2011 Denim Group - All Rights Reserved 35
  • 37. Intent Filter Demo – Manual Launch, HTML Page © Copyright 2011 Denim Group - All Rights Reserved 36
  • 38. Intent Filter Demo – Anchor Launch, IFrame Launch © Copyright 2011 Denim Group - All Rights Reserved 37
  • 39. I’m a Security Tester. Why Do I Care? • URL handlers are remotely-accessible attack surface • This is a way for you to “reach out and touch” applications installed on a device if you can get a user to navigate to a malicious page • Send in arbitrary URLs via links or (easier) embedded IFRAMEs • Example: iOS Skype application used to automatically launch the Skype application and initiate a call when it encountered a skype:// URL – Apple‟s native Phone handle for tel:// URLs would confirm before a call was made © Copyright 2011 Denim Group - All Rights Reserved 38
  • 40. I’m a Developer. Why Do I Care? • See the previous slide. Bad guys care. So should you. Please. • Content passed in via these handlers must be treated as untrusted – Positively validate – Enforce proper logic restrictions • All: – Should a malicious web page be able to cause this behavior? • Make phone call, transmit location, take photo, start audio recording, etc • iOS: – Validate inputs to handleOpenURL: message • Android: – Validate data brought in from Action.getIntent() method © Copyright 2011 Denim Group - All Rights Reserved 39
  • 41. So What Should Developers Do? • Threat model your smartphone applications – More complicated architectures -> more opportunities for problems • Watch what you store on the device – May have PCI, HIPAA implications • Be careful consuming 3rd party services – Who do you love? Who do you trust? • Be careful deploying enterprise web services – Very attractive target for bad guys – Often deployed “under the radar” © Copyright 2011 Denim Group - All Rights Reserved 40
  • 42. Secure Mobile Development Reference • Platform-specific recommendations • Key topic areas • Provide specific, proscriptive guidance to developers building mobile applications © Copyright 2011 Denim Group - All Rights Reserved 41
  • 43. Specific Platforms • iOS (iPhone, iPad) • Android • Blackberry (in progress) • Windows Phone 7 (in progress) – Windows Mobile 6.5 (?) • Symbian (?) • Others (?) • Will be guided by demand, which is focused by new development activity © Copyright 2011 Denim Group - All Rights Reserved 42
  • 44. Topics Areas • Topic Areas – Overview of Application Development – Overview of Secure Development – Defeating Platform Environment Restrictions – Installing Applications – Application Permissions Model – Local Storage – Encryption APIs – Network Communications – Protecting Network Communications – Native Code Execution – Application Licensing and Payments – Browser URL Handling © Copyright 2011 Denim Group - All Rights Reserved 43
  • 45. So What Should Security People Do? • Find out about smartphone projects – Not always done by your usual development teams – R&D, “Office of the CTO,” Marketing • Assess the security implications of smartphone applications – What data is stored on the device? – What services are you consuming? – Are new enterprise services being deployed to support the application? © Copyright 2011 Denim Group - All Rights Reserved 44
  • 46. Resources • axml2xml.pl (Convert Android XML files to normal XML) – http://code.google.com/p/android-random/downloads/detail?name=axml2xml.pl • Dedexer (Convert DEX bytecodes into DEX assembler) – http://dedexer.sourceforge.net/ • Dex2jar (Convert DEX bytecode in Java bytecode) – http://code.google.com/p/dex2jar/ • JD-GUI (Convert Java bytecode to Java source code) – http://java.decompiler.free.fr/ • otool (Get information about iPhone binaries) – http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/otool.1.html © Copyright 2011 Denim Group - All Rights Reserved 45
  • 47. Online • Code, slides and videos online: www.smartphonesdumbapps.com © Copyright 2011 Denim Group - All Rights Reserved 46
  • 48. Questions? Dan Cornell [email protected] Twitter: @danielcornell www.denimgroup.com (210) 572-4400 © Copyright 2011 Denim Group - All Rights Reserved 47