PROBABLYPWNED
VulnerabilitiesJune 7, 20263 min read

IBM WebSphere Hit by Three Critical Flaws—CVSS 9.1 Spoofing, Dual RCE

IBM discloses CVE-2026-8644, CVE-2026-9311, and CVE-2026-9319 affecting WebSphere 8.5 and 9.0. Attackers can chain identity spoofing with RCE for full server compromise.

Marcus Chen

IBM has disclosed three critical vulnerabilities in WebSphere Application Server that, when chained together, give attackers a path from unauthenticated access to full server compromise. The flaws affect WebSphere versions 8.5 and 9.0—workhorses still running in thousands of enterprise environments worldwide.

The trio was disclosed on June 1, 2026, and while IBM has released interim fixes, full fix packs won't land until Q3 2026. Organizations running WebSphere in production should treat this as a priority patching event.

The Three Vulnerabilities

CVE-2026-8644 — Identity Spoofing (CVSS 9.1)

An authentication bypass that lets attackers impersonate any user, including administrators. The flaw is classified as CWE-290 (Authentication Bypass by Spoofing) and requires no prior authentication to exploit.

CVE-2026-9311 — RCE via Security Control Bypass (CVSS 9.0)

A code injection vulnerability caused by bypassed security controls within WebSphere. Successful exploitation gives attackers arbitrary code execution on the server—full system compromise.

CVE-2026-9319 — RCE via JAX-WS Deserialization (CVSS 9.0)

A deserialization of untrusted data flaw in JAX-WS endpoints with WS-Security enabled. Attackers can send malicious serialized Java objects that trigger arbitrary code execution during deserialization.

The Attack Chain

The dangerous part isn't any single vulnerability—it's how they combine. An attacker can:

  1. Exploit CVE-2026-8644 to spoof an administrative identity
  2. Use that access to exploit either RCE vector (CVE-2026-9311 or CVE-2026-9319)
  3. Achieve full server compromise with code execution privileges

This mirrors attack patterns we've seen with other critical Java application server vulnerabilities where authentication bypass combined with RCE creates a one-two punch that defenders struggle to block.

Who's Affected

Both WebSphere Application Server 8.5 and 9.0 running any version prior to the interim fixes are vulnerable. These versions remain heavily deployed in:

  • Financial services and banking platforms
  • Government systems
  • Healthcare applications
  • Large enterprise Java deployments

Organizations still running WebSphere 8.5 are in a particularly difficult position—it's approaching end-of-support but remains too deeply embedded in critical systems to easily migrate.

Remediation Steps

  1. Apply interim fixes immediately — IBM has released fixes tracked under APAR PH71422 (CVE-2026-8644), PH71453 (CVE-2026-9311), and PH71454 (CVE-2026-9319)
  2. Apply all three fixes together — IBM recommends applying all patches in a single maintenance window rather than sequentially
  3. Audit JAX-WS endpoints — If WS-Security is enabled, review endpoints for potential exposure
  4. Monitor authentication logs — Watch for anomalous admin authentication patterns that could indicate spoofing attempts

What's Next

IBM targets full fix packs for Q3 2026—version 8.5.5.30 for the 8.5 stream and 9.0.5.29 for the 9.0 stream. Until then, the interim fixes are the only protection.

Deserialization vulnerabilities in Java application servers have a history of rapid weaponization. While IBM has not confirmed active exploitation, the technical details are straightforward enough that proof-of-concept code is likely already circulating in attacker communities.

Organizations should also review our malware defense guide for general hardening recommendations—once attackers achieve code execution, they typically deploy persistence mechanisms and lateral movement tools.

Related Articles