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.

2405+ Articles
159+ 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. Forminator WordPress Plugin Flaw Enables Unauthenticated RCE via PHP Upload
Forminator WordPress Plugin Flaw Enables Unauthenticated RCE via PHP Upload
NEWS

Forminator WordPress Plugin Flaw Enables Unauthenticated RCE via PHP Upload

CVE-2026-15748 (CVSS 9.8) in Forminator Forms allows unauthenticated PHP webshell uploads for full RCE on 600,000+ WordPress sites. Patch to 1.56.2 now.

Dylan H.

News Desk

August 17, 2026
5 min read

600,000+ WordPress Sites Exposed to Full Server Compromise

A critical security flaw has been disclosed in Forminator Forms, a WordPress plugin with more than 600,000 active installations, that allows unauthenticated attackers to upload malicious PHP files and achieve arbitrary code execution on susceptible servers. The vulnerability, tracked as CVE-2026-15748 with a CVSS score of 9.8, was patched in version 1.56.2 released on July 31, 2026.

Site administrators who have not yet updated are urged to do so immediately — with the Wordfence disclosure now public, exploitation attempts are considered imminent.


Vulnerability Details

FieldDetails
CVECVE-2026-15748
CVSS Score9.8 (Critical)
PluginForminator Forms
Affected VersionsAll versions up to and including 1.56.1
Fixed Version1.56.2 (released July 31, 2026)
Authentication RequiredNone
Discovered By"daroo" (independent researcher)
Active Installations600,000+

Technical Analysis

Root Cause: Unrestricted File Upload

The flaw resides in the plugin's handle_file_upload() routine. The function fails to adequately validate uploaded file types before processing them, allowing unauthenticated users to submit arbitrary files — including executable .php files — to the server.

Exploitation Prerequisite

A specific configuration is required for exploitation: the target site must have a Forminator form that contains both a File Upload field and a Select field. When these conditions are met, there are no server-side restrictions preventing a malicious PHP webshell from being written to a web-accessible path.

Exploit Chain

Stage 1: Reconnaissance
└── Identify target site with Forminator form
    └── Confirm form has File Upload + Select field

Stage 2: Malicious Upload
└── Submit form with PHP webshell as the "file"
    └── handle_file_upload() fails to restrict .php extension
    └── Webshell written to web-accessible upload directory

Stage 3: Remote Code Execution
└── HTTP GET /wp-content/uploads/forminator/[upload]/shell.php?cmd=id
    └── Full server-side command execution achieved
    └── Complete site compromise — data theft, backdoor, ransomware

Example Payload

<?php system($_GET['cmd']); ?>

Uploaded as shell.php (or any .php variant), this bypasses Forminator's file type check entirely. Once uploaded, the attacker can execute arbitrary system commands with the web server's privileges.


Companion Vulnerability

The same v1.56.2 patch also addresses CVE-2026-18325 (CVSS 7.2): an unauthenticated stored XSS via file upload — a separate attack vector with the same plugin version boundary.


Disclosure Timeline

DateEvent
Pre-July 31, 2026Researcher "daroo" discovers and reports vulnerability
July 31, 2026Forminator 1.56.2 patch released
July 31 – Aug 18, 202618-day Wordfence embargo period; firewall rules pushed to Wordfence customers
August 17–18, 2026Public disclosure by Wordfence and The Hacker News

Exploitation Risk Assessment

  • No public PoC confirmed as of initial disclosure date
  • Exploitation window is now open following public disclosure
  • With 600,000+ installations and a zero-authentication requirement, mass scanning and automated exploitation is expected rapidly
  • Wordfence customers received firewall rule coverage during the 18-day embargo — unprotected sites are now the primary target

Remediation

Immediate Action

Update Forminator Forms to version 1.56.2 or later immediately:

  1. In WordPress admin, navigate to Plugins → Installed Plugins
  2. Find Forminator and click Update Now
  3. Verify the active version shows 1.56.2 or higher

Verify Your Form Configuration

If you cannot update immediately:

  • Disable or remove all forms that contain both a File Upload field and a Select field
  • Alternatively, remove the File Upload field from all affected forms as a temporary mitigation

Secondary Defenses

  • Enable WAF protection — Wordfence, Cloudflare WAF, or similar
  • Review uploaded files directory (/wp-content/uploads/forminator/) for unexpected PHP files
  • Restrict PHP execution in upload directories via .htaccess:
    <FilesMatch "\.php$">
      Deny from all
    </FilesMatch>
  • Monitor web server access logs for requests to upload directories

Why This Vulnerability Is Serious

Unauthenticated file upload flaws on popular WordPress plugins represent a particularly dangerous class of vulnerability because:

  1. Mass exploitation is trivial — automated scanners can identify vulnerable sites at scale
  2. No skill required — a basic webshell is sufficient for full compromise
  3. 600,000+ sites means even a small exploitation rate affects tens of thousands of sites
  4. Post-compromise impact is severe — ransomware deployment, data theft, SEO spam, and credential harvesting are all common follow-on attacks

Sources

  • The Hacker News — Forminator WordPress Flaw Can Enable Unauthenticated RCE
  • CyberSecurityNews — Critical WordPress Plugin Vulnerability Exposes 600,000+ Sites
  • Wordfence — Forminator Plugin Vulnerability Intelligence

Related Reading

  • AppsFlyer Web SDK Hijacked to Spread Crypto-Stealing JavaScript
  • GlassWorm Supply Chain Attack Abuses 72 Open VSX Extensions
  • Veeam Warns of Critical Flaws Exposing Backup Servers to RCE
#WordPress#Vulnerability#CVE-2026-15748#Forminator#RCE#PHP#File Upload#Patch Now

Related Articles

vBulletin Fixes Critical Pre-Auth RCE Flaw with Public Exploit

vBulletin has patched a critical unauthenticated remote code execution vulnerability that allows attackers to execute arbitrary PHP code through template rendering. A public exploit was available before the patch was released, putting thousands of forum installations at immediate risk.

3 min read

Update Now: 7-Zip Fixes RCE Flaw Exploitable with Malicious Archives

7-Zip 26.02 patches a remote code execution vulnerability that lets attackers execute arbitrary code by convincing users to open specially crafted...

3 min read

WordPress Core "wp2shell" RCE Flaws Get Public Exploits — Patch Now

Public exploits have been released for the critical wp2shell remote code execution vulnerabilities in WordPress Core, putting millions of sites at...

4 min read
Back to all News