1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Validate days parameter to avoid possible DoS in Web UI

Thank you to Sergey Shpakov of http://tutum.space for reporting.
This commit is contained in:
Mike Perham 2022-01-20 10:42:26 -08:00
parent 0a4de94d76
commit 7785ac1399
4 changed files with 17 additions and 2 deletions

View file

@ -161,6 +161,8 @@ module Sidekiq
class History
def initialize(days_previous, start_date = nil)
# we only store five years of data in Redis
raise ArgumentError if days_previous < 1 || days_previous > (5 * 365)
@days_previous = days_previous
@start_date = start_date || Time.now.utc.to_date
end

View file

@ -50,7 +50,10 @@ module Sidekiq
get "/" do
@redis_info = redis_info.select { |k, v| REDIS_KEYS.include? k }
stats_history = Sidekiq::Stats::History.new((params["days"] || 30).to_i)
days = (params["days"] || 30).to_i
return halt(401) if days < 1 || days > 180
stats_history = Sidekiq::Stats::History.new(days)
@processed_history = stats_history.processed
@failed_history = stats_history.failed

View file

@ -156,6 +156,15 @@ describe 'API' do
Time::DATE_FORMATS[:default] = @before
end
describe "history" do
it "does not allow invalid input" do
assert_raises(ArgumentError) { Sidekiq::Stats::History.new(-1) }
assert_raises(ArgumentError) { Sidekiq::Stats::History.new(0) }
assert_raises(ArgumentError) { Sidekiq::Stats::History.new(2000) }
assert Sidekiq::Stats::History.new(200)
end
end
describe "processed" do
it 'retrieves hash of dates' do
Sidekiq.redis do |c|

View file

@ -748,8 +748,9 @@ describe Sidekiq::Web do
basic_authorize 'a', 'b'
get '/'
assert_equal 200, last_response.status
get '/?days=1000000'
assert_equal 401, last_response.status
end
end