
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2025-14327 is a spoofing vulnerability in the Downloads Panel component of Mozilla Firefox and Thunderbird, classified under CWE-290 (Authentication Bypass by Spoofing). By crafting a malformed data:// URI containing host information (e.g., data://google.com/application/x-msdownload;base64,...), an attacker can cause the Downloads Panel to display a trusted domain (such as google.com) as the download origin, deceiving users about the true source of a downloaded file. The vulnerability was reported by security researcher "Caro Kann" (Abhishek) and disclosed on December 9, 2025. Affected versions include Firefox before 146, Thunderbird before 146, Firefox ESR before 140.7, and Thunderbird ESR before 140.7. It carries a CVSS v3.1 base score of 7.5 (High) (Mozilla Advisory, Feedly).
The root cause is a regression introduced in Firefox 127 via bug 1873944, which changed how data: URIs with authority components are parsed. After this change, new URL("data://google.com/").host returns google.com — matching Chromium's behavior — but the Downloads Panel code assumed that if an nsIURI object has host information, it is authoritative and accurate. As a result, DownloadUtils.getURIHost (later consolidated into BrowserUtils.formatURIForDisplay) would extract and display the spoofed host from the malformed URI as the download origin. The fix involved ensuring that data URIs with opaque or malformed host components are not treated as having a valid origin, replacing the spoofed domain display with a generic (data) label. The vulnerability is classified as CWE-290 and was rated sec-moderate by Mozilla, though the reporter and Chromium's handling of a similar issue (issues.chromium.org/issues/40055527) suggested higher severity (Mozilla Bugzilla, Mozilla Advisory).
Successful exploitation allows a malicious website to trigger a file download (e.g., an .exe or .apk) while displaying a trusted domain name (such as google.com) as the download origin in Firefox's Downloads Panel, misleading users into believing the file originated from a legitimate source. This is a pure integrity impact — there is no confidentiality or availability impact — but the social engineering potential is significant, as users may be more likely to open or execute files they believe came from trusted sites. The vulnerability does not enable code execution on its own but can serve as a component in a broader phishing or malware delivery campaign (Mozilla Bugzilla, Mozilla Advisory).
No public exploit kit integration or in-the-wild exploitation has been reported for CVE-2025-14327. A proof-of-concept was included in the original bug report (hosted at a GitHub Pages URL) and demonstrated that the attack requires only a user visiting a malicious webpage and clicking a button to trigger a download — no authentication or special privileges are required. The EPSS score is very low at approximately 0.018%, reflecting limited automated exploitation likelihood. The vulnerability is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog. A similar issue was independently reported and fixed in Chromium (Mozilla Bugzilla, Feedly).
data:// URI with a spoofed host component.data://google.com/application/x-msdownload;base64,<base64-payload> — the google.com authority component causes Firefox's URL parser to extract it as the host.href and a download attribute, then programmatically click it:function triggerDownload(uri, filename) {
const link = document.createElement('a');
link.href = uri;
link.download = filename;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
triggerDownload('data://google.com/application/x-msdownload;base64,ZXN0dGVzdA==', 'installer.exe');google.com as the download origin instead of the actual page origin, deceiving the user into trusting the file.data:// scheme URIs containing authority components (e.g., data://[domain]/).google.com, microsoft.com) for a file that was not actually served from that domain's servers; cross-reference download origin against actual referring page URL..exe, .apk, .msi) in the user's Downloads directory with no corresponding network request to the displayed origin domain in proxy or DNS logs.Mozilla has released patches addressing this vulnerability in Firefox 146, Thunderbird 146, Firefox ESR 140.7, and Thunderbird ESR 140.7. Users should update to these versions or later immediately. No configuration-based workaround is available, as the vulnerability is triggered by standard browser functionality (file downloads via JavaScript). Red Hat Enterprise Linux users should apply the relevant RHSA errata (e.g., RHSA-2026:0667 for RHEL 8, RHSA-2026:0694 for RHEL 9) as distributed through their package management systems (Mozilla Advisory, Red Hat Bugzilla).
Mozilla rated the vulnerability as "moderate" impact, a classification the reporter (Caro Kann / Abhishek) disputed, arguing it should be rated higher given the full control over the spoofed origin and downloaded content. Mozilla's security team acknowledged it was "on the higher end of sec-moderate" and ultimately awarded a bug bounty. The reporter noted that a similar issue in Chromium (issues.chromium.org/issues/40055527) was initially rated moderate but upgraded to high during the bounty process. The CIS issued an advisory noting multiple vulnerabilities in Mozilla products could allow for arbitrary code execution in the same release cycle. No significant broader media coverage or social media discussion specific to this CVE was identified (Mozilla Bugzilla, Mozilla Advisory).
Fix availability across major Linux distributions and their releases.
bookworm
thunderbird: 1:140.7.0esr-1~deb12u1
sid
thunderbird: 1:140.7.0esr-1
trixie
thunderbird: 1:140.7.0esr-1~deb13u1
bionic (esm-apps)
mozjs38
devel
firefox
jammy
thunderbird: 1:140.7.1+build1-0ubuntu0.22.04.1
noble
firefox
questing
firefox
resolute
firefox
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."