73 vulnerabilities classified as CWE-926. AI Chinese analysis included.
CWE-926 represents a critical configuration weakness where Android application components, such as activities, services, or broadcast receivers, are exported without adequate access restrictions. This flaw allows any other application on the device to interact with the component, potentially launching it or accessing sensitive data it contains. Attackers typically exploit this by crafting malicious intents to trigger exported components, thereby bypassing intended security boundaries to execute unauthorized actions or steal private information. To prevent this vulnerability, developers must explicitly define the `android:exported` attribute in the AndroidManifest.xml file, setting it to false for components that do not need to be accessible externally. Furthermore, implementing proper permission checks and intent filters ensures that only trusted applications can interact with these components, maintaining the integrity and confidentiality of the application’s data and functionality.
<activity android:name="com.example.vulnerableApp.mainScreen"> ... <intent-filter> <action android:name="com.example.vulnerableApp.OPEN_UI" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> ... </activity> <service android:name="com.example.vulnerableApp.backgroundService"> ... <intent-filter> <action android:name="com.example.vulnerableApp.START_BACKGROUND" /> </intent-filter> ... </service><provider> android:name="com.example.vulnerableApp.searchDB" android:authorities="com.example.vulnerableApp.searchDB"> </provider>| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2023-44129 | Messaging - Gaining access to arbitrary content providers via QClipIntentReceiverActivity — LG V60 Thin Q 5G(LMV600VM) | 3.6 | Low | 2023-09-27 |
| CVE-2023-44121 | LG ThinQ Service - Intent redirection with system privilege/LaunchAnyWhere — LG V60 Thin Q 5G(LMV600VM) | 5.0 | Medium | 2023-09-27 |
| CVE-2023-21485 | Samsung Mobile 安全漏洞 — Samsung Mobile Devices | 5.3 | Medium | 2023-05-04 |
| CVE-2023-21486 | SAMSUNG Mobile devices 安全漏洞 — Samsung Mobile Devices | 5.3 | Medium | 2023-05-04 |
| CVE-2022-24929 | Samsung AppLock 安全漏洞 — Samsung Mobile Devices | 4.1 | Medium | 2022-03-08 |
| CVE-2021-25527 | Samsung Pay 安全漏洞 — Samsung Pay | 3.8 | Low | 2021-12-08 |
| CVE-2021-25526 | Samsung Blockchain Wallet 安全漏洞 — Samsung Blockchain Wallet | 4.0 | Medium | 2021-12-08 |
| CVE-2021-25400 | Samsung Internet 安全漏洞 — Samsug Internet | 7.8 | - | 2021-06-11 |
| CVE-2021-25397 | SAMSUNG Mobile devices 安全漏洞 — Samsung Mobile Devices | 6.8 | Medium | 2021-06-11 |
| CVE-2021-25391 | Samsung SMR 安全漏洞 — Samsung Mobile Devices | 4.0 | Medium | 2021-06-11 |
| CVE-2021-25390 | Samsung SMR 安全漏洞 — Samsung Mobile Devices | 4.0 | Medium | 2021-06-11 |
| CVE-2021-25388 | Samsung SMR 授权问题漏洞 — Samsung Mobile Devices | 7.1 | High | 2021-06-11 |
| CVE-2021-25379 | Samsung Gallery 安全漏洞 — Gallery | 4.0 | Medium | 2021-04-09 |
Vulnerabilities classified as CWE-926 represent 73 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.