INTEGRITY Cloudflare Docs

Challenge bad bots

Cloudflare's Bot Management feature scores the likelihood that a request originates from a bot.

Bot settings

Before creating custom rules for bot protection, review the settings on your Security Settings page under Bot traffic. Built-in features auto-update with new bot signatures, do not count toward your custom rule limits, and are simpler to manage.

Use case Bot setting
Block AI crawlers (GPTBot, ClaudeBot, etc.) Block AI bots
Block definitely automated traffic (bot score of 1) Definitely automated
Challenge likely automated traffic (bot score 2-29) Likely automated
Allow verified bots (Googlebot, Bingbot, etc.) Verified bots
Extend bot protection to static resources Static resource protection
Allow WordPress loopback requests Optimize for WordPress

Custom rules are still valuable when you need path-specific protection (different handling for /api/ vs. /login/), custom score thresholds (for example, score below 20 instead of 30), conditional logic combining bot score with other fields, or custom actions not available in the built-in settings.

Bot score ranges from 1 through 99. A low score indicates the request comes from a script, API service, or an automated agent. A high score indicates that a human issued the request from a standard desktop or mobile web browser.

These examples use:

Suggested rules

For best results:

Your rules may also vary based on the nature of your site and your tolerance for false positives.

General protection

The following three custom rules provide baseline protection against malicious bots:

Rule 1: Skip verified bots

Rule 2: Block definitely automated

Rule 3: Challenge likely automated

Specific protection for browser, API, and mobile traffic

Protect browser endpoints

When a request is definitely automated (score of 1) or likely automated (scores 2 through 29) and is not on the list of known good bots, Cloudflare blocks the request.

Exempt API traffic

Since Bot Management detects automated users, you need to explicitly allow your good automated traffic⁠ — this includes your APIs and partner APIs.

This example offers the same protection as the browser-only rule, but allows automated traffic to your API.

Adjust for mobile traffic

Since Bot Management can be more sensitive to mobile traffic, you may want to add in additional logic to avoid blocking legitimate requests.

If you are handling requests from your own mobile application, you could potentially allow it based on its specific JA3 fingerprint.

Otherwise, you could set lower thresholds for mobile traffic. The following rules would block definitely automated mobile traffic and challenge likely automated traffic.

Rule 1:

Rule 2:

Combine the different rules

If your domain handles mobile, browser, and API traffic, you would want to arrange these example rules in the following order:

Static resource protection

Static resources are protected by default when you create custom rules using the cf.bot_management.score field.

To exclude static resources, include not (cf.bot_management.static_resource) in your rule expression. For details, refer to Static resource protection.

Additional considerations

From there, you could customize your custom rules based on specific request paths (/login or /signup), common traffic patterns, or many other characteristics.

Make sure you review Bot Analytics and Security Events to check if your rules need more tuning.


Other resources