Skip to content

MASWE-0001: Insertion of Sensitive Data into Logs

Content in BETA

This content is in beta and still under active development, so it is subject to change any time (e.g. structure, IDs, content, URLs, etc.).

Send Feedback

Overview

Mobile apps may write sensitive data to logs. This may include sensitive user data, such as passwords, credit card numbers, or other personally identifiable information (PII), as well as sensitive system data, such as cryptographic keys, session tokens, or other sensitive information.

Logging all possible information is very useful at development time, especially for debugging the app. However, in production it might not always be necessary and should be prevented whenever possible to avoid any accidentally exposure to potential attackers.

Modes of Introduction

This can typically occur in two ways:

  • System Logs: The application may log sensitive data to the system log, which can be accessed by other applications on the device (in old OS versions or compromised devices or if they hold the appropriate permissions).
  • App Logs: The application may log sensitive data to a file in the application's data directory, which can be accessed by any application on the device if the device is rooted.

Impact

Loss of confidentiality: Sensitive data within logs is at risk of being exposed to an attacker with access to the device who may be able to extract it. This may lead to further attacks, such as identity theft, or compromise of the application's backend.

Mitigations

The following are generic recommendations to avoid logging sensitive data in production releases:

  • Avoid logging sensitive data at all.
  • Redact sensitive data in logs.
  • Remove logging statements unless deemed necessary to the application or explicitly identified as safe, e.g. as a result of a security audit.
  • Use log levels properly to ensure that sensitive data is not logged in production releases.
  • Use flags to disable logging in production releases.

The documentation for each platform provides best practices for developers:

Tests

MASTG-TEST-0203: Leakage of Sensitive Data via Logging APIs