Fix XSS in MR source branch name

This commit is contained in:
Paul Slaughter 2018-10-12 16:39:13 -05:00
parent 1103f589f0
commit 2f4afe4552
No known key found for this signature in database
GPG Key ID: DF5690803C68282A
3 changed files with 17 additions and 9 deletions

View File

@ -108,16 +108,10 @@ class MergeRequestPresenter < Gitlab::View::Presenter::Delegated
namespace = source_project_namespace
branch = source_branch
if source_branch_exists?
namespace = link_to(namespace, project_path(source_project))
branch = link_to(branch, project_tree_path(source_project, source_branch))
end
namespace_link = source_branch_exists? ? link_to(namespace, project_path(source_project)) : ERB::Util.html_escape(namespace)
branch_link = source_branch_exists? ? link_to(branch, project_tree_path(source_project, source_branch)) : ERB::Util.html_escape(branch)
if for_fork?
namespace + ":" + branch
else
branch
end
for_fork? ? "#{namespace_link}:#{branch_link}" : branch_link
end
def closing_issues_links

View File

@ -0,0 +1,5 @@
---
title: Fix XSS in merge request source branch name
merge_request:
author:
type: security

View File

@ -403,6 +403,15 @@ describe MergeRequestPresenter do
is_expected
.to eq("<a href=\"/#{resource.source_project.full_path}/tree/#{resource.source_branch}\">#{resource.source_branch}</a>")
end
it 'escapes html, when source_branch does not exist' do
xss_attempt = "<img src='x' onerror=alert('bad stuff') />"
allow(resource).to receive(:source_branch) { xss_attempt }
allow(resource).to receive(:source_branch_exists?) { false }
is_expected.to eq(ERB::Util.html_escape(xss_attempt))
end
end
describe '#rebase_path' do