rack_attack.rb.example 1.1 KB
Newer Older
M
Marin Jankovski 已提交
1 2
# 1. Rename this file to rack_attack.rb
# 2. Review the paths_to_be_protected and add any other path you need protecting
3
#
4
# If you change this file in a Merge Request, please also create a Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
5 6 7 8

paths_to_be_protected = [
  "#{Rails.application.config.relative_url_root}/users/password",
  "#{Rails.application.config.relative_url_root}/users/sign_in",
9 10
  "#{Rails.application.config.relative_url_root}/api/#{API::API.version}/session.json",
  "#{Rails.application.config.relative_url_root}/api/#{API::API.version}/session",
M
Marin Jankovski 已提交
11
  "#{Rails.application.config.relative_url_root}/users",
M
Marin Jankovski 已提交
12
  "#{Rails.application.config.relative_url_root}/users/confirmation",
13
  "#{Rails.application.config.relative_url_root}/unsubscribes/"
M
Marin Jankovski 已提交
14

15
]
M
Marin Jankovski 已提交
16

17 18 19
# Create one big regular expression that matches strings starting with any of
# the paths_to_be_protected.
paths_regex = Regexp.union(paths_to_be_protected.map { |path| /\A#{Regexp.escape(path)}/ })
M
Marin Jankovski 已提交
20

M
Marin Jankovski 已提交
21
unless Rails.env.test?
22
  Rack::Attack.throttle('protected paths', limit: 10, period: 60.seconds) do |req|
23 24
    if req.post? && req.path =~ paths_regex
      req.ip
M
Marin Jankovski 已提交
25
    end
M
Marin Jankovski 已提交
26
  end
27
end