{"id":"CVE-2026-54917","aliases":["GHSA-w62w-66v9-vvgv"],"title":"SeaweedFS: Path traversal in the S3 and Iceberg REST gateways allows cross-bucket access","summary":"SeaweedFS: Path traversal in the S3 and Iceberg REST gateways allows cross-bucket access","severity":"high","cwe":["CWE-22"],"vendor":"seaweedfs","product":"github.com/seaweedfs/seaweedfs","ecosystem":"go","affected":["github.com/seaweedfs/seaweedfs < 0.0.0-20260526080459-dd1b4287899e"],"patched":["github.com/seaweedfs/seaweedfs 0.0.0-20260526080459-dd1b4287899e"],"published":"2026-08-12","updated":"2026-08-12","source":"GHSA","sourceUrl":"https://github.com/advisories/GHSA-w62w-66v9-vvgv","references":[{"url":"https://github.com/seaweedfs/seaweedfs/security/advisories/GHSA-w62w-66v9-vvgv"},{"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-54917"},{"url":"https://github.com/seaweedfs/seaweedfs/pull/9687"},{"url":"https://github.com/seaweedfs/seaweedfs/commit/dd1b4287899eed3dfd73c2f3b1de001996fda229"},{"url":"https://github.com/advisories/GHSA-w62w-66v9-vvgv"}],"tags":["ghsa","go","exploit-available"],"epss":0.01219,"epssPercentile":0.67329,"ingestedAt":"2026-08-12T19:54:27.584Z","exploits":{"github":1,"githubRepos":["https://github.com/BiiTts/CVE-2026-54917-SeaweedFS-Cross-Bucket-Traversal"],"nuclei":["CVE-2026-54917"],"checkedAt":"2026-09-23T07:14:19.982Z"},"exploitAvailable":true,"slug":"CVE-2026-54917","body":"## Overview\n\n## Summary\n\nThe S3 API gateway and the Iceberg REST catalog gateway construct their routers with `mux.NewRouter().SkipClean(true)`. With path cleaning disabled, a `..` segment inside the URL survives routing, so a request such as:\n\n```\nGET /bucket-A/../evil-bucket/key\n```\n\nis matched as `bucket=bucket-A`, `object=../evil-bucket/key`. The captured object key is then joined into a filer path with `util.JoinPath` (S3) / `path.Join` (Iceberg), which collapse the `..` server-side, so the actual read or write lands in `evil-bucket`.\n\nThe captured path variables were never validated for traversal segments before reaching the handlers, so bucket isolation depended on downstream checks rather than on the path itself.\n\n## Impact\n\n- **With authentication disabled** (`enableAuth=false`): direct cross-bucket read and write. An object key containing `..` resolves to and operates on a different bucket than the one named in the request path.\n- **With authentication enabled** (`enableAuth=true`): an authorization confused-deputy. IAM evaluates the policy against the mux `{bucket}` variable (`bucket-A`) in `iam.authRequestWithAuthType`, while the I/O is performed against the traversed target (`evil-bucket`). A principal authorized for one bucket can therefore reach objects in another bucket it has no grant for. This breaks tenant isolation.\n\nThe same class of traversal applies to the Iceberg REST catalog's `{prefix}`, `{namespace}`, and `{table}` path variables.\n\n`%2e%2e`-encoded and `..\\` (backslash) variants are equivalent, because gorilla/mux URL-decodes captured variables and `NormalizeObjectKey` folds `\\` to `/` before the path is used.\n\n## Affected components\n\n- S3 API gateway (`weed s3`, and the S3 endpoint embedded in `weed server`)\n- Iceberg REST catalog gateway\n\n## Affected versions\n\nAll releases prior to **4.30**.\n\n## Patched version\n\n**4.30** and later.\n\n## Proof of concept\n\nWith a bucket `evil-bucket` containing `secret.txt`, and a caller that only has (or needs no) access to `bucket-A`:\n\n```\nGET /bucket-A/../evil-bucket/secret.txt HTTP/1.1\nHost: <gateway>\n```\n\nThe response returns the contents of `evil-bucket/secret.txt`. The encoded form `GET /bucket-A/%2e%2e/evil-bucket/secret.txt` behaves identically.\n\n## Remediation\n\nUpgrade to SeaweedFS **4.30** or later. The fix adds a validation middleware to both gateway routers that rejects any captured path variable containing a `.` or `..` segment, a NUL byte, an embedded slash/backslash in single-segment slots, or an empty captured value, before any handler runs.\n\n## Workarounds\n\nFor deployments that cannot upgrade immediately, place a reverse proxy in front of the gateway that normalizes the request path and rejects requests whose path contains `..`, `%2e%2e`, or backslash sequences. Note that disabling auth removes the only remaining barrier, so do not rely on `enableAuth=false` deployments being protected by anything.\n\n## Resources\n\n- Fix: https://github.com/seaweedfs/seaweedfs/pull/9687 (commit `dd1b428`)\n\n## Credits\n\nReported responsibly by **Denis Abashkin** ([@dadbravo](https://github.com/dadbravo)).\n\n## Affected packages\n\n- `github.com/seaweedfs/seaweedfs < 0.0.0-20260526080459-dd1b4287899e`\n\n## Remediation\n\nUpgrade to a patched release:\n\n- `github.com/seaweedfs/seaweedfs 0.0.0-20260526080459-dd1b4287899e`","depth":"midnight","depthScore":53,"depthScoreParts":{"impact":41.3,"likelihood":0.2,"exploitation":12,"ransomware":0},"changes":[{"seq":5346,"id":"CVE-2026-54917","ts":1788887269133,"field":"exploit_available","old":"false","new":"true"},{"seq":4229,"id":"CVE-2026-54917","ts":1788886384418,"field":"exploit_available","old":"true","new":"false"},{"seq":2985,"id":"CVE-2026-54917","ts":1788883048129,"field":"exploit_available","old":"false","new":"true"},{"seq":2014,"id":"CVE-2026-54917","ts":1788882452536,"field":"exploit_available","old":"true","new":"false"},{"seq":1090,"id":"CVE-2026-54917","ts":1788881889154,"field":"exploit_available","old":"false","new":"true"}]}