LIVE NEWSROOM · --:-- · May 26, 2026
A LIBRARY FOR SECURITY RESEARCHERS

CVE-2026-48172: LiteSpeed cPanel Plugin 0-Day Grants Root Access, Actively Exploited

Post on X LinkedIn
CVE-2026-48172: LiteSpeed cPanel Plugin 0-Day Grants Root Access, Actively Exploited

A maximum-severity privilege escalation vulnerability in the LiteSpeed User-End cPanel Plugin is being actively exploited in the wild, allowing any cPanel user to execute arbitrary scripts with root privileges on the underlying server. CVE-2026-48172 (a flaw in LiteSpeed's cPanel integration that grants attacker-controlled scripts full root access on Linux hosting servers) carries a CVSS v4.0 score of 10.0 — Critical, the highest possible rating, indicating remote exploitability with no meaningful preconditions and complete compromise of the host. The vulnerability affects LiteSpeed cPanel plugin versions 2.3 through 2.4.4; version 2.4.7, containing the authoritative fix, was released on May 21, 2026.

// 01 CVE-2026-48172: Technical Details

CVE-2026-48172, also tracked under GitHub Security Advisory GHSA-fxrh-cwjh-m33v, is classified as CWE-266 — Incorrect Privilege Assignment, a class of bug in which software grants more permissions than intended to a particular function or caller.

The root cause is the lsws.redisAble function exposed through the user-end cPanel plugin. LiteSpeed Web Server (LSWS) is a high-performance, Apache-compatible HTTP server widely deployed on shared hosting infrastructure. Its cPanel plugin allows hosting customers to manage LSWS settings — such as enabling or disabling Redis (an in-memory data store used to cache database queries and PHP sessions) — directly from their cPanel dashboard.

The redisAble function, intended to toggle Redis support on a per-user basis, incorrectly runs with elevated root permissions rather than the calling user's permissions. Because the function accepts user-supplied input and executes as root, any cPanel account holder can supply a crafted argument to run arbitrary scripts as root on the physical server. On shared hosting infrastructure, where hundreds or thousands of tenants share a single machine, this means a single compromised or malicious hosting account can achieve full server takeover.

The CVSS v4.0 vector — CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H — breaks down as follows:

  • AV:N — Network-exploitable; no physical or local access needed
  • AC:L — Low complexity; no special conditions or configuration required
  • AT:N — No additional requirements such as race conditions or specific states
  • PR:N — No elevated privileges needed beyond a standard cPanel user account
  • UI:N — No victim interaction required
  • All impact metrics at High, including Subsequent System (SC/SI/SA) confidentiality, integrity, and availability

The practical result: an attacker who gains or already holds any cPanel account on a target server can achieve a full root shell, enabling them to read all hosted data across every tenant on the machine, install persistent backdoors, pivot laterally to other networked infrastructure, or destroy all data on the host.

// 02 Exploitation Status and Threat Landscape

LiteSpeed has confirmed that CVE-2026-48172 was actively exploited in the wild before a patch was available, making this a true 0-day (a vulnerability exploited before any fix exists) at the time of discovery. Security researcher David Strydom reported the flaw to LiteSpeed on May 19, 2026.

LiteSpeed responded rapidly: cPanel plugin v2.4.6 and WHM plugin v5.3.0.0 were released on the same day the report was received (May 19). After completing a full internal security review, LiteSpeed shipped cPanel plugin v2.4.7 and WHM plugin v5.3.1.0 on May 21, 2026, incorporating additional hardening beyond the initial hotfix. LiteSpeed strongly advises all operators to upgrade to v5.3.1.0 or higher rather than stopping at v5.3.0.0.

No public PoC (Proof-of-Concept — working exploit code released openly for download or replication) has been confirmed at the time of writing, though exploitation in the wild confirms that functional exploit capability already exists among threat actors. CVE-2026-48172 has not yet appeared on CISA's KEV (Known Exploited Vulnerabilities) catalog — a list maintained by the U.S. Cybersecurity and Infrastructure Security Agency confirming active exploitation — as of publication, but KEV addition should be considered likely given the confirmed wild exploitation.

The attack surface is particularly dangerous on managed hosting platforms and web hosting resellers, where a single vulnerable server typically serves hundreds of independent tenants. An attacker with even a basic, free-tier cPanel hosting account on a target server can escalate to root and then access any data hosted on the same physical machine — including databases, email stores, SSL private keys, and source code belonging to entirely unrelated customers.

// 03 Who Is Affected

All deployments running LiteSpeed User-End cPanel Plugin versions 2.3 through 2.4.4 are affected. The WHM (WebHost Manager) plugin used by server administrators is not directly vulnerable, but any server where the user-end plugin is installed and accessible to cPanel users is at risk.

Affected environments include:

  • Shared hosting servers running cPanel/WHM with the LiteSpeed user-end plugin enabled
  • VPS and dedicated servers using cPanel with the LiteSpeed cPanel plugin installed
  • Managed WordPress hosts built on LiteSpeed/cPanel infrastructure

LiteSpeed Web Server claims an installation base spanning tens of millions of domains globally. While not all deployments use the user-end cPanel plugin, the plugin is a standard component on cPanel/WHM stacks that use LSWS as the web server, making the exposure count significant. Exact public Shodan enumeration figures are not yet available.

Notably, cPanel automatically uninstalled the vulnerable plugin as part of an emergency patch applied to cPanel-managed servers on May 19, 2026. Servers running cPanel's auto-update feature may already be protected at the cPanel layer, but this auto-removal does not constitute a complete remediation — the LiteSpeed plugin update must also be applied independently.

// 04 What You Should Do Right Now

  • Upgrade the LiteSpeed cPanel plugin immediately. Update to cPanel plugin v2.4.7 and WHM plugin v5.3.1.0 or later via the LiteSpeed update channel in WHM. Do not treat cPanel's auto-uninstall of the plugin as a complete fix.
  • Verify your current plugin version. In WHM, navigate to LiteSpeed Web Server → Version Manager and confirm the installed plugin version. Any version below 2.4.5 is vulnerable and must be updated before re-enabling the plugin.
  • Scan logs for exploitation indicators. Run the following detection command to search for requests targeting the vulnerable redisAble function:

grep -rE "cpanel_jsonapi_func=redisAble" /var/cpanel/logs /usr/local/cpanel/logs/ 2>/dev/null

Any results containing unexpected or external source IPs should be treated as a confirmed exploitation attempt requiring immediate incident response.

  • Audit root-level activity on affected servers. On any server that ran vulnerable versions between May 19 and today, check for unauthorized root-owned processes, new or modified cron jobs (crontab -l for root and all users), unexplained entries in /root/.ssh/authorized_keys, and modifications to /etc/passwd or /etc/shadow.
  • Review cPanel tenant accounts. If you manage a shared hosting environment, identify whether any newly created or recently active cPanel accounts may have been used as initial access vectors. Consider suspending suspicious accounts and preserving their logs while investigation is under way.
  • Apply least-privilege hardening. Even after patching, audit which cPanel users have access to LSWS plugin management functions. Disable features not operationally required per tenant; this reduces the blast radius of future similar bugs in plugin integrations.

// 05 Background: Understanding the Risk

Privilege escalation via incorrect permission assignment (CWE-266) is a well-documented and historically damaging vulnerability class in web hosting software. The attack model — a low-privilege tenant escalates to root on a multi-tenant machine — is not novel, but the consequences are severe in shared hosting environments because the blast radius extends to every tenant on the server, not just the attacker's own account.

LiteSpeed Web Server is commercially supported, Apache-drop-in-compatible software known for its performance advantages on WordPress and high-traffic PHP workloads. It is deeply embedded in the cPanel/WHM ecosystem: cPanel is the control panel used by millions of website owners to manage domains, email accounts, and files; WHM is the administrative layer used by hosting providers on top of cPanel. This stack underpins a large fraction of the global shared hosting market, making any high-severity flaw within it operationally significant across the industry.

The vulnerability specifically affects the Redis integration feature. Redis (Remote Dictionary Server) is an open-source in-memory key-value store commonly used to accelerate WordPress and PHP applications by caching database queries, object cache data, and session state. LiteSpeed's per-user Redis toggling is a convenience feature inside the cPanel plugin — precisely the kind of ancillary functionality that expands the attack surface without always receiving the same security scrutiny as core platform components.

The precedent here is notable. CVE-2026-41940, an authentication bypass in cPanel itself disclosed earlier in 2026, reportedly exposed up to 40,000 publicly reachable cPanel servers before widespread patching. Hosting infrastructure has emerged as a recurring high-value target in 2026, as compromising a single shared server yields simultaneous access to potentially hundreds of websites and their underlying data.

MITRE ATT&CK technique T1068 — Exploitation for Privilege Escalation applies here: an adversary exploits a software vulnerability to gain higher-level permissions on the host. In the context of shared hosting, this technique is particularly potent because the initial foothold (a cPanel account) is trivial to obtain, either by creating a hosting account or by phishing or brute-forcing an existing tenant's credentials.

// 06 Conclusion

CVE-2026-48172 is a CVSS 10.0, actively exploited privilege escalation in LiteSpeed's cPanel plugin that allows any hosting account holder to execute commands as root on the server. Administrators running LiteSpeed on cPanel infrastructure must upgrade to WHM plugin v5.3.1.0 (cPanel plugin v2.4.7) without delay and run log checks for signs of prior exploitation. Any server that ran vulnerable versions after May 19 should be treated as potentially compromised until investigation rules it out.

For any query contact us at contact@cipherssecurity.com

    TE
    Team Ciphers Security

    The Ciphers Security editorial team — practitioners covering daily threat intel, CVE deep-dives, and hands-on cybersecurity research. About us →

    Previous MiniPlasma Zero-Day: Unpatched CVE-2020-17103 Still Grants SYSTEM on Windows 11 Next Project Glasswing: Claude Mythos AI Finds 10,000 Critical Flaws in Widely Used Software

    Latest News

    PyTorch Lightning PyPI Backdoor: ML Supply Chain Audit and Credential Stealer Detection The PyTorch Lightning PyPI backdoor (versions 2.6.2–2.6.3) deployed a credential stealer targeting AWS keys and bro… Dual Ransomware Gang Attack: When ShinyHunters and Qilin Hit the Same Enterprise ShinyHunters and Qilin separately hit Cushman & Wakefield. Learn why dual ransomware gang attack enterprise in… Adversary-in-the-Middle Phishing MFA Bypass: Detecting the 35,000-User Microsoft 365 Campaign AitM phishing bypassed MFA for 35,000 Microsoft 365 users across 26 countries in 48 hours. Sentinel KQL queries and… Iran UAE Cyberattacks Triple: APT34, Mint Sandstorm, and the Critical Infrastructure Defense Playbook UAE breach attempts tripled to 600K/day after Iran conflict escalation. Map APT34, Mint Sandstorm & MuddyWater… Google GTIG: Chinese-Language PhaaS Ecosystem Rivals Russian Underground in Credential Theft Scale Google's Threat Intelligence Group analyzed a dozen Chinese-language phishing-as-a-service platforms now matching R… Anthropic Mythos Finds 23,000 Vulnerabilities in 1,000 OSS Projects — Patching Bottleneck Grows Anthropic's Mythos AI security scanner has identified over 23,000 potential vulnerabilities across 1,000 open-sourc… Underminr: DNS Bypass Flaw Lets Attackers Hide C2 Traffic Behind 88M Trusted Domains The Underminr vulnerability exploits SNI mismatches in shared CDN infrastructure to hide C2 connections behind trus… Project Glasswing: Claude Mythos AI Finds 10,000 Critical Flaws in Widely Used Software Anthropic's Project Glasswing reports Claude Mythos AI found 10,000+ high/critical vulnerabilities in 1,000+ open-s…
    Scroll to Top
    Ad