Commit ef6512ad authored by GitLab Release Tools Bot's avatar GitLab Release Tools Bot

Merge branch 'security-dos-issue-and-commit-comments-12-5' into '12-5-stable'

Fix invalid byte sequence

See merge request gitlab/gitlabhq!3547
parents 79a183ea 5bdc90c2
---
title: Fix 500 error caused by invalid byte sequences in links
merge_request:
author:
type: security
......@@ -172,7 +172,7 @@ module Banzai
end
def cleaned_file_path(uri)
Addressable::URI.unescape(uri.path).delete("\0").chomp("/")
Addressable::URI.unescape(uri.path).scrub.delete("\0").chomp("/")
end
def relative_file_path(uri)
......
......@@ -119,6 +119,11 @@ describe Banzai::Filter::RelativeLinkFilter do
expect { filter(act) }.not_to raise_error
end
it 'does not raise an exception on URIs containing invalid utf-8 byte sequences' do
act = link("%FF")
expect { filter(act) }.not_to raise_error
end
it 'does not raise an exception with a garbled path' do
act = link("open(/var/tmp/):%20/location%0Afrom:%20/test")
expect { filter(act) }.not_to raise_error
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment