
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
= Divert
This project rocks and uses MIT-LICENSE.
Currently, in order to use: gem 'divert'
Install the migrations with rake divert:install:migrations rake db:migrate
Then add: divert_with :controller_name to the END of your routes file. The route added catches anything so needs to go last.
Finally add: class ApplicationController < ActionController::Base include Divert
rescue_from ActiveRecord::RecordNotFound do |exception|
divert(request.env['PATH_INFO'])
end
end
to your ApplicationController. The rescue_from ActiveRecord::RecordNotFound
is optional, but allows Divert to recover from Model.find(...)
errors with a redirect or 404.
It will not interfere with actions defined in the configured controller or view files that don't have an action defined. Cos it's nice like that.
By default, Divert will hit the database to find or create a record. To turn off this behaviour, add this following configuration code in your config/initializers/divert.rb
:
Divert.configure do |config|
config.save_to_db = false
end
FAQs
Unknown package
We found that divert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.