diff options
author | Sean McGivern <sean@gitlab.com> | 2017-07-20 13:16:00 +0000 |
---|---|---|
committer | James Edwards-Jones <jedwardsjones@gitlab.com> | 2017-07-20 14:39:01 +0100 |
commit | 27e243faf0f0263180333801adc315f98fabd0e9 (patch) | |
tree | 27d4617036903a8e5d5ab0298c96f9457cc0dc19 /lib | |
parent | b4118a06a9853dcdf7546f703d12231809734e18 (diff) | |
download | gitlab-ce-27e243faf0f0263180333801adc315f98fabd0e9.tar.gz |
Merge branch 'fix-re2-infinite-loop-nick' into 'security-9-3'
Fix an infinite loop in Gitlab:UntrustedRegexp
See merge request !2146
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/untrusted_regexp.rb | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/lib/gitlab/untrusted_regexp.rb b/lib/gitlab/untrusted_regexp.rb index 8b43f0053d6..925b2158a22 100644 --- a/lib/gitlab/untrusted_regexp.rb +++ b/lib/gitlab/untrusted_regexp.rb @@ -22,13 +22,28 @@ module Gitlab end def scan(text) - scan_regexp.scan(text).map do |match| - if regexp.number_of_capturing_groups == 0 - match.first - else - match - end + text = text.dup # modified in-place + results = [] + + loop do + match = scan_regexp.match(text) + break unless match + + # Ruby scan returns empty strings, not nil + groups = match.to_a.map(&:to_s) + + results << + if regexp.number_of_capturing_groups.zero? + groups[0] + else + groups[1..-1] + end + + text.slice!(0, match.end(0) || 1) + break unless text.present? end + + results end def replace(text, rewrite) @@ -43,7 +58,7 @@ module Gitlab # groups, so work around it def scan_regexp @scan_regexp ||= - if regexp.number_of_capturing_groups == 0 + if regexp.number_of_capturing_groups.zero? RE2::Regexp.new('(' + regexp.source + ')') else regexp |