CVE-2026-74974 Overview
CVE-2026-74974 is a same-origin policy (SOP) bypass in the Graphics: ImageLib component of Mozilla Firefox and Thunderbird. The flaw permits a network attacker to bypass origin isolation for image resources, exposing cross-origin content to a controlled page. Exploitation requires user interaction such as visiting a malicious page or opening crafted email content. The vulnerability is classified under CWE-346: Origin Validation Error and affects both confidentiality and integrity at a limited scope.
Critical Impact
A malicious site can read or infer data from other origins by abusing image decoding in ImageLib, undermining the browser's core web security boundary.
Affected Products
- Mozilla Firefox versions prior to 154
- Mozilla Firefox ESR versions prior to 115.39, 140.14, and 153.1
- Mozilla Thunderbird versions prior to 154, 140.14, and 153.1
Discovery Timeline
- 2026-08-18 - CVE-2026-74974 published to the National Vulnerability Database
- 2026-08-19 - Last updated in NVD database
Technical Details for CVE-2026-74974
Vulnerability Analysis
The issue resides in Firefox's Graphics: ImageLib component, which decodes and renders image resources fetched from arbitrary origins. Under normal operation, the same-origin policy prevents a document from directly reading pixel data or metadata belonging to another origin unless CORS explicitly grants access. This vulnerability weakens that boundary, allowing an attacker-controlled document to obtain information from cross-origin image responses that should remain opaque.
Because the bug is triggered through standard image loading, a victim only has to load a page or HTML email that references attacker-crafted markup. Thunderbird inherits the defect through its shared Gecko rendering stack. The impact is limited to confidentiality and integrity of cross-origin content and does not directly enable code execution.
Root Cause
The root cause is an origin validation error in how ImageLib associates decoded image data with its originating security principal. When origin metadata is mishandled during decoding, the browser treats cross-origin bytes as accessible to the embedding document. See Mozilla Bug Report #2061794 for the tracking record.
Attack Vector
Exploitation is remote and requires user interaction. An attacker hosts a page or delivers an HTML email that embeds cross-origin images and JavaScript designed to read or infer decoded content. When the victim renders the content, the same-origin policy fails to isolate the resource, leaking data to the attacker's context. No verified proof-of-concept has been published as of disclosure.
Detection Methods for CVE-2026-74974
Indicators of Compromise
- Outbound requests from browsers or Thunderbird to unfamiliar domains loading unusual image resources followed by exfiltration traffic.
- HTML email content containing scripted image manipulation combined with fetches to external endpoints.
- Endpoints still reporting Firefox or Thunderbird versions below the fixed releases listed in the Mozilla advisories.
Detection Strategies
- Inventory installed Firefox and Thunderbird versions across managed endpoints and compare against fixed builds (Firefox 154, ESR 115.39/140.14/153.1, Thunderbird 154/140.14/153.1).
- Monitor web proxy and mail gateway logs for HTML content that loads cross-origin images alongside canvas or fetch APIs targeting sensitive third-party origins.
- Correlate browser process telemetry with anomalous outbound POST requests that follow image rendering activity.
Monitoring Recommendations
- Ingest browser and email client version telemetry into a central data lake to track patch compliance over time.
- Alert on Thunderbird rendering remote content from senders outside allowlisted domains.
- Track user reports of unexpected browser behavior or password/session anomalies that could indicate cross-origin data exposure.
How to Mitigate CVE-2026-74974
Immediate Actions Required
- Upgrade Firefox to version 154 or the appropriate ESR release (115.39, 140.14, or 153.1).
- Upgrade Thunderbird to version 154, 140.14, or 153.1.
- Prioritize patching workstations that handle sensitive web sessions or process untrusted HTML email.
Patch Information
Mozilla addressed the vulnerability in the releases listed above. Refer to Mozilla Security Advisory MFSA-2026-74 through MFSA-2026-80 for the corresponding advisory bundles and download links.
Workarounds
- Configure Thunderbird to block remote content in messages by default until patches are deployed.
- Enforce strict Content Security Policy and CORS on internal applications that serve sensitive image resources.
- Restrict browsing on privileged administrative workstations until affected clients are updated.
# Verify installed Firefox version on Linux endpoints
firefox --version
# Query installed Firefox version on Windows via PowerShell
Get-ItemProperty 'HKLM:\SOFTWARE\Mozilla\Mozilla Firefox' | Select-Object CurrentVersion
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

