Skip to content
Snippets Groups Projects
Commit 5d5c906b authored by GitLab Release Tools Bot's avatar GitLab Release Tools Bot
Browse files

Merge branch 'security-fix-xss-in-label-namespace-12-4' into '12-4-stable'

Escape namespace in label references

See merge request gitlab/gitlabhq!3551
parents b72162e7 ddfdc0dc
No related branches found
No related tags found
No related merge requests found
---
title: Escape namespace in label references to prevent XSS
merge_request:
author:
type: security
Loading
Loading
@@ -89,7 +89,7 @@ module Banzai
parent_from_ref = from_ref_cached(project_path)
reference = parent_from_ref.to_human_reference(parent)
 
label_suffix = " <i>in #{reference}</i>" if reference.present?
label_suffix = " <i>in #{ERB::Util.html_escape(reference)}</i>" if reference.present?
end
 
presenter = object.present(issuable_subject: parent)
Loading
Loading
Loading
Loading
@@ -521,6 +521,15 @@ describe Banzai::Filter::LabelReferenceFilter do
 
expect(reference_filter(act).to_html).to eq exp
end
context 'when group name has HTML entities' do
let(:another_group) { create(:group, name: '<img src=x onerror=alert(1)>', path: 'another_group') }
it 'escapes the HTML entities' do
expect(result.text)
.to eq "See #{group_label.name} in #{another_project.full_name}"
end
end
end
 
describe 'cross-project / same-group_label complete reference' do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment