DoS Protection Service for Java
The App Engine Denial of Service (DoS) Protection Service enables you to protect your application from running out of quota when subjected to denial of service attacks or similar forms of abuse. You can blacklist IP addresses or subnets, and requests routed from those addresses or subnets will be dropped before your application code is called. No resource allocations, billed or otherwise, are consumed for these requests.
Do not use this service for security. It is designed for quantitative abuse prevention, such as preventing DoS attacks, only. Some requests from blacklisted users may still get through to your application.
About dos.xml
Limits
Uploading DoS configuration
By default, App Engine serves a generic error page to blacklisted addresses. You can configure your app to serve a custom response instead. For details, see Custom Error Responses.
About dos.xml
A dos.xml
file in the WEB-INF
directory of your application (alongside appengine-web.xml
) configures DoS Protection Service blacklists for your application. The following is an example dos.xml
file:
For an XSD describing the format, check the file docs/dos.xsd
in the SDK.
A dos.xml
file consists of a number of blacklist entries. A blacklist entry has a <subnet>
, and can optionally specify a <description>
. The <subnet>
is any valid IPv4 or IPv6 subnet in CIDR notation.
Limits
You may define a maximum of 100 blacklist entries in your configuration file. Uploading a configuration file with more than 100 entries will fail.
Uploading DoS configuration
You can use AppCfg
to upload DoS configs. When you upload your application to App Engine using AppCfg update
, the DoS Protection Service is updated with the contents of dos.xml
.
You can update just the DoS configuration without uploading the rest of the application using the following command:
To delete all blacklist entries, change the dos.xml
file to just contain: