Created
June 7, 2014 13:18
-
-
Save ZephiroRB/9711b70e1c5c001d30f5 to your computer and use it in GitHub Desktop.
Rack Attack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. Rename this file to rack_attack.rb | |
# 2. Review the paths_to_be_protected and add any other path you need protecting | |
# | |
paths_to_be_protected = [ | |
"#{Rails.application.config.relative_url_root}/users/password", | |
"#{Rails.application.config.relative_url_root}/users/sign_in", | |
"#{Rails.application.config.relative_url_root}/api/#{API::API.version}/session.json", | |
"#{Rails.application.config.relative_url_root}/api/#{API::API.version}/session", | |
"#{Rails.application.config.relative_url_root}/users", | |
"#{Rails.application.config.relative_url_root}/users/confirmation" | |
] | |
unless Rails.env.test? | |
Rack::Attack.throttle('protected paths', limit: 10, period: 60.seconds) do |req| | |
req.ip if paths_to_be_protected.include?(req.path) && req.post? | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment