Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-70557 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

diboot-core's POST /common/load-related-data endpoint resolves caller-supplied field names to any @TableField column of any entity and returns those values for all rows, with no field or entity allowlist. The only guard, relatedDataSecurityCheck(), returns true unconditionally, so any authenticated user (including a zero-role account) can read @JsonIgnore-annotated secret fields such as IamAccount.authSecret and IamAccount.secretSalt for every account, or arbitrary secret fields of any other entity. Shiro's two-iteration MD5 with an 8-character salt is trivially crackable offline, so the disclosed admin password hashes convert to full administrative takeover. The endpoint is not example code; the official diboot-admin-ui frontend requires it, so deployments following the vendor's recommended integration expose it. The mechanism was renamed relatedData* to attachMore* on the development branch, but attachMoreSecurityCheck() also returns true unconditionally.

Metrics

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

URLSource(s)Tag(s)
https://github.com/dibo-software/diboot/issues/104 CISA-ADPExploitIssue TrackingTechnical AnalysisVendor
https://github.com/dibo-software/diboot [email protected]Vendor
https://github.com/dibo-software/diboot/issues/104 [email protected]ExploitIssue TrackingTechnical AnalysisVendor

Weakness Enumeration

CWE-IDCWE NameSource
CWE-639Authorization Bypass Through User-Controlled Key[email protected]

Affected Products

ProductVersions
diboot-core
<= 3.9.0 (semver)

CPE

  • No CPEs found in CPE dictionary for this product.

Remediation

  • Workaround:low effort

    Restrict or remove the POST /common/load-related-data mapping if your application does not need it, or block it at the reverse proxy.

  • Workaround:low effort

    Override relatedDataSecurityCheck() (or attachMoreSecurityCheck() on master) in your own controller with a strict allowlist of exposable entity types and field names, and reject everything else.

  • Mitigation:low effort

    Treat any password hash in an exposed installation as compromised: force a password reset, and rotate IamClient secrets and any sensitive SystemConfig values.

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-70557
NVD Published Date:
Aug 6, 2026
NVD Last Modified:
Sep 24, 2026
Source:
[email protected]
CVE-2026-70557 Details - Not Deferred