Feature #859
closed
- Assignee set to akr (Akira Tanaka)
=begin
Originally reported on:
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-linux]
=end
=begin
I quote from [ruby-core:21234] :
But first of all the HTTP --> HTTPS redirection should be still considered ok.
Regarding the other way, well, the Referer should be set to the URL that redirected us. I believe this is not currently implemented. As for cookies, AFAIK there's no direct support for cookies in Net::HTTP nor open-uri, so if the programmer wants to use cookies, she has to set it manually via a "Cookie" header. And since no support for cookies as per RFC2109 is in place, no security measures are implemented. So for example one URL can redirect to other (also HTTP) URL, which is in another domain, and the cookie (actually header) will be sent anyway. So the fact that the "secure" attribute of cookie is unsupported diminishes in light of this. Therefor I think that redirecting from HTTPS to HTTP should be considered ok too.
=end
=begin
Hi,
At Tue, 3 Feb 2009 17:53:36 +0900,
Roman Shterenzon wrote in [ruby-core:21797]:
I quote from [ruby-core:21234] :
But first of all the HTTP --> HTTPS redirection should be still considered ok.
Then your previous patch is wrong.
Index: lib/open-uri.rb
--- lib/open-uri.rb (revision 24735)
+++ lib/open-uri.rb (working copy)
@@ -241,5 +241,5 @@ module OpenURI
# However this is ad hoc. It should be extensible/configurable.
uri1.scheme.downcase == uri2.scheme.downcase ||
- (/\A(?:http|ftp)\z/i =~ uri1.scheme && /\A(?:http|ftp)\z/i =~ uri2.scheme)
- (/\A(?:http|ftp)\z/i =~ uri1.scheme && /\A(?:https?|ftp)\z/i =~ uri2.scheme)
end
--
Nobu Nakada
=end
- Status changed from Open to Closed
Why was this closed? This bug is still present in trunk. A patch was reverted in r21381, but it was not the patch that Nobuyoshi has proposed, and there was no indication as to why it was reverted (my guess is because it allowed https -> http redirection).
- Status changed from Closed to Assigned
- Priority changed from 3 to Normal
- Target version set to 1.9.3
Tanaka-san, please handle this.
Akr, I think we agreed that http -> https redirection is OK. If you don't like ad-hoc change for 1.9.3, I can do that uglish thing instead of you. :) Do you mind if I'd do that?
- Target version changed from 1.9.3 to 2.0.0
I'd like generic solution. Especially because open-uri doesn't provide a way to specify headers for each request for redirection.
- Tracker changed from Bug to Feature
- Target version changed from 2.0.0 to 2.6
- Status changed from Assigned to Closed
Applied in changeset r56085.
lib/open-uri.rb: Allow http to https redirection.
- lib/open-uri.rb: Allow http to https redirection.
Note that https to http is still forbidden.
[ruby-core:20485] [Feature #859] by Roman Shterenzon.
Also available in: Atom
PDF