Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)



DoS Protection Service for Python

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.

  1. About dos.yaml
  2. Limits
  3. Uploading DoS configuration
  4. Viewing uploaded DoS configuration in the Administration Console
  5. Viewing top users in the Administration Console

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.yaml

A dos.yaml file in the root directory of your application (alongside app.yaml ) configures DoS Protection Service blacklists for your application. The following is an example dos.yaml file:

blacklist:
- subnet: 1.2.3.4
  description: a single IP address
- subnet: 1.2.3.4/24
  description: an IPv4 subnet
- subnet: abcd::123:4567
  description: an IPv6 address
- subnet: abcd::123:4567/48
  description: an IPv6 subnet

The syntax of dos.yaml is the YAML format. For more information about this syntax, see the YAML website .

A dos.yaml file consists of a number of blacklist entries. A blacklist entry has a subnet , and can optionally specify a description . The description will be visible in the Admin Console. 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.py to upload DoS configs. When you upload your application to App Engine using appcfg.py update , the DoS Protection Service is updated with the contents of dos.yaml . The new config will be viewable using the Administration Console straight away, but may take a few minutes to take effect. You can update just the DoS configuration without uploading the rest of the application using appcfg.py update_dos .

To delete all blacklist entries, change the dos.yaml file to just contain:

blacklist:

Viewing uploaded DoS configuration in the Administration Console

The Administration Console allows you to view your current DoS configuration, if you have uploaded one. Select the "Blacklist" link from the side menu, and you should see a table of blacklisted subnets/IP addresses and their associated descriptions from your configuration file.

Viewing top users in the Administration Console

The Administration Console also allows you to view the top users that have recently been hitting your site, even if you haven't uploaded a DoS configuration. Select the "Blacklist" link from the side menu, and you should see a table of the top IP addresses that have been hitting your application and how many requests have been recorded. It will be below the table of blacklists, if any. IP addresses that you have blacklisted will not show up in this table.

Authentication required

You need to be signed in with Google+ to do that.

Signing you in...

Google Developers needs your permission to do that.