# Elementor Pro's Form Handler Has a Critical File Upload Flaw — and Attackers Are Already In
## The Threat
Elementor Pro, one of the most widely deployed premium WordPress plugins in existence, is under active exploitation following the disclosure of a critical arbitrary file upload vulnerability in its form submission handler. Tracked as CVE-2026-32475 and scoring a near-perfect 9.8 on the CVSS scale, the flaw allows an attacker to upload files through the plugin's form processing function without proper validation — turning a routine contact form into a webshell delivery mechanism.
The attack surface here is enormous. Elementor Pro powers millions of WordPress sites across every industry vertical imaginable: law firms, healthcare portals, e-commerce storefronts, municipal governments. Any site using the plugin's form builder widget is a candidate for exploitation, and because the forms are by design publicly accessible, no authentication is required to trigger the vulnerable code path. An attacker needs only to find a site running a vulnerable version and submit a crafted form request.
Arbitrary file upload vulnerabilities at this severity level are among the most operationally dangerous classes of web flaws. Unlike SQL injection, which typically requires additional chaining to achieve full code execution, a successful file upload means an attacker can stage a PHP webshell directly on the target server. From there, privilege escalation, lateral movement, data exfiltration, and ransomware deployment all become straightforward follow-on steps. The "exploited in the wild" status reported by SecurityWeek means this isn't theoretical — defenders are already in incident response mode at compromised sites.
## Severity and Impact
| Field | Detail |
|---|---|
| CVE | CVE-2026-32475 |
| CVSS Score | 9.8 (Critical) |
| CVSS Vector | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H |
| Attack Complexity | Low |
| Authentication Required | None |
| User Interaction | None |
| CWE | CWE-434 — Unrestricted Upload of File with Dangerous Type |
| Exploit Status | Actively exploited in the wild |
## Affected Products
- All versions prior to the patched release
- Affects any installation using the Form widget/form submission handler
Elementor Pro is a commercial plugin with an estimated user base of 12+ million active WordPress installations. The free Elementor plugin is not confirmed affected — the vulnerability resides specifically in the Pro tier's form processing functionality.
## Mitigations
Immediate actions — apply before anything else:
find . -name "*.php" -newer wp-config.php sweep can surface recently planted files.Network and server hardening:
Options -ExecCGI in Apache, location blocks in nginx).If you suspect compromise:
wp-config.php.## References
---
## HackWire Analysis
Let's be direct about what this vulnerability represents: a systemic failure of the plugin ecosystem's security model, dressed up in one CVE number.
Elementor Pro commands a premium price — users pay for it specifically because it abstracts away complexity and delivers polished, production-ready functionality. That trust premium is exactly what makes a 9.8-severity file upload flaw in its form handler so damaging. The customers most likely running Elementor Pro are not sophisticated WordPress administrators managing hardened configurations. They're marketing teams, small businesses, and digital agencies who installed a plugin precisely so they wouldn't have to think about the infrastructure underneath. Those are the users who won't patch within hours of disclosure. They'll patch when they notice their hosting company suspended their account.
This fits a pattern we've tracked repeatedly: high-value, high-trust commercial WordPress plugins as initial access vectors. WP File Manager in 2020. Fancy Product Designer in 2021. Advanced Custom Fields in 2023. Each time, the combination of wide deployment, commercial trust, and a delayed patch cycle creates a window of mass exploitation measured in days to weeks, not hours.
The detail worth watching here is the form handler specifically. Form submissions are often routed through complex processing pipelines — email notifications, CRM integrations, third-party webhooks — which means the blast radius of a successful compromise extends well beyond the WordPress server itself. An attacker with a webshell on a site integrated with Salesforce, HubSpot, or a customer payment portal has considerably more to work with than just that one server.
For defenders: don't wait for your hosting panel to flag this. Pull your Elementor Pro version right now.
— HackWire Editorial
---
## Related Coverage