Summary
CVE-2026-75330 is a critical SQL injection vulnerability affecting super-diamond-server versions 1.3.3 and earlier. The flaw resides in the module path parameter of the front-end preview interface, which is concatenated directly into a SQL IN clause without parameterization, allowing an attacker to inject arbitrary SQL. The issue carries a CVSS v3.1 base score of 9.8 (Critical), reflecting its network-exploitability and potential for full compromise of data confidentiality, integrity, and availability.
Technical details
- Root cause: The vulnerable endpoint builds a SQL
INclause by splitting themoduleparameter withStringUtils.split()and concatenating the resulting values directly into the query string insideConfigDaoImpl.java, instead of using parameterized/bound statements. - Bypassed protection: super-diamond-server ships with a built-in
SqlInjectionUtilsanitization helper, but this code path never invokes it, leaving the parameter fully exposed to injection. - Trigger conditions: An HTTP GET request to
/superdiamond/preview/{projectCode}/{module}/{type}with a craftedmodulevalue (e.g., a payload containing' ) OR 1=1--) triggers the injected SQL logic. Public proof-of-concept exploitation demonstrated a session cookie (JSESSIONID) associated with a valid application login (documented as the product’s defaultadmin/000000account) being sufficient to reach the vulnerable code path. - Attack vector: Network-based (AV:N), no user interaction required (UI:N); the CVE’s published CVSS vector specifies no privileges required (PR:N).
- Impact: Full impact to confidentiality, integrity, and availability (C:H/I:H/A:H). Publicly documented exploitation extracted database version information and an administrator’s unsalted MD5 password hash from the
CONF_USERtable via UNION-based injection, and the technique could be extended to stacked queries against the underlying database.
Affected software
- super-diamond-server: all versions ≤ 1.3.3
Severity
- CVSS v3.1 Base Score: 9.8 (Critical)
- Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Mitigation and recommended actions
- Immediate: Upgrade super-diamond-server to a version newer than 1.3.3 that parameterizes the
modulevalue in the preview endpoint’s SQLINclause (or confirm with the vendor that the affected code path has been fixed and routed through the existingSqlInjectionUtilsanitizer). - If no patch is available:
- Restrict network access to the
/superdiamond/preview/{projectCode}/{module}/{type}endpoint to trusted internal networks only; do not expose it directly to the internet. - Change any default credentials (including the documented default
admin/000000account) and enforce strong, unique credentials for all accounts able to reach the application. - Deploy a web application firewall (WAF) rule to detect and block SQL metacharacters and injection patterns in the
modulepath segment. - Monitor database and application logs for anomalous queries against configuration/user tables (e.g.,
CONF_USER) and for unexpected UNION-based query patterns. - Rotate credentials and password hashes for any accounts that may have been exposed if the endpoint has been internet-facing.
- Restrict network access to the

