Botnet Threat Feed
The Cloudflare DDoS Botnet Threat Feed is a threat intelligence feed for service providers (SPs) such as hosting providers and Internet service providers (ISPs) that provides information about their own IP addresses that have participated in HTTP DDoS attacks as observed from Cloudflare’s global network. The feed aims to help service providers stop the abuse and reduce DDoS attacks originating from within their networks.
Each offense is a mitigated HTTP request from the specific IP address. For example, if an IP has 3,000 offenses, it means that Cloudflare has mitigated 3,000 HTTP requests from that IP.
A service provider can only get information about IP addresses associated with their autonomous system numbers (ASNs). The affiliation of a service provider with their ASNs will be checked against PeeringDB ↗, a reliable and globally recognized interconnection database.
To ensure the feed’s accuracy, Cloudflare will only include IP addresses that have participated in multiple HTTP DDoS attacks and have triggered high-confidence rules.
A single DDoS attack consisting of thousands of bots can involve as little as one single IP per service provider. Service providers usually only see a small fraction of the attack traffic leaving their network, and it can be hard to correlate it to malicious activity, while trying to identify abusers.
In the case of HTTPS DDoS attacks, service providers only see encrypted payloads leaving their network without any possibility to decrypt or understand if it is malicious or legitimate traffic. However, Cloudflare can see an entire attack and all of its sources if the attack targets an Internet property that uses Cloudflare’s services. This global view can help service providers stop the abusers.
The Cloudflare DDoS Botnet Threat Feed is available in early access for free to service providers. To get access, sign up to the waiting list ↗. For more information, refer to the Terms of Use ↗.
Make sure that:
- You have created a Cloudflare account.
- You have access to the DDoS Botnet Threat Feed. If not, sign up to the waiting list ↗.
- Log in to the Cloudflare dashboard ↗ and select your account.
- Go to Manage Account > Configurations.
- Select DDoS Threat Feed ASNs.
- On the list of ASNs configured for your threat feed, select Add ASN.
- You will be redirected to the PeeringDB authentication page, where you can log in and consent to share the affiliation data with us. You will be redirected back to the configuration page once it is successful.
You must obtain a Cloudflare API token with at least the following account-level permission:
- DDoS Botnet Feed > Read
Invoke one of the Botnet Threat Feed API endpoints:
To invoke an API endpoint, append the operation endpoint to the Cloudflare API base URL:
Retrieves all the data in the botnet tracking database for a given ASN (currently two weeks worth of data).
- HTTP verb:
GET
- Operation endpoint:
/accounts/{account_id}/botnet_feed/asn/{asn}/full_report
The provided {asn}
must be affiliated with your account.
Retrieves all the data the botnet tracking database has for a given ASN on a given date. This operation currently allows dates greater than two weeks prior, but in this case it will return an empty dataset (the database currently stores two-weeks worth of data).
- HTTP verb:
GET
- Operation endpoint:
/accounts/{account_id}/botnet_feed/asn/{asn}/day_report?date={date}
The provided {asn}
must be affiliated with your account.
{date}
must be an ISO 8601-formatted date: YYYY-MM-DD
. If no date is specified, the API responds with the data from the day before.