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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
13791c67
Commit
13791c67
authored
Jun 02, 2016
by
Gabriel Mazetto
Committed by
Robert Speicher
Jun 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor SVG sanitizer and prevent `xlink:href` to refer to external resources
parent
02b88241
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
8 deletions
+30
-8
lib/gitlab/sanitizers/svg.rb
lib/gitlab/sanitizers/svg.rb
+15
-5
spec/lib/gitlab/sanitizers/svg_spec.rb
spec/lib/gitlab/sanitizers/svg_spec.rb
+15
-3
No files found.
lib/gitlab/sanitizers/svg.rb
View file @
13791c67
...
...
@@ -10,13 +10,19 @@ module Gitlab
DATA_ATTR_PATTERN
=
/\Adata-(?!xml)[a-z_][\w.\u00E0-\u00F6\u00F8-\u017F\u01DD-\u02AF-]*\z/u
def
scrub
(
node
)
unless
Whitelist
::
ALLOWED_ELEMENTS
.
include?
(
node
.
name
)
node
.
unlink
else
if
Whitelist
::
ALLOWED_ELEMENTS
.
include?
(
node
.
name
)
valid_attributes
=
Whitelist
::
ALLOWED_ATTRIBUTES
[
node
.
name
]
return
unless
valid_attributes
node
.
attribute_nodes
.
each
do
|
attr
|
unless
valid_attributes
&&
valid_attributes
.
include?
(
attribute_name_with_namespace
(
attr
))
attr_name
=
attribute_name_with_namespace
(
attr
)
if
valid_attributes
.
include?
(
attr_name
)
# xlink:href is on the whitelist but we should deny any reference other than internal ids
if
attr_name
==
'xlink:href'
&&
unsafe_href?
(
attr
)
attr
.
unlink
end
else
if
Whitelist
::
ALLOWED_DATA_ATTRIBUTES_IN_ELEMENTS
.
include?
(
node
.
name
)
&&
data_attribute?
(
attr
)
# Arbitrary data attributes are allowed. Verify that the attribute
# is a valid data attribute.
...
...
@@ -26,6 +32,8 @@ module Gitlab
end
end
end
else
node
.
unlink
end
end
...
...
@@ -37,7 +45,9 @@ module Gitlab
end
end
private
def
unsafe_href?
(
attr
)
!
attr
.
value
.
start_with?
(
'#'
)
end
def
data_attribute?
(
attr
)
attr
.
name
.
start_with?
(
'data-'
)
...
...
spec/lib/gitlab/sanitizers/svg_spec.rb
View file @
13791c67
...
...
@@ -2,12 +2,12 @@ require 'spec_helper'
describe
Gitlab
::
Sanitizers
::
SVG
do
let
(
:scrubber
)
{
Gitlab
::
Sanitizers
::
SVG
::
Scrubber
.
new
}
let
(
:namespace
)
{
double
(
Nokogiri
::
XML
::
Namespace
,
prefix:
'xlink'
)
}
let
(
:namespaced_attr
)
{
double
(
Nokogiri
::
XML
::
Attr
,
name:
'href'
,
namespace:
namespace
)
}
let
(
:namespace
)
{
double
(
Nokogiri
::
XML
::
Namespace
,
prefix:
'xlink'
,
href:
'http://www.w3.org/1999/xlink'
)
}
let
(
:namespaced_attr
)
{
double
(
Nokogiri
::
XML
::
Attr
,
name:
'href'
,
namespace:
namespace
,
value:
'#awesome_id'
)
}
context
'scrubber'
do
describe
'#scrub'
do
let
(
:invalid_element
)
{
double
(
Nokogiri
::
XML
::
Node
,
name:
'invalid'
)
}
let
(
:invalid_element
)
{
double
(
Nokogiri
::
XML
::
Node
,
name:
'invalid'
,
value:
'invalid'
)
}
let
(
:invalid_attribute
)
{
double
(
Nokogiri
::
XML
::
Attr
,
name:
'invalid'
,
namespace:
nil
)
}
let
(
:valid_element
)
{
double
(
Nokogiri
::
XML
::
Node
,
name:
'use'
)
}
...
...
@@ -44,5 +44,17 @@ describe Gitlab::Sanitizers::SVG do
expect
(
scrubber
.
attribute_name_with_namespace
(
namespaced_attr
)).
to
eq
(
'xlink:href'
)
end
end
describe
'#unsafe_href?'
do
let
(
:unsafe_attr
)
{
double
(
Nokogiri
::
XML
::
Attr
,
name:
'href'
,
namespace:
namespace
,
value:
'http://evilsite.example.com/random.svg'
)
}
it
'returns true if href attribute is an external url'
do
expect
(
scrubber
.
unsafe_href?
(
unsafe_attr
)).
to
be_truthy
end
it
'returns false if href atttribute is an internal reference'
do
expect
(
scrubber
.
unsafe_href?
(
namespaced_attr
)).
to
be_falsey
end
end
end
end
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