-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ReDoS caused by very large character references using repeated 0s
This patch will fix the ReDoS that is caused by large string of 0s on a character reference (like `�...`). This is occurred in Ruby 3.1 or earlier.
- Loading branch information
1 parent
4ebf21f
commit bb274bc
Showing
2 changed files
with
54 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
require "test/unit" | ||
require "core_assertions" | ||
|
||
require "rexml/document" | ||
|
||
module REXMLTests | ||
class TestParseCharacterReference < Test::Unit::TestCase | ||
include Test::Unit::CoreAssertions | ||
|
||
def test_gt_linear_performance_malformed_character_reference | ||
seq = [10000, 50000, 100000, 150000, 200000] | ||
assert_linear_performance(seq, rehearsal: 10) do |n| | ||
begin | ||
REXML::Document.new('<test testing="&#' + "0" * n + '"/>') | ||
rescue | ||
end | ||
end | ||
end | ||
end | ||
end |