mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Sanitize the URLs passed to redirect_to to prevent a potential response splitting attack.
CGI.rb and mongrel don't do any sanitization of the contents of HTTP headers, so care needs to be taken.
This commit is contained in:
@@ -114,8 +114,8 @@ module ActionController # :nodoc:
|
||||
|
||||
def redirect(url, status)
|
||||
self.status = status
|
||||
self.location = url
|
||||
self.body = "<html><body>You are being <a href=\"#{url}\">redirected</a>.</body></html>"
|
||||
self.location = url.gsub(/[\r\n]/, '')
|
||||
self.body = "<html><body>You are being <a href=\"#{CGI.escapeHTML(url)}\">redirected</a>.</body></html>"
|
||||
end
|
||||
|
||||
def sending_file?
|
||||
|
||||
Reference in New Issue
Block a user