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-70558 Details

ANALYZED


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

Description

Dinky's POST /download/uploadFromRsByLocal handler passes the caller-supplied path parameter directly to new File(path) and file.transferTo(dest) with no path validation. The route is marked @SaIgnore and /download/** is excluded from the Sa-Token interceptor, so the only guard is a header equality check against a dinkyToken value whose default (efda1551-7958-4e0f-80a8-dfd107df3e38) is hardcoded in source and shipped to every deployment. Anyone who can reach Dinky's HTTP port (8888 by default) and supplies the hardcoded token can write arbitrary files as the Dinky service account. The default Docker image runs on 8888 with no proxy or authentication and chmod 777 on /opt/dinky, so the application's own classpath, launch scripts, and static assets are writable. Demonstrated impact: overwriting /opt/dinky/config/static/index.html served attacker JavaScript to admin browsers immediately, and writing /opt/dinky/org/dinky/Dinky.class executed attacker code as the Dinky service account at the next JVM start via a classpath-shadow launched by script/bin/auto.sh. Writes are uid 9999 (flink), not root, so /etc, /root, /home, and /usr are refused. Affects Dinky v1.2.5 (the current release) and the development branch, where the code is byte-identical.

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.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-434Unrestricted Upload of File with Dangerous Type[email protected]

Affected Products

ProductVersions
DataLinkDC Dinky
1.2.5 (semver)
dev

CPE

  • No CPEs found in CPE dictionary for this product.

Remediation

  • Workaround:low effort

    Do not expose the Dinky port (8888 by default) to untrusted networks or the internet. Put it behind a VPN or an authenticating reverse proxy.

  • Workaround:low effort

    Change `sys.env.settings.dinkyToken` away from the default value `efda1551-7958-4e0f-80a8-dfd107df3e38`. This default is hardcoded in the source and shipped to every deployment.

  • Mitigation:low effort

    Block `/download/**` and `/api/sysConfig/getAll` at the reverse proxy for any client that does not need them.

Change History

2 change records found show changes


QUICK INFO

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