2013-11-06 07:10:59 -05:00
|
|
|
# 1. Rename this file to rack_attack.rb
|
|
|
|
# 2. Review the paths_to_be_protected and add any other path you need protecting
|
2013-09-26 16:40:55 -04:00
|
|
|
#
|
2015-06-11 09:11:37 -04:00
|
|
|
# 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
|
2013-09-26 16:40:55 -04:00
|
|
|
|
|
|
|
paths_to_be_protected = [
|
2015-11-25 11:18:44 -05:00
|
|
|
"#{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",
|
2016-05-02 11:22:38 -04:00
|
|
|
"#{Rails.application.config.relative_url_root}/unsubscribes/",
|
|
|
|
"#{Rails.application.config.relative_url_root}/import/github/personal_access_token"
|
2014-08-21 11:59:27 -04:00
|
|
|
|
2013-09-26 16:40:55 -04:00
|
|
|
]
|
2013-11-21 10:04:23 -05:00
|
|
|
|
2014-08-22 03:49:50 -04:00
|
|
|
# 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)}/ })
|
2016-04-25 20:08:10 -04:00
|
|
|
rack_attack_enabled = Gitlab.config.rack_attack.git_basic_auth['enabled']
|
2014-08-21 11:59:27 -04:00
|
|
|
|
2016-04-25 20:08:10 -04:00
|
|
|
unless Rails.env.test? || !rack_attack_enabled
|
2013-11-25 11:24:45 -05:00
|
|
|
Rack::Attack.throttle('protected paths', limit: 10, period: 60.seconds) do |req|
|
2014-08-22 03:49:50 -04:00
|
|
|
if req.post? && req.path =~ paths_regex
|
|
|
|
req.ip
|
2014-08-21 11:59:27 -04:00
|
|
|
end
|
2013-11-21 10:04:23 -05:00
|
|
|
end
|
2013-09-26 16:40:55 -04:00
|
|
|
end
|