35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
#
|
|
# Adds logging for all Rack Attack blocks and throttling events.
|
|
|
|
ActiveSupport::Notifications.subscribe(/rack_attack/) do |name, start, finish, request_id, payload|
|
|
req = payload[:request]
|
|
|
|
if [:throttle, :blocklist].include? req.env['rack.attack.match_type']
|
|
rack_attack_info = {
|
|
message: 'Rack_Attack',
|
|
env: req.env['rack.attack.match_type'],
|
|
remote_ip: req.ip,
|
|
request_method: req.request_method,
|
|
path: req.fullpath
|
|
}
|
|
|
|
throttles_with_user_information = [
|
|
:throttle_authenticated_api,
|
|
:throttle_authenticated_web,
|
|
:throttle_authenticated_protected_paths_api,
|
|
:throttle_authenticated_protected_paths_web
|
|
]
|
|
|
|
if throttles_with_user_information.include? req.env['rack.attack.matched'].to_sym
|
|
user_id = req.env['rack.attack.match_discriminator']
|
|
user = User.find_by(id: user_id)
|
|
|
|
rack_attack_info[:throttle_type] = req.env['rack.attack.matched']
|
|
rack_attack_info[:user_id] = user_id
|
|
rack_attack_info[:username] = user.username unless user.nil?
|
|
end
|
|
|
|
Gitlab::AuthLogger.error(rack_attack_info)
|
|
end
|
|
end
|