Security Vulnerability Report
中文
CVE-2025-1161 CVSS 7.1 HIGH

CVE-2025-1161

Published: 2025-12-10 09:15:47
Last Modified: 2026-04-15 00:35:42

Description

Incorrect Use of Privileged APIs vulnerability in NomySoft Information Technology Training and Consulting Inc. Nomysem allows Privilege Escalation.This issue affects Nomysem: through May 2025.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Nomysem <= May 2025

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-1161 PoC - Nomysem Privilege Escalation via Incorrect Use of Privileged APIs # Note: This is a conceptual PoC based on the vulnerability description # Actual exploitation requires understanding the specific API endpoints import requests import json TARGET_URL = "https://target-nomysem-instance.com" def exploit_cve_2025_1161(): """ Conceptual exploitation steps for CVE-2025-1161 This demonstrates how an attacker might leverage improper privileged API usage """ # Step 1: Authenticate with low-privilege account low_priv_creds = { "username": "low_privilege_user", "password": "user_password" } # Step 2: Identify privileged API endpoints # Attackers would enumerate API paths that require elevated privileges privileged_endpoints = [ "/api/admin/users/privileges", "/api/system/config/write", "/api/admin/roles/assign" ] # Step 3: Craft request to exploit improper privileged API usage # The vulnerability allows low-privilege users to invoke privileged operations exploit_payload = { "action": "escalate_privileges", "target_role": "administrator", "api_endpoint": "/internal/privileged/exec" } # Step 4: Execute privilege escalation # Bypassing the intended access control mechanism headers = { "Content-Type": "application/json", "Authorization": "Bearer <low_privilege_token>" } # Note: Actual PoC requires detailed analysis of the target application # This PoC is based on the vulnerability description without access to the actual system return { "cve_id": "CVE-2025-1161", "vulnerability": "Incorrect Use of Privileged APIs", "impact": "Privilege Escalation", "note": "This is a conceptual PoC. Actual exploitation requires reverse engineering of the target application." } if __name__ == "__main__": result = exploit_cve_2025_1161() print(json.dumps(result, indent=2))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-1161", "sourceIdentifier": "[email protected]", "published": "2025-12-10T09:15:47.230", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Use of Privileged APIs vulnerability in NomySoft Information Technology Training and Consulting Inc. Nomysem allows Privilege Escalation.This issue affects Nomysem: through May 2025."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-648"}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0440", "source": "[email protected]"}]}}