CVE-2026-41179Critical· 9.8▾ AbyssalPoC availableRClone: Unauthenticated operations/fsinfo allows attacker-controlled backend instantiation and local command execution
▾ Abyssal zone — Critical with a public exploit or in-the-wild use
impact 53.9 · likelihood 1.7 · exploitation 12
A public proof-of-concept already exists for this vulnerability — see Exploit availability below.
Public exploit / PoC code seen in 2 sources. Availability, not in-the-wild use.
Exploit-prediction probability, daily snapshots since Aug 12.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via OSV
Last analysed / modified upstream
8.6%
2 GitHub repos · Nuclei ×1
The RC endpoint operations/fsinfo is exposed without AuthRequired: true and accepts attacker-controlled fs input. Because rc.GetFs(...) supports inline backend definitions, an unauthenticated attacker can instantiate an attacker-controlled backend on demand. For the WebDAV backend, bearer_token_command is executed during backend initialization, making single-request unauthenticated local command execution possible on reachable RC deployments without global HTTP authentication.
Preconditions for this vulnerability are:
--rc flag or by running the rclone rcd server--rc-addr flag is in use--rc-user/--rc-pass/--rc-htpasswd/etcThe root cause consists of the following pieces:
operations/fsinfo is not protected with AuthRequired: trueoperations/fsinfo calls rc.GetFs(...) on attacker-controlled inputrc.GetFs(...) supports inline backend creation through object-valued fsbearer_token_commandRelevant code paths:
operations/fsinfo is registered without AuthRequired: truercFsInfo() calls rc.GetFs(ctx, in)GetFs() / GetFsNamed() can parse an object-valued fsgetConfigMap() converts attacker-controlled JSON into a backend config stringbearer_token_command is a supported backend optionNewFs(...) calls fetchAndSetBearerToken() when bearer_token_command is setfetchBearerToken() invokes exec.Command(...)This creates a practical single-request unauthenticated command-execution primitive on reachable RC servers without global HTTP authentication.
This was alidated on:
master as of 2026-04-14: bf55d5e6d37fd86164a87782191f9e1ffcaafa82v1.73.4This was also validated on a public amd64 Ubuntu host controlled by the tester, using direct host execution (not containerized PoC execution).
Start a vulnerable RC server:
rclone rcd --rc-addr 127.0.0.1:5572
No --rc-user, no --rc-pass, no --rc-htpasswd.
Then send a single request:
curl -sS -X POST http://127.0.0.1:5572/operations/fsinfo \
--data-urlencode "fs=:webdav,url='http://127.0.0.1/',vendor=other,bearer_token_command='/usr/bin/touch /tmp/rclone_fsinfo_rce_poc_marker':"
Expected result:
operations/fsinfo/tmp/rclone_fsinfo_rce_poc_marker is created on the hostThis is effectively a single-request unauthenticated command-execution vulnerability on reachable RC deployments without global HTTP authentication.
In practice, command execution in the rclone process context can lead to higher-impact outcomes such as local file read, file write, or shell access, depending on the deployed environment.
This was successfully reproduced:
On the public host it was confirmed:
operations/fsinfo exploit workedgithub.com/rclone/rclone >= 1.48.0, < 1.73.5Upgrade to a patched release:
github.com/rclone/rclone 1.73.5Field changes observed since this record was first indexed.
Connected by shared product, vendor, weakness, or advisory.
CVE-2026-88014Medium· 6.3rclone archive/zip: Zip Slip via unsanitized zip entry names lets a malicious archive escape its own namespace
CVE-2026-79779Medium· 5.3rclone versions before v1.75.0 fail to reject transport downgrades in redirect handling, allowing Basic authorization and Cookie headers to be replayed over plaintext HTTP after same-host HTTPS-to-HTTP redirects
CVE-2026-79782Low· 3.1rclone before 1.74.4 fails to strip the X-Amz-Security-Token header when an S3 redirect changes scheme from HTTPS to HTTP on the same host
CVE-2026-79777Low· 2.7rclone before v1.75.0 includes full Go stack traces in RC API error responses when panics occur
CVE-2026-79783Low· 3.6rclone before 1.74.4 fails to mask special permission bits when applying source-supplied mode metadata in the local backend, allowing attackers to set setuid/setgid bits on attacker-controlled files
CVE-2026-79781Medium· 6.5rclone serve s3 before 1.74.4 contains a path traversal vulnerability that allows attackers to read and overwrite root-level files by using dot-dot segments in S3 object keys