CVE-2026-3330
SQL Injection in Form Maker Plugin Allows Admin Data Extraction
Publication date: 2026-04-17
Last updated on: 2026-04-17
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| 10web | form_maker | to 1.15.40 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
The Form Maker by 10Web plugin for WordPress has a SQL Injection vulnerability in versions up to and including 1.15.40. This occurs because certain parameters ('ip_search', 'startdate', 'enddate', 'username_search', and 'useremail_search') are not properly sanitized. The method `WDW_FM_Library::validate_data()` removes WordPress's built-in protection by calling `stripslashes()` on user input, and the function `FMModelSubmissions_fm::get_labels_parameters()` directly concatenates user input into SQL queries without using safe preparation methods. This allows authenticated users with Administrator-level access or higher to inject additional SQL commands to extract sensitive database information. Furthermore, the vulnerability can be exploited via Cross-Site Request Forgery (CSRF) because the Submissions controller does not verify nonces for the 'display' task, enabling attackers to trick administrators into triggering the exploit.
How can this vulnerability impact me? :
This vulnerability can allow attackers with administrator privileges to extract sensitive information from the website's database by injecting malicious SQL queries. Because the vulnerability can be triggered via CSRF, attackers can trick administrators into executing these queries without their knowledge. The impact includes unauthorized disclosure of sensitive data, which could compromise the security and privacy of the website and its users.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows authenticated attackers with Administrator-level access to perform SQL Injection attacks that can extract sensitive information from the database. This exposure of sensitive data could potentially lead to non-compliance with data protection regulations such as GDPR and HIPAA, which require the protection of personal and sensitive information.
Additionally, the vulnerability can be exploited via CSRF by tricking an administrator into clicking a crafted link, increasing the risk of unauthorized data access.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, you should update the Form Maker by 10Web plugin for WordPress to a version later than 1.15.40 where the issue is fixed.
Additionally, restrict Administrator-level access to trusted users only, since the vulnerability requires such privileges to be exploited.
Be cautious of CSRF attacks by ensuring administrators do not click on untrusted or suspicious links, as the vulnerability can be triggered via CSRF.