This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Mobile Top 10 2016-M2-Insecure Data Storage

From OWASP
Revision as of 17:06, 2 May 2018 by Gtorok (talk | contribs) (Added threat posed to an app's data running on a rooted or jailbroken device.)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
← M1-Improper Platform Usage
2016 Table of Contents

2016 Mobile Top 10 List

M3-Insecure Communication →
Threat Agents Attack Vectors Security Weakness Technical Impacts Business Impacts
Application Specific Exploitability EASY Prevalence COMMON Detectability AVERAGE Impact SEVERE Application / Business Specific
Threats agents include the following: an adversary that has attained a lost/stolen mobile device; malware or another repackaged app acting on the adversary's behalf that executes on the mobile device. In the event that an adversary physically attains the mobile device, the adversary hooks up the mobile device to a computer with freely available software. These tools allow the adversary to see all third party application directories that often contain stored personally identifiable information (PII) or other sensitive information assets. An adversary may construct malware or modify a legitimate app to steal such information assets. Insecure data storage vulnerabilities occur when development teams assume that users or malware will not have access to a mobile device's filesystem and subsequent sensitive information in data-stores on the device. Filesystems are easily accessible. Organizations should expect a malicious user or malware to inspect sensitive data stores. Usage of poor encryption libraries is to be avoided. Rooting or jailbreaking a mobile device circumvents any encryption protections. When data is not protected properly, specialized tools are all that is needed to view application data. This can result in data loss, in the best case for one user, and in the worst case for many users. It may also result in the following technical impacts: extraction of the app's sensitive information via mobile malware, modified apps or forensic tools.

The nature of the business impact is highly dependent upon the nature of the information stolen. Insecure data may result in the following business impacts:

  • Identity theft;
  • Privacy violation;
  • Fraud;
  • Reputation damage;
  • External policy violation (PCI); or
  • Material loss.
Insecure data storage vulnerabilities typically lead to the following business risks for the organization that owns the risk app:
  • Identity Theft
  • Fraud
  • Reputation Damage
  • External Policy Violation (PCI); or
  • Material Loss.
Am I Vulnerable To 'Insecure Data Storage'?

This category insecure data storage and unintended data leakage. Data stored insecurely includes, but is not limited to, the following:

  • SQL databases;
  • Log files;
  • XML data stores ou manifest files;
  • Binary data stores;
  • Cookie stores;
  • SD card;
  • Cloud synced.

Unintended data leakage includes, but is not limited to, vulnerabilities from:

  • The OS;
  • Frameworks;
  • Compiler environment;
  • New hardware.
  • Rooted or Jailbroken devices

This is obviously without a developer's knowledge. In mobile development specifically, this is most seen in undocumented, or under-documented, internal processes such as:

  • The way the OS caches data, images, key-presses, logging, and buffers;
  • The way the development framework caches data, images, key-presses, logging, and buffers;
  • The way or amount of data ad, analytic, social, or enablement frameworks cache data, images, key-presses, logging, and buffers.
How Do I Prevent 'Insecure Data Storage'?

It is important to threat model your mobile app, OS, platforms and frameworks to understand the information assets the app processes and how the APIs handle those assets. It is crucial to see how they handle the following types of features :

  • URL caching (both request and response);
  • Keyboard press caching;
  • Copy/Paste buffer caching;
  • Application backgrounding;
  • Intermediate data
  • Logging;
  • HTML5 data storage;
  • Browser cookie objects;
  • Analytics data sent to 3rd parties.
Example Attack Scenarios

A Visual Example

iGoat is a purposefully vulnerable mobile app for the security community to explore these types of vulnerabilities first hand. In the exercise below, we enter our credentials and log in to the fake bank app. Then, we navigate to the file system. Within the applications directory, we can see a database called “credentials.sqlite”. Exploring this database reveals that the application is storing our username and credentials (Jason:pleasedontstoremebro!) in plain text.

Screen Shot 2012-12-19 at 6.34.23 AM.png Screen Shot 2012-12-19 at 6.44.51 AM.png Screen Shot 2012-12-19 at 10.11.15 AM.png

References

OWASP

External