Project

attacked

0.0
No release in over a year
Manage a persisted list of blocked IP addresses and block these requests
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 5.1.0
 Project Readme

Attacked

Attacked allows you to manage a list of blocked IP addresses in your Rails application. Attacked stores a list of blocked IP addresses in your database and also caches these in your Rails cache for fast lookups.

Attacked allows you the convenience to block an IP from your admin area or Rails console without deploying your application.

You can use Attacked with rack-attack to manage a blocklist. Attacked caches blocked IP addresses so that there is minimal overhead to your requests.

Installation

Add this line to your application's Gemfile:

gem 'attacked'

And then execute:

$ bundle install

Copy the migrations from attacked to your application:

$ bin/rails attacked:install:migrations

Migrate your application:

$ bin/rails db:migrate

Install rack-attack as usual and setup a blocklist:

# Block attacks from IPs
# To block an IP: Attacked::BlockedIpAddress.block("1.2.3.4")
# To unblock an IP: Attacked::BlockedIpAddress.unblock("1.2.3.4")
blocklist("block ips") do |req|
  Attacked::BlockedIpAddress.blocked?(req.ip)
end

Please note that Attacked defaults to using the Rails.cache when caching blocked IP addresses. As such you must setup a cache store for your application.

Usage

To block an IP:

Attacked::BlockedIpAddress.block("1.2.3.4")

To unblock an IP:

Attacked::BlockedIpAddress.unblock("1.2.3.4")

To check if an IP is blocked:

Attacked::BlockedIpAddress.blocked?("1.2.3.4")

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.