Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2493+ Articles
160+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. News
  3. Critical Elementor Pro Bug Exposes WordPress Sites to RCE Attacks
Critical Elementor Pro Bug Exposes WordPress Sites to RCE Attacks
NEWS

Critical Elementor Pro Bug Exposes WordPress Sites to RCE Attacks

CVE-2026-32475 (CVSS 9.0): Unauthenticated attackers can upload PHP webshells via a loop desync flaw in Elementor Pro's file upload field.

Dylan H.

News Desk

August 20, 2026
4 min read

A critical unauthenticated remote code execution (RCE) vulnerability in Elementor Pro — one of WordPress's most popular premium page builder plugins — was disclosed on August 19, 2026. Tracked as CVE-2026-32475 with a CVSS score of 9.0 (Critical), the flaw allows any unauthenticated attacker to upload a PHP webshell to a vulnerable site and execute arbitrary code.

The Vulnerability

The bug lives in Elementor Pro's Forms module, specifically in the File Upload field handler (modules/forms/fields/upload.php). It arises from a desynchronization between two separate code loops that handle the same multipart upload request differently:

  • Validation loop (validation() method): When it encounters an empty file entry (HTTP error UPLOAD_ERR_NO_FILE), it calls return — exiting the entire loop and skipping extension checking for all remaining file parts.
  • Processing loop (process_field() method): When it encounters an empty file entry, it uses continue — skipping only that entry and then processing subsequent file parts normally, including moving them to disk.

The result: an attacker can submit a multipart upload where the first part is empty and the second part is a PHP file. The validator sees the empty entry and quits; the processor skips the empty entry and writes the PHP file to disk, bypassing the extension blocklist entirely.

Exploitation Details

The attack requires no authentication and no privileged account. An attacker needs only:

  • A publicly accessible page with an Elementor Form widget containing a File Upload field
  • A crafted multipart HTTP POST request

Uploaded files land in wp-content/uploads/elementor/forms/ with filenames generated by PHP's uniqid() — a time-based function. Attackers can recover the exact filename through:

  • Timing brute-force: uniqid() output is derived from server microtime, allowing narrow enumeration
  • Email disclosure: If form autoresponse email is enabled, the filename may appear in the response

Once the filename is known, a single GET request executes the uploaded shell with web server privileges — full RCE.

Elementor Pro's extension blocklist explicitly prohibits php, php3–php7, phtml, shtml, pht, and more. The loop desync bypasses all of it.

Affected Versions

StatusVersion
VulnerableAll versions up to and including 4.2.1
Fixed4.2.2 (released August 19, 2026)

Elementor Pro has over 12 million active installations, making this a high-priority patch.

Patch

Elementor released version 4.2.2 on August 19, 2026. The fix:

  • Aligns both loops to handle empty entries consistently (using continue in both)
  • Adds a secondary extension validation immediately before the file-move operation as a defense-in-depth check

Patchstack also released a virtual patch for sites that cannot update immediately.

Timeline

DateEvent
July 16, 2026Researcher Tin Pham (TF1T) discovers and reports the vulnerability via the Patchstack Bug Bounty Program; CVE-2026-32475 assigned
July 17, 2026Elementor prepares a patch
August 3, 2026Patchstack reviews and confirms the fix
August 19, 2026Elementor releases v4.2.2; advisory published

No confirmed in-the-wild exploitation had been observed at time of publication, but given the unauthenticated attack vector and high CVSS score, opportunistic scanning was considered imminent.

Recommendations

  1. Update Elementor Pro to 4.2.2 immediately. This is the only complete fix.
  2. If you cannot update, disable or remove all forms containing File Upload fields until patched.
  3. Check wp-content/uploads/elementor/forms/ for unexpected .php files — any found should be treated as a potential compromise indicator.
  4. Implement Patchstack's virtual patch as a short-term stopgap.
  5. Review web server logs for unusual POST requests to form submission endpoints.

References

  • BleepingComputer — Critical Elementor Pro Bug Exposes WordPress Sites to RCE Attacks
  • Patchstack — Critical Unauthenticated File Upload to RCE in Elementor Pro
  • The Hacker News — Elementor Pro Flaw Could Let Unauthenticated Attackers Upload PHP and Execute Code
  • CVE-2026-32475 — cve.org
#wordpress#elementor#rce#vulnerability#web-security#file-upload#critical

Related Articles

CISA Warns of Hackers Exploiting Critical MLflow Vulnerability

CVE-2026-64849 (CVSS 9.3): Active SSRF exploitation in MLflow lets attackers steal AWS cloud credentials via redirect bypass. Added to CISA KEV.

4 min read

Hackers Exploit macOS Screen Sharing Flaw to Deploy Monero Miner

Netherlands NCSC warns hackers are actively exploiting a macOS authentication bypass in Screen Sharing after public exploit code emerged, deploying Monero miners.

4 min read

Anthropic Expands Mythos 5 Access to More Defenders, Unveils $35M Open Source Fund

Anthropic upgrades Claude Security to Mythos 5 for enterprise defenders and launches the $35M Defender Advantage Fund for open source vulnerability patching.

5 min read
Back to all News