logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git
commit: 80a944c882ddbca4d546d03503f0ccff15703484
parent 0c52654b5275fd0e7a0b544d3c6f895825e4a266
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Tue, 10 Apr 2018 01:20:18 +0200

Log rate limit hits (#7096)

Fix #7095

Diffstat:

Aconfig/initializers/rack_attack_logging.rb4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/config/initializers/rack_attack_logging.rb b/config/initializers/rack_attack_logging.rb @@ -0,0 +1,4 @@ +ActiveSupport::Notifications.subscribe('rack.attack') do |_name, _start, _finish, _request_id, req| + next unless [:throttle, :blacklist].include? req.env['rack.attack.match_type'] + Rails.logger.info("Rate limit hit (#{req.env['rack.attack.match_type']}): #{req.ip} #{req.request_method} #{req.fullpath}") +end