CWE Database
/

CWE-926

Back to CWE list

CWE-926

Improper Export of Android Application Components

Variant
Incomplete

Description

The Android application exports a component for use by other applications, but does not properly restrict which applications can launch the component or access the data it contains.

{"xhtml:p":["The attacks and consequences of improperly exporting a component may depend on the exported component:"],"xhtml:ul":[{"xhtml:li":["If access to an exported Activity is not restricted, any application will be able to launch the activity. This may allow a malicious application to gain access to sensitive information, modify the internal state of the application, or trick a user into interacting with the victim application while believing they are still interacting with the malicious application.","If access to an exported Service is not restricted, any application may start and bind to the Service. Depending on the exposed functionality, this may allow a malicious application to perform unauthorized actions, gain access to sensitive information, or corrupt the internal state of the application.","If access to a Content Provider is not restricted to only the expected applications, then malicious applications might be able to access the sensitive data. Note that in Android before 4.2, the Content Provider is automatically exported unless it has been explicitly declared as NOT exported."]}]}

Parent Weaknesses (ChildOf)

Common Consequences

Scope

Availability
Integrity

Impact

Unexpected State, DoS: Crash, Exit, or Restart, DoS: Instability, Varies by Context

Scope

Availability
Integrity

Impact

Unexpected State, Gain Privileges or Assume Identity, DoS: Crash, Exit, or Restart, DoS: Instability, Varies by Context

Scope

Confidentiality
Integrity

Impact

Read Application Data, Modify Application Data

Potential Mitigations

Build and Compilation

If they do not need to be shared by other applications, explicitly mark components with android:exported="false" in the application manifest.

Build and Compilation

If you only intend to use exported components between related apps under your control, use android:protectionLevel="signature" in the xml manifest to restrict access to applications signed by you.

Build and Compilation
Architecture and Design

Limit Content Provider permissions (read/write) as appropriate.

Build and Compilation
Architecture and Design

Limit Content Provider permissions (read/write) as appropriate.

Applicable Platforms

Not Language-Specific

Security Training

Train your team to recognize and prevent security threats with our comprehensive security awareness program.

Start Training

Vulnerability Scanning

Discover vulnerabilities in your applications and infrastructure before attackers do.

Scan Now