Skip to content

Commit 6245768

Browse files
committed
Return an empty array when ranges are too large
If the sum of the requested ranges is larger than the file itself, return an empty array. In other words, refuse to respond with any bytes. [CVE-2024-26141]
1 parent e4c1177 commit 6245768

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

lib/rack/utils.rb

+3
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,9 @@ def get_byte_ranges(http_range, size)
380380
end
381381
ranges << (r0..r1) if r0 <= r1
382382
end
383+
384+
return [] if ranges.map(&:size).sum > size
385+
383386
ranges
384387
end
385388

test/spec_utils.rb

+4
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,10 @@ def initialize(*)
590590
end
591591

592592
describe Rack::Utils, "byte_range" do
593+
it "returns an empty list if the sum of the ranges is too large" do
594+
assert_equal [], Rack::Utils.byte_ranges({ "HTTP_RANGE" => "bytes=0-20,0-500" }, 500)
595+
end
596+
593597
it "ignore missing or syntactically invalid byte ranges" do
594598
Rack::Utils.byte_ranges({}, 500).must_be_nil
595599
Rack::Utils.byte_ranges({ "HTTP_RANGE" => "foobar" }, 500).must_be_nil

0 commit comments

Comments
 (0)