| [ Web Proxy ] |
| Viewing: https://developers.cloudflare.com/waf/custom-rules/use-cases/challenge-bad-bots/ | [Back] [Original] |
Cloudflare's Bot Management feature scores the likelihood that a request originates from a bot.
Note
Access to Bot Management requires a Cloudflare Enterprise plan with Bot Management enabled.
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:
cf.bot_management.score to target requests from botscf.bot_management.verified_bot to identify requests from known good bots cf.bot_management.ja3_hash to target specific JA3 FingerprintsFor best results:
Your rules may also vary based on the nature of your site and your tolerance for false positives.
Note
Custom rules execute before Super Bot Fight Mode. If you already configured actions for Definitely automated and Likely automated traffic in Security Settings, deploying these custom rules creates additional rules that take priority over those settings on matching traffic.
The following three custom rules provide baseline protection against malicious bots:
Rule 1: Skip verified bots
(cf.bot_management.verified_bot)Rule 2: Block definitely automated
(cf.bot_management.score eq 1)Rule 3: Challenge likely automated
(cf.bot_management.score gt 1 and cf.bot_management.score lt 30)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.
(cf.bot_management.score lt 30 and not cf.bot_management.verified_bot)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.
(cf.bot_management.score lt 30 and not cf.bot_management.verified_bot and not starts_with(http.request.uri.path, "/api"))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.
(cf.bot_management.ja3_hash eq "df669e7ea913f1ac0c0cce9a201a2ec1")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:
(cf.bot_management.score lt 2 and http.user_agent contains "App_Name 2.0")Rule 2:
(cf.bot_management.score lt 30 and http.user_agent contains "App_Name 2.0")If your domain handles mobile, browser, and API traffic, you would want to arrange these example rules in the following order:
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.
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.
| Web Proxy Viewer | New URL | Original Page |