aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-08-08 14:33:39 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2012-08-09 18:51:05 -0300
commitd8cf713afabbd0c3cf8d6674b2d1a7f7c2a0e98c (patch)
tree5ddcad9850bee32527fc384ff98dd939e76c599a /actionpack/lib/action_view
parentc63d17c2be04882cc0c7aed5cf2b5ba2f1ef313d (diff)
downloadrails-d8cf713afabbd0c3cf8d6674b2d1a7f7c2a0e98c.tar.gz
rails-d8cf713afabbd0c3cf8d6674b2d1a7f7c2a0e98c.tar.bz2
rails-d8cf713afabbd0c3cf8d6674b2d1a7f7c2a0e98c.zip
Do not mark strip_tags result as html_safe
Thanks to Marek Labos & Nethemba CVE-2012-3465
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers/sanitize_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/sanitize_helper.rb b/actionpack/lib/action_view/helpers/sanitize_helper.rb
index a727b910e5..aaf0e0344a 100644
--- a/actionpack/lib/action_view/helpers/sanitize_helper.rb
+++ b/actionpack/lib/action_view/helpers/sanitize_helper.rb
@@ -78,7 +78,7 @@ module ActionView
# strip_tags("<div id='top-bar'>Welcome to my website!</div>")
# # => Welcome to my website!
def strip_tags(html)
- self.class.full_sanitizer.sanitize(html).try(:html_safe)
+ self.class.full_sanitizer.sanitize(html)
end
# Strips all link tags from +text+ leaving just the link text.