diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-08 12:08:31 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-08 12:08:31 +0000 |
commit | 2f5c5b1081fe544ecb9a71d8adf88e00f01f3732 (patch) | |
tree | b3c8a9358d2384ab10d7a448756f8c54b376215b /doc/security | |
parent | 33882b0ed118afb7239b76a074f9ab7cf90558f3 (diff) | |
download | gitlab-ce-2f5c5b1081fe544ecb9a71d8adf88e00f01f3732.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/security')
-rw-r--r-- | doc/security/rate_limits.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/security/rate_limits.md b/doc/security/rate_limits.md index af2c14be2cd..9e754cf1917 100644 --- a/doc/security/rate_limits.md +++ b/doc/security/rate_limits.md @@ -28,6 +28,25 @@ similarly mitigated by a rate limit. - [Protected paths](../user/admin_area/settings/protected_paths.md). - [Import/Export rate limits](../user/admin_area/settings/import_export_rate_limits.md). +## Non-configurable limits + +### Repository archives + +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/25750) in GitLab 12.9. + +There is a rate limit for [downloading repository archives](../api/repositories.md#get-file-archive), +which applies to the project and to the user initiating the download either through the UI or the API. + +The **rate limit** is 5 requests per minute per user. + +### Webhook Testing + +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/commit/35bc85c3ca093fee58d60dacdc9ed1fd9a15adec) in GitLab 13.4. + +There is a rate limit for [testing webhooks](../user/project/integrations/webhooks.md#testing-webhooks), which prevents abuse of the webhook functionality. + +The **rate limit** is 5 requests per minute per user. + ## Rack Attack initializer This method of rate limiting is cumbersome, but has some advantages. It allows |