Problem: open-uri blocking redirection from http to https

  • Thread starter Xavier Del Castillo
  • Start date
X

Xavier Del Castillo

Hello,

I was working on a small script to verify the presence of an element
through a list of URL, some of these URLs have a redirections from http to
https, when the script crawled into them I got the following error:

/usr/lib/ruby/1.9.1/open-uri.rb:216:in `open_loop': redirection forbidden:
http://beta.carsdirect.com/auto-loans/finance-app ->
https://beta.carsdirect.com/auto-loans/finance-app (RuntimeError)

I understand that this is intentional, as per the comments on open-uri.rb

# This test is intended to forbid a redirection from http://... to
# file:///etc/passwd.
# https to http redirect is also forbidden intentionally.
# It avoids sending secure cookie or referer by non-secure HTTP
protocol.
# (RFC 2109 4.3.1, RFC 2965 3.3, RFC 2616 15.1.3)
# However this is ad hoc. It should be extensible/configurable.

This mentions that "https to http" redirects are forbidden intentionally,
but redirections from "http to https" are also blocked.

Is there a way to override this security check? currently I had to change the
following line in the library to allow "http to https" re-directions:

(/\A(?:http|ftp)\z/i =~ uri1.scheme && /\A(?:http|ftp)\z/i =~ uri2.scheme)

to

(/\A(?:http|ftp|https)\z/i =~ uri1.scheme && /\A(?:http|ftp|https)\z/i =~
uri2.scheme)

Thanks,
Xavi
 
T

Tanaka Akira

2011/2/18 Xavier Del Castillo said:
# However this is ad hoc. It should be extensible/configurable.

This mentions that "https to http" redirects are forbidden intentionally,
but redirections from "http to https" are also blocked.

Is there a way to override this security check? currently I had to change
the
following line in the library to allow "http to https" re-directions:

(/\A(?:http|ftp)\z/i =~ uri1.scheme && /\A(?:http|ftp)\z/i =~ uri2.scheme)

Currently it is not configurable (as the comment says) except monkey patching.

Maybe open-uri should have some hooks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

open-uri and redirection 1
Problem with open-uri 3
open - uri question 4
open-uri / net/http bug? 3
open-uri and ftp problem 4
open-uri and ftp path 2
Auto redirect http to https 1
Redirect From https to http 2

Members online

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,040
Latest member
papereejit

Latest Threads

Top