CVE-2025-54293: Canonical LXD Path Traversal Vulnerability in Instance Log File Retrieval Function
Although outside the scope of this penetration test, a path traversal vulnerability exists in the validLogFileName function that validates log file names in lxd/instance_logs.go in the LXD 5.0 LTS series.
This vulnerability was fixed in PR #15022 in February 2025, and is fixed in at least LXD 5.21 and later. However, this PR appears to be primarily aimed at code improvement rather than vulnerability fixing, with the vulnerability being fixed as a side effect. Therefore, no CVE number has been issued, and no security patch has been made for LXD 5.0 and earlier.
However, since LXD 5.0 LTS is still in its support period and installation procedures are explained in official documentation, we judge that environments affected by this vulnerability likely exist and report it.
Implementation in vulnerable versions (LXD 5.0 LTS series):
This function allows filenames starting with snapshot_ or migration_, but lacks sufficient validation for the portion after the prefix, enabling path traversal attacks. The fixed version is as follows:
Implementation in fixed versions (LXD 5.21 and later):
This function ensures that filenames do not contain /, , or .. .
Note that in Linux generally, path traversal like /not_exist_folder/../exist_folder/ is rejected within system calls and doesn’t succeed.
However, in this case, the attack succeeds because URL normalization by golang’s filepath.Join is performed beforehand.
Related part of instanceLogGet function:
Related part of instanceLogDelete function:
In the fixed version, filenames containing path traversal strings are rejected at the validLogFileName stage through pre-checking by shared.IsFileName.
References
Code Behaviors & Features
Detect and mitigate CVE-2025-54293 with GitLab Dependency Scanning
Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →