Skip to content

Commit f461d2a

Browse files
ch4n3-yoonflavorjones
authored andcommitted
Add linear performance test to verify ReDoS mitigation in PermitScrubber
1 parent 26a34b1 commit f461d2a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

test/sanitizer_test.rb

+20
Original file line numberDiff line numberDiff line change
@@ -1026,6 +1026,26 @@ def test_should_sanitize_across_newlines
10261026
assert_equal "", sanitize_css(raw)
10271027
end
10281028

1029+
1030+
def test_linear_perfomance_svg
1031+
seq = [5000, 10000, 20000, 40000]
1032+
times = []
1033+
1034+
seq.each do |n|
1035+
payload = "<svg><set xlink:href='#{"\n" * n}'/></svg>"
1036+
elapsed_time = Benchmark.realtime {
1037+
safe_list_sanitize(payload)
1038+
}
1039+
times << elapsed_time
1040+
end
1041+
1042+
# Manually check for linear performance growth
1043+
times.each_cons(2) do |prev_time, next_time|
1044+
assert_operator next_time, :<, prev_time * 4, "ReDoS vulnerability detected! Execution time increased too rapidly."
1045+
end
1046+
end
1047+
1048+
10291049
protected
10301050
def safe_list_sanitize(input, options = {})
10311051
module_under_test::SafeListSanitizer.new.sanitize(input, options)

0 commit comments

Comments
 (0)