Reference material — not professional advice. Test in staging, back up first, verify against your specific version. Use your own judgment for your environment.
● Critical · CVSS 9.6 ⚠ ACTIVELY EXPLOITED — CISA KEV

How to Fix CVE-2022-26486: Use-After-Free in Firefox

⚡ At a glance
SeverityCVSS 9.6 (Critical)
Actively exploited?Yes. Listed in CISA KEV (added 2022-03-07).
AffectedFirefox all versions before 97.0.2; Firefox ESR all versions before 91.6.1; Firefox for Android all versions before 97.3.0; Thunderbird all versions before 91.6.2; Focus all versions before 97.3.0
Fixed inFirefox 97.0.2; Firefox ESR 91.6.1; Firefox for Android 97.3.0; Thunderbird 91.6.2
Type (CWE)Not verified, see official advisory

⚠️ CISA KEV listing: active exploitation. Added to the Known Exploited Vulnerabilities catalog on 2022-03-07; remediation due date for federal civilian agencies: 2022-03-21.

What is CVE-2022-26486?

An unexpected message in the WebGPU IPC framework could lead to a use-after-free and exploitable sandbox escape. We have had reports of attacks in the wild abusing this flaw. This vulnerability affects Firefox < 97.0.2, Firefox ESR < 91.6.1, Firefox for Android < 97.3.0, Thunderbird < 91.6.2, and Focus < 97.3.0.

Memory-corruption bugs in a network-facing service are exploitable code-execution primitives. Even when the initial impact looks like a crash, weaponized exploits have repeatedly shown that crash-to-shell conversion is possible with enough time.

CISA has confirmed in-the-wild exploitation. The KEV catalog listing is the strongest possible signal that this is not a theoretical bug. Patch on the published timeline.

Am I affected?

You are affected if you run Firefox all versions before 97.0.2; Firefox ESR all versions before 91.6.1; Firefox for Android all versions before 97.3.0; Thunderbird all versions before 91.6.2; Focus all versions before 97.3.0.

Open Firefox / Thunderbird → Help → About. The version number appears in the dialog and the application checks for updates automatically. Confirm the running build is at or above the version in the Mozilla advisory.

If the build is older than the patched release listed under Fixed in, this CVE applies and you should follow the remediation steps below.

How to fix CVE-2022-26486

The vendor fix is to upgrade to a patched build. The verified patched version per the official advisory is Firefox 97.0.2; Firefox ESR 91.6.1; Firefox for Android 97.3.0; Thunderbird 91.6.2.

  1. Read the official advisory for the exact patched build that applies to your deployment model (see https://www.mozilla.org/security/advisories/mfsa2022-09/).
  1. Plan the upgrade window. Firefox updates are not always hot-pluggable; check the vendor's release notes for required restarts, database migrations, or licensing steps before scheduling production downtime.
  1. Take a verified backup of configuration and data before upgrading. Roll-back is faster than rebuilding.
  1. Apply the patch or upgrade using your normal package or vendor installer flow. Use the vendor's documented procedure, not a third-party guide.
  1. Restart services as the advisory directs. Some fixes only become active after a service restart, others after a full reboot.

Apply the Android security bulletin update


# Confirm the device's current Android security patch level
adb shell getprop ro.build.version.security_patch

# Required patch level is listed in the vendor advisory: https://www.mozilla.org/security/advisories/mfsa2022-09/
# Install the OTA from Settings -> System -> System update, or sideload
# the factory image referenced in the advisory.
adb reboot bootloader
fastboot -w update image-<device>-<build>.zip

# Confirm Android Enterprise managed devices have the security patch (Intune example)
Connect-MgGraph -Scopes Device.Read.All
Get-MgDeviceManagementManagedDevice -Filter "operatingSystem eq 'Android'" |
  Select-Object DeviceName, OSVersion, AndroidSecurityPatchLevel

Verify the fix landed


# 1. Confirm the running version matches the fixed-in version from the advisory:
#    https://www.mozilla.org/security/advisories/mfsa2022-09/
#    Use the platform-specific version probe above.

# 2. Re-scan with your vulnerability scanner (Nessus, Qualys, Tenable, OpenVAS).
#    The scanner should no longer flag CVE-2022-26486 on the patched target.

# 3. Inspect recent service / kernel logs for crash loops or rollback events.
journalctl -u <service> --since "10 minutes ago"
dmesg --since "10 minutes ago"

If you can't patch immediately

Apply only mitigations documented by the vendor. If no official workaround is published, the patched build is the only supported remediation. While you plan the upgrade window:

Given that this CVE is in CISA KEV, the time-to-patch window for federal civilian agencies has been set, and most enterprises track those due dates as the practical floor, not a federal-only target.

How to verify the fix worked

  1. Confirm the running version of Firefox matches or exceeds the patched build the vendor specifies. The CVE record under References lists the fixed version explicitly.
  1. Check service logs for restart messages and verify the service came up clean after the upgrade. A failed restart that silently rolls back to the unpatched binary is a common operational mistake.
  1. Review the audit log for any suspicious access during the period the system was unpatched. Pre-patch exploitation leaves traces; failed login bursts, unexpected file uploads, and new admin accounts are common indicators. If the host was reachable from the internet during the exposure window, assume the IoC hunt is mandatory rather than optional.
  1. Re-run a vulnerability scanner (Nessus, Qualys, Tenable, OpenVAS) against the host after patching. The scanner should no longer flag this CVE on the same target. If it still does, double-check that you upgraded the right component, since many products bundle several services and only one of them may carry the fix.
  1. Document the patch evidence for KEV reporting. Vulnerabilities in CISA KEV are tracked by FCEB agencies under BOD 22-01. Even outside the federal sector, the same evidence (build number, patch date, scanner clean report) is what auditors typically ask for.

Frequently asked questions

Other vulnerabilities in the same area that are worth patching alongside this one:

Is CVE-2022-26486 being exploited in the wild?

Yes. CISA added it to the Known Exploited Vulnerabilities catalog on 2022-03-07, which means there is confirmed evidence of active exploitation.

Does the patch require a reboot?

It depends on the deployment. Firefox updates that replace running services usually need at minimum a service restart; some require a host reboot. Check the vendor release notes linked under References for the exact post-upgrade steps.

What if my version of Firefox is end-of-life?

End-of-life builds will not receive the fix. The vendor's published guidance in cases like this is to upgrade to a supported branch first, then apply the patched build. Running an EOL release on an internet-reachable interface is the higher risk.

References


*This guide was assembled from the official vendor advisory, the NVD record, and the CISA KEV listing on 2026-05-25. Always confirm against the vendor's advisory before applying changes in production. Byline: Sai Kiran Pandrala.*