
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
open_uri_redirections
Advanced tools
This gem applies a patch to OpenURI to optionally allow redirections from HTTP to HTTPS, or from HTTPS to HTTP.
This is based on this patch and this gem, and modified to allow redirections in both directions.
Here is the problem it tries to solve:
$ irb
1.9.2p320 :001 > require 'open-uri'
=> true
1.9.2p320 :002 > open('http://github.com')
RuntimeError: redirection forbidden: http://github.com -> https://github.com/
And here is how you can use this patch to follow the redirections:
$ irb
1.9.2p320 :001 > require 'open-uri'
=> true
> require 'open_uri_redirections'
=> true
1.9.2p320 :002 > open('http://github.com', :allow_redirections => :safe)
=> #<File:/var/folders/...>
The patch contained in this gem adds the :allow_redirections option to OpenURI#open
:
:allow_redirections => :safe
will allow HTTP => HTTPS redirections.:allow_redirections => :all
will allow HTTP => HTTPS redirections and HTTPS => HTTP redirections.Before using this gem, read this:
https://gist.github.com/1271420
https://bugs.ruby-lang.org/issues/3719
https://github.com/ruby/ruby/blob/trunk/lib/open-uri.rb
https://github.com/obfusk/open_uri_w_redirect_to_https
Use it at your own risk!
Add this line to your application's Gemfile:
gem 'open_uri_redirections'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install open_uri_redirections
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that open_uri_redirections demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.