aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers
diff options
context:
space:
mode:
authorTimm <kaspth@gmail.com>2013-07-03 19:55:52 +0200
committerTimm <kaspth@gmail.com>2014-06-15 23:35:25 +0200
commit167e998f6128f2a04170181030fceb21047f7b79 (patch)
tree672a3896dbda2e78aa6c48d8628584031e54b924 /actionview/lib/action_view/helpers
parent3e4ae8e5a21e1460bf0674211aef8d539c065701 (diff)
downloadrails-167e998f6128f2a04170181030fceb21047f7b79.tar.gz
rails-167e998f6128f2a04170181030fceb21047f7b79.tar.bz2
rails-167e998f6128f2a04170181030fceb21047f7b79.zip
Removed the contains_bad_protocols? method as well as the tests for it. Loofah already deals with this.
Diffstat (limited to 'actionview/lib/action_view/helpers')
-rw-r--r--actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb b/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb
index f70b47f32a..0bc4be6558 100644
--- a/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb
+++ b/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb
@@ -13,8 +13,9 @@ module ActionView
class LinkSanitizer
def initialize
+ @strip_tags = %w(a href)
@link_scrubber = Loofah::Scrubber.new do |node|
- if node.name == 'a'
+ if @strip_tags.include?(node.name)
node.before node.children
node.remove
else
@@ -109,12 +110,5 @@ module ActionView
self.shorthand_css_properties = Loofah::HTML5::WhiteList::SHORTHAND_CSS_PROPERTIES
self.allowed_protocols = Loofah::HTML5::WhiteList::ALLOWED_PROTOCOLS
-
- protected
- def contains_bad_protocols?(attr_name, value)
- protocol_separator = ':'
- self.uri_attributes.include?(attr_name) &&
- (value =~ /(^[^\/:]*):|(&#0*58)|(&#x70)|(&#x0*3a)|(%|&#37;)3A/i && !self.allowed_protocols.include?(value.split(protocol_separator).first.downcase.strip))
- end
end
end