Feature #859
closedopen-uri doesn't allow redirection to https
Description
=begin
Only ftp and http are checked in regex in OpenURI.redirectable? method.
Please see the attached patch.
=end
Files
Updated by shyouhei (Shyouhei Urabe) over 15 years ago
- Assignee set to akr (Akira Tanaka)
=begin
=end
Updated by romanbsd (Roman Shterenzon) over 15 years ago
=begin
Originally reported on:
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-linux]
=end
Updated by romanbsd (Roman Shterenzon) over 15 years ago
=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
Updated by nobu (Nobuyoshi Nakada) about 15 years ago
=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
Updated by shyouhei (Shyouhei Urabe) about 15 years ago
- Status changed from Open to Closed
=begin
=end
Updated by xaviershay (Xavier Shay) over 13 years ago
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).
Updated by naruse (Yui NARUSE) over 13 years ago
- Status changed from Closed to Assigned
- Priority changed from 3 to Normal
Updated by nahi (Hiroshi Nakamura) over 13 years ago
- Target version set to 1.9.3
Tanaka-san, please handle this.
Updated by nahi (Hiroshi Nakamura) over 13 years ago
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?
Updated by akr (Akira Tanaka) over 13 years ago
- 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.
Updated by jaimeiniesta (Jaime Iniesta) almost 12 years ago
I've packed this patch as a gem:
Updated by mame (Yusuke Endoh) almost 12 years ago
- Tracker changed from Bug to Feature
Updated by mame (Yusuke Endoh) almost 12 years ago
- Target version changed from 2.0.0 to 2.6
Updated by naruse (Yui NARUSE) about 10 years ago
FYI, HTML5 defines whether it should redirect or not:
http://www.w3.org/TR/2014/REC-html5-20141028/infrastructure.html#processing-model
Updated by cabo (Carsten Bormann) about 8 years ago
A typical example of the consequences of this 7-year old bug is https://github.com/cabo/kramdown-rfc2629/issues/27
Please wake up and fix this. Now.
Updated by akr (Akira Tanaka) about 8 years ago
- 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.