AI Security AI安全 6h ago Updated 1h ago 更新于 1小时前 43

Over 440,000 Exploit Attempts Target Super Forms and Elementor Pro RCE Flaws 超过44万次利用攻击针对Super Forms和Elementor Pro的远程代码执行漏洞

Two critical unauthenticated RCE vulnerabilities (CVE-2026-14894, CVSS 9.8; CVE-2026-32475, CVSS 9.0/9.8) in WordPress plugins Super Forms and Elementor Pro are being actively exploited at scale Over 440,000 exploit attempts have been blocked by Wordfence — 250,000+ targeting Super Forms and 190,000+ targeting Elementor Pro Both vulnerabilities stem from missing file type validation, allowing attackers to upload PHP web shells and achieve remote code execution on affected sites The Super Forms e Wordfence发现针对WordPress插件Super Forms和Elementor Pro的严重RCE漏洞的超过44万次利用尝试 CVE-2026-14894(CVSS 9.8)和CVE-2026-32475(CVSS 9.0/9.8)均为未认证攻击者通过文件上传实现远程代码执行 攻击者利用Base64编码的PHP web shell绕过文件类型验证,已拦截25万+和19万+次攻击尝试 漏洞利用始于2026年7月,峰值达每日4万+请求,攻击来源IP遍布全球多个地区 官方已发布修复版本(Super Forms 6.3.314,Elementor Pro 4.2.2),建议立即更新并扫描站

68
Hot 热度
62
Quality 质量
55
Impact 影响力

Analysis 深度分析

TL;DR

  • Two critical unauthenticated RCE vulnerabilities (CVE-2026-14894, CVSS 9.8; CVE-2026-32475, CVSS 9.0/9.8) in WordPress plugins Super Forms and Elementor Pro are being actively exploited at scale
  • Over 440,000 exploit attempts have been blocked by Wordfence — 250,000+ targeting Super Forms and 190,000+ targeting Elementor Pro
  • Both vulnerabilities stem from missing file type validation, allowing attackers to upload PHP web shells and achieve remote code execution on affected sites
  • The Super Forms exploit uses a Base64-encoded PHP payload disguised as a GIF via the admin-ajax.php endpoint, while Elementor Pro exploitation bypasses validation by submitting the file upload field as an array with an empty first element
  • Patches are available (Super Forms v6.3.314, Elementor Pro v4.2.2), and site owners are urged to update immediately, scan for indicators of compromise, and audit for suspicious .php files

Why It Matters

This incident highlights the ongoing threat of arbitrary file upload vulnerabilities in widely used WordPress plugins, which remain a top attack vector for website compromise. With over 440,000 exploit attempts already recorded, WordPress site owners and developers must treat plugin supply-chain security as a critical priority, especially given how quickly unpatched vulnerabilities are weaponized in the wild.

Technical Details

  • CVE-2026-14894 (Super Forms – Drag & Drop Form Builder, CVSS 9.8): Unauthenticated attackers can upload arbitrary files, including PHP executables, due to missing file type validation. Exploitation sends an HTTP POST to /wp-admin/admin-ajax.php via the super_submit_form endpoint, embedding a Base64-encoded PHP web shell (e.g., "Mushr00w_upl.php") with a forged data:image/gif;base64 content type. The web shell is stored on the server and used as a secondary upload conduit for further payloads. Attack activity began July 14, 2026, peaking at over 40,000 requests on August 18, 2026.
  • CVE-2026-32475 (Elementor Pro, CVSS 9.0/9.8): Unauthenticated PHP file upload via a validation bypass in the Form widget's File Upload field. Attackers submit the field as an array where the first element is empty and the second contains a PHP payload with a .php extension, tricking the validator into allowing the upload. The resulting web shell is placed in /wp-content/uploads/elementor/forms/ under a randomly generated filename. Exploitation began August 19, 2026.
  • Fixed versions: Super Forms 6.3.314 and Elementor Pro 4.2.2.
  • Attack infrastructure: Exploits originate from a distributed set of IPv4 and IPv6 addresses across multiple geographies, indicating coordinated automated scanning and exploitation campaigns.
  • Impact chain: Successful exploitation leads to full site compromise — attackers can create admin accounts, exfiltrate data, deploy additional malware, or use the server as a pivot point.

Industry Insight

  • WordPress plugin security remains a systemic weak point: arbitrary file upload flaws in popular plugins continue to be weaponized within days of disclosure, underscoring the need for stricter security review processes and mandatory file validation in form-handling code.
  • Organizations running WordPress should implement a rapid patching cadence, deploy web application firewalls (WAFs) with file-upload inspection rules, and conduct regular audits of uploaded files in /wp-content/uploads/ directories to detect compromise early.
  • The coordinated, multi-IP attack pattern suggests botnet-driven exploitation at scale; this reinforces the importance of rate-limiting form submission endpoints and monitoring for anomalous upload activity as a defensive layer beyond patching alone.

TL;DR

  • Wordfence发现针对WordPress插件Super Forms和Elementor Pro的严重RCE漏洞的超过44万次利用尝试
  • CVE-2026-14894(CVSS 9.8)和CVE-2026-32475(CVSS 9.0/9.8)均为未认证攻击者通过文件上传实现远程代码执行
  • 攻击者利用Base64编码的PHP web shell绕过文件类型验证,已拦截25万+和19万+次攻击尝试
  • 漏洞利用始于2026年7月,峰值达每日4万+请求,攻击来源IP遍布全球多个地区
  • 官方已发布修复版本(Super Forms 6.3.314,Elementor Pro 4.2.2),建议立即更新并扫描站点

为什么值得看

本文揭示了WordPress生态中两个主流插件的严重安全漏洞,展示了攻击者如何利用文件上传缺陷实现远程代码执行,对WordPress网站所有者和安全从业者具有重要警示意义。

技术解析

  • CVE-2026-14894:Super Forms插件缺少文件类型验证,攻击者通过POST请求到/wp-admin/admin-ajax.phpsuper_submit_form端点,上传Base64编码的PHP文件(伪装成GIF),实现任意代码执行,已修复于6.3.314版本。

  • CVE-2026-32475:Elementor Pro插件存在类似漏洞,攻击者将文件上传字段构造为数组(第一元素为空,第二元素携带PHP载荷),绕过验证后将PHP文件写入/wp-content/uploads/elementor/forms/目录,已修复于4.2.2版本。

  • 攻击特征:攻击者使用Mushr00w_upl.php作为初始web shell,通过该shell进一步上传其他恶意载荷,攻击IP包括103.168.147.235、185.196.220.85等多个来源。

  • 时间线:CVE-2026-14894利用始于2026年7月14日,8月18日达峰值(4万+请求/天);CVE-2026-32475利用始于2026年8月19日。

  • 影响范围:两个漏洞均允许未认证攻击者上传任意文件类型,可导致管理员账户创建、数据泄露或站点完全控制。

行业启示

  • WordPress生态安全形势严峻,主流插件的严重漏洞可能影响数百万网站,建议网站所有者建立定期更新和漏洞扫描机制。
  • 文件上传验证是Web应用安全的薄弱环节,开发者应实施严格的文件类型白名单和内容验证,而非仅依赖扩展名检查。
  • 攻击者利用自动化脚本大规模扫描和 exploit 漏洞的趋势持续存在,企业需加强Web应用防火墙(WAF)部署和实时威胁监控。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Security 安全