Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
6207a2de
Commit
6207a2de
authored
Jun 18, 2018
by
Imre Farkas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HTML escape branch name in project graphs page
parent
4be23eea
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
2 deletions
+25
-2
app/views/projects/graphs/charts.html.haml
app/views/projects/graphs/charts.html.haml
+1
-1
changelogs/unreleased/security-html_escape_branch_name.yml
changelogs/unreleased/security-html_escape_branch_name.yml
+5
-0
spec/features/projects/graph_spec.rb
spec/features/projects/graph_spec.rb
+19
-1
No files found.
app/views/projects/graphs/charts.html.haml
View file @
6207a2de
...
...
@@ -30,7 +30,7 @@
#{
@commits_graph
.
start_date
.
strftime
(
'%b %d'
)
}
-
end_time
=
capture
do
#{
@commits_graph
.
end_date
.
strftime
(
'%b %d'
)
}
=
(
_
(
"Commit statistics for %{ref} %{start_time} - %{end_time}"
)
%
{
ref:
"<strong>
#{
@ref
}
</strong>"
,
start_time:
start_time
,
end_time:
end_time
}).
html_safe
=
(
_
(
"Commit statistics for %{ref} %{start_time} - %{end_time}"
)
%
{
ref:
"<strong>
#{
h
@ref
}
</strong>"
,
start_time:
start_time
,
end_time:
end_time
}).
html_safe
.col-md-6
.tree-ref-container
...
...
changelogs/unreleased/security-html_escape_branch_name.yml
0 → 100644
View file @
6207a2de
---
title
:
HTML escape branch name in project graphs page
merge_request
:
author
:
type
:
security
spec/features/projects/graph_spec.rb
View file @
6207a2de
...
...
@@ -3,6 +3,7 @@ require 'spec_helper'
describe
'Project Graph'
,
:js
do
let
(
:user
)
{
create
:user
}
let
(
:project
)
{
create
(
:project
,
:repository
,
namespace:
user
.
namespace
)
}
let
(
:branch_name
)
{
'master'
}
before
do
project
.
add_master
(
user
)
...
...
@@ -12,7 +13,7 @@ describe 'Project Graph', :js do
shared_examples
'page should have commits graphs'
do
it
'renders commits'
do
expect
(
page
).
to
have_content
(
'Commit statistics for master'
)
expect
(
page
).
to
have_content
(
"Commit statistics for
#{
branch_name
}
"
)
expect
(
page
).
to
have_content
(
'Commits per day of month'
)
end
end
...
...
@@ -57,6 +58,23 @@ describe 'Project Graph', :js do
it_behaves_like
'page should have languages graphs'
end
context
'chart graph with HTML escaped branch name'
do
let
(
:branch_name
)
{
'<h1>evil</h1>'
}
before
do
project
.
repository
.
create_branch
(
branch_name
,
'master'
)
visit
charts_project_graph_path
(
project
,
branch_name
)
end
it_behaves_like
'page should have commits graphs'
it
'HTML escapes branch name'
do
expect
(
page
.
body
).
to
include
(
"Commit statistics for <strong>
#{
ERB
::
Util
.
html_escape
(
branch_name
)
}
</strong>"
)
expect
(
page
.
body
).
not_to
include
(
branch_name
)
end
end
context
'when CI enabled'
do
before
do
project
.
enable_ci
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment