summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-09-13 14:44:19 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-09-13 14:44:19 +0000
commit9d8f75d2817f9307213d3edcf0cbfa22716914ee (patch)
tree9ec95395977ee96512e0946cc157495803b782d3
parente7a3b1f0930ae630837296744636843e887dff27 (diff)
downloadredmine-9d8f75d2817f9307213d3edcf0cbfa22716914ee.tar.gz
redmine-9d8f75d2817f9307213d3edcf0cbfa22716914ee.zip
Merged r14560 and r14561 (#19577).
git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14563 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/controllers/application_controller.rb34
-rw-r--r--test/functional/account_controller_test.rb12
2 files changed, 37 insertions, 9 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 6e2136836..8974c22a6 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -393,8 +393,8 @@ class ApplicationController < ActionController::Base
def redirect_back_or_default(default, options={})
back_url = params[:back_url].to_s
- if back_url.present? && valid_back_url?(back_url)
- redirect_to(back_url)
+ if back_url.present? && valid_url = validate_back_url(back_url)
+ redirect_to(valid_url)
return
elsif options[:referer]
redirect_to_referer_or default
@@ -404,8 +404,9 @@ class ApplicationController < ActionController::Base
false
end
- # Returns true if back_url is a valid url for redirection, otherwise false
- def valid_back_url?(back_url)
+ # Returns a validated URL string if back_url is a valid url for redirection,
+ # otherwise false
+ def validate_back_url(back_url)
if CGI.unescape(back_url).include?('..')
return false
end
@@ -416,19 +417,36 @@ class ApplicationController < ActionController::Base
return false
end
- if uri.host.present? && uri.host != request.host
+ [:scheme, :host, :port].each do |component|
+ if uri.send(component).present? && uri.send(component) != request.send(component)
+ return false
+ end
+ uri.send(:"#{component}=", nil)
+ end
+ # Always ignore basic user:password in the URL
+ uri.userinfo = nil
+
+ path = uri.to_s
+ # Ensure that the remaining URL starts with a slash, followed by a
+ # non-slash character or the end
+ if path !~ %r{\A/([^/]|\z)}
return false
end
- if uri.path.match(%r{/(login|account/register)})
+ if path.match(%r{/(login|account/register)})
return false
end
- if relative_url_root.present? && !uri.path.starts_with?(relative_url_root)
+ if relative_url_root.present? && !path.starts_with?(relative_url_root)
return false
end
- return true
+ return path
+ end
+ private :validate_back_url
+
+ def valid_back_url?(back_url)
+ !!validate_back_url(back_url)
end
private :valid_back_url?
diff --git a/test/functional/account_controller_test.rb b/test/functional/account_controller_test.rb
index e7b4c4fc1..8dfda0f7a 100644
--- a/test/functional/account_controller_test.rb
+++ b/test/functional/account_controller_test.rb
@@ -63,6 +63,7 @@ class AccountControllerTest < ActionController::TestCase
# request.uri is "test.host" in test environment
back_urls = [
'http://test.host/issues/show/1',
+ 'http://test.host/',
'/'
]
back_urls.each do |back_url|
@@ -108,7 +109,16 @@ class AccountControllerTest < ActionController::TestCase
'http://test.host/fake/issues',
'http://test.host/redmine/../fake',
'http://test.host/redmine/../fake/issues',
- 'http://test.host/redmine/%2e%2e/fake'
+ 'http://test.host/redmine/%2e%2e/fake',
+ '//test.foo/fake',
+ 'http://test.host//fake',
+ 'http://test.host/\n//fake',
+ '//bar@test.foo',
+ '//test.foo',
+ '////test.foo',
+ '@test.foo',
+ 'fake@test.foo',
+ '.test.foo'
]
back_urls.each do |back_url|
post :login, :username => 'jsmith', :password => 'jsmith', :back_url => back_url