
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Easy whitelist firewalling for Rails 3+4 route constraints
gem 'firewall_constraint'
Or:
gem install firewall_constraint
##Example
config/routes.rb:
get 'dummy/index' => 'dummy#index'
get 'dummy/blocked_by_inline' => 'dummy#blocked_by_inline', :constraints => FirewallConstraint.new
constraints FirewallConstraint.new do
get 'dummy/blocked_by_block' => 'dummy#blocked_by_block'
end
constraints FirewallConstraint.new(['127.0.0.1']) do
get 'dummy/blocked_by_dynamic' => 'dummy#blocked_by_dynamic'
end
constraints FirewallConstraint.new(Proc.new{['127.0.0.1']}) do
get 'dummy/blocked_by_proc'
end
##Configuration
Uses a config file if ips are not provided on instantiation
config/firewall_constraint.yml:
test:
- 10.0.0.0/8
##Advanced Usage
You can also do DB-based whitelisting using the Proc-based whitelisting method:
app/models/valid_ip.rb:
class ValidIp < ActiveRecord::Base
end
config/routes.rb:
constraints FirewallConstraint.new(Proc.new{ValidIp.pluck(:ip)}) do
get '/blah'
end
##Notes
Because parsing IPs with the IPAddress can take some time, this gem will only reparse ips returned by the Proc method if they have changed. Make sure you return your ips in the same order to avoid unnecessary reparsing.
FAQs
Unknown package
We found that firewall_constraint 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 new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.