GO-2023-1568

See a problem?
Source
https://pkg.go.dev/vuln/GO-2023-1568
Import Source
https://vuln.go.dev/ID/GO-2023-1568.json
JSON Data
https://api.osv.dev/v1/vulns/GO-2023-1568
Aliases
Published
2023-02-16T19:49:19Z
Modified
2024-09-11T06:13:30.159533Z
Summary
Path traversal on Windows in path/filepath
Details

A path traversal vulnerability exists in filepath.Clean on Windows.

On Windows, the filepath.Clean function could transform an invalid path such as "a/../c:/b" into the valid path "c:\b". This transformation of a relative (if invalid) path into an absolute path could enable a directory traversal attack.

After fix, the filepath.Clean function transforms this path into the relative (but still invalid) path ".\c:\b".

References
Credits
    • RyotaK (https://ryotak.net)

Affected packages

Go / stdlib

Package

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
1.19.6
Introduced
1.20.0-0
Fixed
1.20.1

Ecosystem specific

{
    "imports": [
        {
            "path": "path/filepath",
            "symbols": [
                "Abs",
                "Clean",
                "Dir",
                "EvalSymlinks",
                "Glob",
                "IsLocal",
                "Join",
                "Rel",
                "Walk",
                "WalkDir"
            ],
            "goos": [
                "windows"
            ]
        }
    ]
}