Merge pull request #290 from travis-ci/igor-update-rack-attack
Update rack-attack to 5.0.0.beta1
This commit is contained in:
commit
ff7d1dbfdd
2
Gemfile
2
Gemfile
|
@ -21,7 +21,7 @@ gem 'sentry-raven'
|
||||||
gem 'yard-sinatra', github: 'rkh/yard-sinatra'
|
gem 'yard-sinatra', github: 'rkh/yard-sinatra'
|
||||||
gem 'rack-contrib'
|
gem 'rack-contrib'
|
||||||
gem 'rack-cache', github: 'rtomayko/rack-cache'
|
gem 'rack-cache', github: 'rtomayko/rack-cache'
|
||||||
gem 'rack-attack'
|
gem 'rack-attack', '5.0.0.beta1'
|
||||||
gem 'gh'
|
gem 'gh'
|
||||||
gem 'bunny', '~> 0.8.0'
|
gem 'bunny', '~> 0.8.0'
|
||||||
gem 'dalli'
|
gem 'dalli'
|
||||||
|
|
|
@ -266,7 +266,7 @@ GEM
|
||||||
pusher-signature (~> 0.1.8)
|
pusher-signature (~> 0.1.8)
|
||||||
pusher-signature (0.1.8)
|
pusher-signature (0.1.8)
|
||||||
rack (1.4.7)
|
rack (1.4.7)
|
||||||
rack-attack (4.4.1)
|
rack-attack (5.0.0.beta1)
|
||||||
rack
|
rack
|
||||||
rack-contrib (1.4.0)
|
rack-contrib (1.4.0)
|
||||||
git-version-bump (~> 0.15)
|
git-version-bump (~> 0.15)
|
||||||
|
@ -392,7 +392,7 @@ DEPENDENCIES
|
||||||
mustermann!
|
mustermann!
|
||||||
netaddr
|
netaddr
|
||||||
pry
|
pry
|
||||||
rack-attack
|
rack-attack (= 5.0.0.beta1)
|
||||||
rack-cache!
|
rack-cache!
|
||||||
rack-contrib
|
rack-contrib
|
||||||
rake (~> 0.9.2)
|
rake (~> 0.9.2)
|
||||||
|
|
|
@ -114,7 +114,7 @@ class Travis::Api::App
|
||||||
# access token and user payload to the parent window via postMessage.
|
# access token and user payload to the parent window via postMessage.
|
||||||
#
|
#
|
||||||
# However, the endpoint to send the payload to has to be explicitely
|
# However, the endpoint to send the payload to has to be explicitely
|
||||||
# whitelisted in production, as this is endpoint is only meant to be used
|
# safelisted in production, as this is endpoint is only meant to be used
|
||||||
# with the official Travis CI client at the moment.
|
# with the official Travis CI client at the moment.
|
||||||
#
|
#
|
||||||
# Example usage:
|
# Example usage:
|
||||||
|
@ -408,7 +408,7 @@ __END__
|
||||||
|
|
||||||
@@ invalid_target
|
@@ invalid_target
|
||||||
<script>
|
<script>
|
||||||
console.log('refusing to send a token to <%= target_origin.inspect %>, not whitelisted!');
|
console.log('refusing to send a token to <%= target_origin.inspect %>, not safelisted!');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ common
|
@@ common
|
||||||
|
|
|
@ -34,34 +34,36 @@ class Rack::Attack
|
||||||
|
|
||||||
GITHUB_CIDR = NetAddr::CIDR.create('192.30.252.0/22')
|
GITHUB_CIDR = NetAddr::CIDR.create('192.30.252.0/22')
|
||||||
|
|
||||||
whitelist('safelist build status images') do |request|
|
safelist('safelist build status images') do |request|
|
||||||
/\.(png|svg)$/.match(request.path)
|
/\.(png|svg)$/.match(request.path)
|
||||||
end
|
end
|
||||||
|
|
||||||
# https://help.github.com/articles/what-ip-addresses-does-github-use-that-i-should-whitelist/
|
# https://help.github.com/articles/what-ip-addresses-does-github-use-that-i-should-safelist/
|
||||||
whitelist('safelist anything coming from github') do |request|
|
safelist('safelist anything coming from github') do |request|
|
||||||
request.ip && GITHUB_CIDR.contains?(request.ip)
|
request.ip && GITHUB_CIDR.contains?(request.ip)
|
||||||
end
|
end
|
||||||
|
|
||||||
####
|
####
|
||||||
# Whitelisted IP addresses
|
# Whitelisted IP addresses
|
||||||
whitelist('whitelist client requesting from redis') do |request|
|
safelist('safelist client requesting from redis') do |request|
|
||||||
Travis.redis.sismember(:api_whitelisted_ips, request.ip)
|
# TODO: deprecate :api_whitelisted_ips in favour of api_safelisted_ips
|
||||||
|
Travis.redis.sismember(:api_whitelisted_ips, request.ip) || Travis.redis.sismember(:api_safelisted_ips, request.ip)
|
||||||
end
|
end
|
||||||
|
|
||||||
####
|
####
|
||||||
# Ban based on: IP address
|
# Ban based on: IP address
|
||||||
# Ban time: indefinite
|
# Ban time: indefinite
|
||||||
# Ban after: manually banned
|
# Ban after: manually banned
|
||||||
blacklist('block client requesting from redis') do |request|
|
blocklist('block client requesting from redis') do |request|
|
||||||
Travis.redis.sismember(:api_blacklisted_ips, request.ip)
|
# TODO: deprecate :api_blacklisted_ips in favour of api_blocklisted_ips
|
||||||
|
Travis.redis.sismember(:api_blacklisted_ips, request.ip) || Travis.redis.sismember(:api_blocklisted_ips, request.ip)
|
||||||
end
|
end
|
||||||
|
|
||||||
####
|
####
|
||||||
# Ban based on: IP address or access token
|
# Ban based on: IP address or access token
|
||||||
# Ban time: 5 hours
|
# Ban time: 5 hours
|
||||||
# Ban after: 10 POST requests within five minutes to /auth/github
|
# Ban after: 10 POST requests within five minutes to /auth/github
|
||||||
blacklist('hammering /auth/github') do |request|
|
blocklist('hammering /auth/github') do |request|
|
||||||
Rack::Attack::Allow2Ban.filter(request.identifier, maxretry: 2, findtime: 5.minutes, bantime: bantime(5.hours)) do
|
Rack::Attack::Allow2Ban.filter(request.identifier, maxretry: 2, findtime: 5.minutes, bantime: bantime(5.hours)) do
|
||||||
request.post? and request.path == '/auth/github'
|
request.post? and request.path == '/auth/github'
|
||||||
end
|
end
|
||||||
|
@ -71,7 +73,7 @@ class Rack::Attack
|
||||||
# Ban based on: IP address or access token
|
# Ban based on: IP address or access token
|
||||||
# Ban time: 1 hour
|
# Ban time: 1 hour
|
||||||
# Ban after: 10 POST requests within 30 seconds
|
# Ban after: 10 POST requests within 30 seconds
|
||||||
blacklist('spamming with POST requests') do |request|
|
blocklist('spamming with POST requests') do |request|
|
||||||
Rack::Attack::Allow2Ban.filter(request.identifier, maxretry: 10, findtime: 30.seconds, bantime: bantime(1.hour)) do
|
Rack::Attack::Allow2Ban.filter(request.identifier, maxretry: 10, findtime: 30.seconds, bantime: bantime(1.hour)) do
|
||||||
request.post? and not POST_SAFELIST.include? request.path
|
request.post? and not POST_SAFELIST.include? request.path
|
||||||
end
|
end
|
||||||
|
|
|
@ -29,7 +29,7 @@ module Travis::API::V3
|
||||||
result = service.run
|
result = service.run
|
||||||
metrics.tick(:service)
|
metrics.tick(:service)
|
||||||
|
|
||||||
env_params.each_key { |key| result.ignored_param(key, reason: "not whitelisted".freeze) unless filtered.include?(key) }
|
env_params.each_key { |key| result.ignored_param(key, reason: "not safelisted".freeze) unless filtered.include?(key) }
|
||||||
response = render(result, env_params, env)
|
response = render(result, env_params, env)
|
||||||
|
|
||||||
metrics.tick(:renderer)
|
metrics.tick(:renderer)
|
||||||
|
|
|
@ -6,7 +6,7 @@ describe Rack::Attack do
|
||||||
}
|
}
|
||||||
|
|
||||||
it 'should be safelisted' do
|
it 'should be safelisted' do
|
||||||
expect(Rack::Attack.whitelisted?(request)).to be_truthy
|
expect(Rack::Attack.safelisted?(request)).to be_truthy
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ describe Rack::Attack do
|
||||||
}
|
}
|
||||||
|
|
||||||
it 'should be safelisted' do
|
it 'should be safelisted' do
|
||||||
expect(Rack::Attack.whitelisted?(request)).to be_truthy
|
expect(Rack::Attack.safelisted?(request)).to be_truthy
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ describe Rack::Attack do
|
||||||
}
|
}
|
||||||
|
|
||||||
it 'should not be safelisted' do
|
it 'should not be safelisted' do
|
||||||
expect(Rack::Attack.whitelisted?(request)).to be_falsy
|
expect(Rack::Attack.safelisted?(request)).to be_falsy
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -167,7 +167,7 @@ describe Travis::API::V3::Services::Owner::Find, set_app: true do
|
||||||
"avatar_url" => nil,
|
"avatar_url" => nil,
|
||||||
"@warnings" => [{
|
"@warnings" => [{
|
||||||
"@type" => "warning",
|
"@type" => "warning",
|
||||||
"message" => "query parameter organization.id not whitelisted, ignored",
|
"message" => "query parameter organization.id not safelisted, ignored",
|
||||||
"warning_type" => "ignored_parameter",
|
"warning_type" => "ignored_parameter",
|
||||||
"parameter" => "organization.id"}]
|
"parameter" => "organization.id"}]
|
||||||
}}
|
}}
|
||||||
|
@ -254,7 +254,7 @@ describe Travis::API::V3::Services::Owner::Find, set_app: true do
|
||||||
"synced_at" => nil,
|
"synced_at" => nil,
|
||||||
"@warnings" => [{
|
"@warnings" => [{
|
||||||
"@type" => "warning",
|
"@type" => "warning",
|
||||||
"message" => "query parameter user.id not whitelisted, ignored",
|
"message" => "query parameter user.id not safelisted, ignored",
|
||||||
"warning_type" => "ignored_parameter",
|
"warning_type" => "ignored_parameter",
|
||||||
"parameter" => "user.id"}]
|
"parameter" => "user.id"}]
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -129,7 +129,7 @@ describe Job do
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'removes addons items which are not whitelisted' do
|
it 'removes addons items which are not safelisted' do
|
||||||
job = Job.new(repository: repo)
|
job = Job.new(repository: repo)
|
||||||
config = { rvm: '1.8.7',
|
config = { rvm: '1.8.7',
|
||||||
addons: { sauce_connect: true, firefox: '22.0' },
|
addons: { sauce_connect: true, firefox: '22.0' },
|
||||||
|
@ -328,7 +328,7 @@ describe Job do
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'removes addons items which are not whitelisted' do
|
it 'removes addons items which are not safelisted' do
|
||||||
config = { rvm: '1.8.7',
|
config = { rvm: '1.8.7',
|
||||||
addons: {
|
addons: {
|
||||||
sauce_connect: {
|
sauce_connect: {
|
||||||
|
|
4
vendor/travis-core/lib/travis/model/job.rb
vendored
4
vendor/travis-core/lib/travis/model/job.rb
vendored
|
@ -14,7 +14,7 @@ class Job < Travis::Model
|
||||||
require 'travis/model/job/test'
|
require 'travis/model/job/test'
|
||||||
require 'travis/model/env_helpers'
|
require 'travis/model/env_helpers'
|
||||||
|
|
||||||
WHITELISTED_ADDONS = %w(
|
SAFELISTED_ADDONS = %w(
|
||||||
apt
|
apt
|
||||||
apt_packages
|
apt_packages
|
||||||
apt_sources
|
apt_sources
|
||||||
|
@ -167,7 +167,7 @@ class Job < Travis::Model
|
||||||
|
|
||||||
def delete_addons(config)
|
def delete_addons(config)
|
||||||
if config[:addons].is_a?(Hash)
|
if config[:addons].is_a?(Hash)
|
||||||
config[:addons].keep_if { |key, _| WHITELISTED_ADDONS.include? key.to_s }
|
config[:addons].keep_if { |key, _| SAFELISTED_ADDONS.include? key.to_s }
|
||||||
else
|
else
|
||||||
config.delete(:addons)
|
config.delete(:addons)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user