2017-04-18 21:29:14 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-09 14:12:10 +00:00
|
|
|
require 'doorkeeper/grape/authorization_decorator'
|
|
|
|
|
2016-03-19 13:57:30 +00:00
|
|
|
class Rack::Attack
|
2017-12-09 13:20:02 +00:00
|
|
|
class Request
|
|
|
|
def authenticated_token
|
2023-07-12 09:08:51 +01:00
|
|
|
return @authenticated_token if defined?(@authenticated_token)
|
2017-12-09 13:20:02 +00:00
|
|
|
|
2023-07-12 09:08:51 +01:00
|
|
|
@authenticated_token = Doorkeeper::OAuth::Token.authenticate(
|
2017-12-09 13:20:02 +00:00
|
|
|
Doorkeeper::Grape::AuthorizationDecorator.new(self),
|
|
|
|
*Doorkeeper.configuration.access_token_methods
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-05-27 20:57:49 +01:00
|
|
|
def remote_ip
|
|
|
|
@remote_ip ||= (@env["action_dispatch.remote_ip"] || ip).to_s
|
|
|
|
end
|
|
|
|
|
2022-11-14 19:26:31 +00:00
|
|
|
def throttleable_remote_ip
|
|
|
|
@throttleable_remote_ip ||= begin
|
|
|
|
ip = IPAddr.new(remote_ip)
|
|
|
|
|
|
|
|
if ip.ipv6?
|
|
|
|
ip.mask(64)
|
|
|
|
else
|
|
|
|
ip
|
|
|
|
end
|
|
|
|
end.to_s
|
|
|
|
end
|
|
|
|
|
2017-12-09 13:20:02 +00:00
|
|
|
def authenticated_user_id
|
|
|
|
authenticated_token&.resource_owner_id
|
|
|
|
end
|
|
|
|
|
2023-02-01 23:07:49 +00:00
|
|
|
def authenticated_token_id
|
|
|
|
authenticated_token&.id
|
|
|
|
end
|
|
|
|
|
2017-12-09 13:20:02 +00:00
|
|
|
def unauthenticated?
|
|
|
|
!authenticated_user_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def api_request?
|
|
|
|
path.start_with?('/api')
|
|
|
|
end
|
|
|
|
|
2022-11-14 19:26:31 +00:00
|
|
|
def path_matches?(other_path)
|
|
|
|
/\A#{Regexp.escape(other_path)}(\..*)?\z/ =~ path
|
|
|
|
end
|
|
|
|
|
2017-12-09 13:20:02 +00:00
|
|
|
def web_request?
|
|
|
|
!api_request?
|
|
|
|
end
|
2019-05-27 20:57:49 +01:00
|
|
|
|
|
|
|
def paging_request?
|
|
|
|
params['page'].present? || params['min_id'].present? || params['max_id'].present? || params['since_id'].present?
|
|
|
|
end
|
2017-12-09 13:20:02 +00:00
|
|
|
end
|
|
|
|
|
2017-04-29 23:27:49 +01:00
|
|
|
Rack::Attack.safelist('allow from localhost') do |req|
|
2019-05-27 20:57:49 +01:00
|
|
|
req.remote_ip == '127.0.0.1' || req.remote_ip == '::1'
|
2017-04-29 23:27:49 +01:00
|
|
|
end
|
|
|
|
|
2020-10-12 15:33:49 +01:00
|
|
|
Rack::Attack.blocklist('deny from blocklist') do |req|
|
|
|
|
IpBlock.blocked?(req.remote_ip)
|
|
|
|
end
|
|
|
|
|
2023-02-01 23:07:49 +00:00
|
|
|
throttle('throttle_authenticated_api', limit: 1_500, period: 5.minutes) do |req|
|
2019-02-14 05:27:54 +00:00
|
|
|
req.authenticated_user_id if req.api_request?
|
2017-04-18 21:29:14 +01:00
|
|
|
end
|
|
|
|
|
2023-02-01 23:07:49 +00:00
|
|
|
throttle('throttle_per_token_api', limit: 300, period: 5.minutes) do |req|
|
|
|
|
req.authenticated_token_id if req.api_request?
|
|
|
|
end
|
|
|
|
|
2019-05-27 20:57:49 +01:00
|
|
|
throttle('throttle_unauthenticated_api', limit: 300, period: 5.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.api_request? && req.unauthenticated?
|
2017-04-18 21:29:14 +01:00
|
|
|
end
|
|
|
|
|
2019-02-14 05:27:54 +00:00
|
|
|
throttle('throttle_api_media', limit: 30, period: 30.minutes) do |req|
|
2023-06-06 13:50:51 +01:00
|
|
|
req.authenticated_user_id if req.post? && req.path.match?(%r{\A/api/v\d+/media\z}i)
|
2018-05-03 16:32:00 +01:00
|
|
|
end
|
|
|
|
|
2019-09-13 15:02:52 +01:00
|
|
|
throttle('throttle_media_proxy', limit: 30, period: 10.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.path.start_with?('/media_proxy')
|
2019-04-07 03:26:43 +01:00
|
|
|
end
|
|
|
|
|
2018-12-24 18:12:38 +00:00
|
|
|
throttle('throttle_api_sign_up', limit: 5, period: 30.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.post? && req.path == '/api/v1/accounts'
|
2019-05-27 20:57:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_authenticated_paging', limit: 300, period: 15.minutes) do |req|
|
|
|
|
req.authenticated_user_id if req.paging_request?
|
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_unauthenticated_paging', limit: 300, period: 15.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.paging_request? && req.unauthenticated?
|
2018-12-24 18:12:38 +00:00
|
|
|
end
|
|
|
|
|
2023-06-06 13:50:51 +01:00
|
|
|
API_DELETE_REBLOG_REGEX = %r{\A/api/v1/statuses/\d+/unreblog\z}
|
|
|
|
API_DELETE_STATUS_REGEX = %r{\A/api/v1/statuses/\d+\z}
|
2019-02-14 05:27:54 +00:00
|
|
|
|
|
|
|
throttle('throttle_api_delete', limit: 30, period: 30.minutes) do |req|
|
2021-01-22 09:09:08 +00:00
|
|
|
req.authenticated_user_id if (req.post? && req.path.match?(API_DELETE_REBLOG_REGEX)) || (req.delete? && req.path.match?(API_DELETE_STATUS_REGEX))
|
2019-02-14 05:27:54 +00:00
|
|
|
end
|
|
|
|
|
2020-07-07 14:26:39 +01:00
|
|
|
throttle('throttle_sign_up_attempts/ip', limit: 25, period: 5.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.post? && req.path_matches?('/auth')
|
2020-07-07 14:26:39 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_password_resets/ip', limit: 25, period: 5.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.post? && req.path_matches?('/auth/password')
|
2020-07-07 14:26:39 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_password_resets/email', limit: 5, period: 30.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.params.dig('user', 'email').presence if req.post? && req.path_matches?('/auth/password')
|
2020-07-07 14:26:39 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_email_confirmations/ip', limit: 25, period: 5.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.post? && (req.path_matches?('/auth/confirmation') || req.path == '/api/v1/emails/confirmations')
|
2020-07-07 14:26:39 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_email_confirmations/email', limit: 5, period: 30.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
if req.post? && req.path_matches?('/auth/password')
|
2021-03-01 17:39:47 +00:00
|
|
|
req.params.dig('user', 'email').presence
|
|
|
|
elsif req.post? && req.path == '/api/v1/emails/confirmations'
|
|
|
|
req.authenticated_user_id
|
|
|
|
end
|
2020-07-07 14:26:39 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_login_attempts/ip', limit: 25, period: 5.minutes) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.throttleable_remote_ip if req.post? && req.path_matches?('/auth/sign_in')
|
2020-07-07 14:26:39 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
throttle('throttle_login_attempts/email', limit: 25, period: 1.hour) do |req|
|
2022-11-14 19:26:31 +00:00
|
|
|
req.session[:attempt_user_id] || req.params.dig('user', 'email').presence if req.post? && req.path_matches?('/auth/sign_in')
|
2016-09-24 12:53:54 +01:00
|
|
|
end
|
|
|
|
|
2022-03-12 08:23:53 +00:00
|
|
|
self.throttled_responder = lambda do |request|
|
2016-10-22 18:38:47 +01:00
|
|
|
now = Time.now.utc
|
2022-03-12 08:23:53 +00:00
|
|
|
match_data = request.env['rack.attack.match_data']
|
2016-10-22 18:38:47 +01:00
|
|
|
|
|
|
|
headers = {
|
2023-10-03 14:24:12 +01:00
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'X-RateLimit-Limit' => match_data[:limit].to_s,
|
2016-10-22 18:38:47 +01:00
|
|
|
'X-RateLimit-Remaining' => '0',
|
2023-10-03 14:24:12 +01:00
|
|
|
'X-RateLimit-Reset' => (now + (match_data[:period] - (now.to_i % match_data[:period]))).iso8601(6),
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
|
|
|
|
2017-05-03 22:36:19 +01:00
|
|
|
[429, headers, [{ error: I18n.t('errors.429') }.to_json]]
|
2016-03-25 13:12:24 +00:00
|
|
|
end
|
2016-03-19 13:57:30 +00:00
|
|
|
end
|