From 9f70c4b0a0f6c34d10c1299432456856771781e5 Mon Sep 17 00:00:00 2001 From: Ross Jacobs Date: Mon, 7 Apr 2025 16:58:31 -0500 Subject: [PATCH 01/15] Added setup documentation for enterprise bot management --- .../ai-labyrinth.mdx | 13 +++++++ .../docs/bots/get-started/bot-management.mdx | 37 ++++++++++++++++--- .../reference/machine-learning-models.mdx | 13 ++----- .../partials/bots/ai-labyrinth-enable.mdx | 6 +-- .../partials/bots/block-ai-bots-enable.mdx | 2 + .../partials/bots/latest-ml-model-enable.mdx | 15 ++++++++ 6 files changed, 67 insertions(+), 19 deletions(-) create mode 100644 src/content/docs/bots/additional-configurations/ai-labyrinth.mdx create mode 100644 src/content/partials/bots/latest-ml-model-enable.mdx diff --git a/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx b/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx new file mode 100644 index 000000000000000..41a6fe45f4a80d5 --- /dev/null +++ b/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx @@ -0,0 +1,13 @@ +--- +type: overview +pcx_content_type: reference +title: AI Labyrinth +--- + +import { Render } from "~/components" + +The AI Labyrinth adds invisible links on your webpage with specific `Nofollow` tags to block AI crawlers that do not adhere to the recommended guidelines and crawl without permission. AI crawlers that scrape your website content without permission will be stuck in a maze of never-ending links, and their details are recorded and used by all Cloudflare customers who choose to block [AI bots](/bots/concepts/bot/#ai-bots). + +These links do not impact your search engine optimization (SEO) or your website's appearance, and are only seen by bots. AI bots that respect no-crawl instructions will safely ignore this honeypot. + + \ No newline at end of file diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index 2e32a0efa38bc99..aeab275235f0a5c 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -28,22 +28,47 @@ To enable a [Bot Management](https://dash.cloudflare.com/?to=/:account/:zone/sec :::note -If you are not seeing Bot Management enabled on your zone or if you still see **Add Bot Management** on the Cloudflare dashboard, contact your account team for the proper entitlements. +If you are not seeing Bot Management enabled on your zone or if you still see **Add Bot Management** on the Cloudflare dashboard, contact your account team for the proper entitlements. ::: -## Block AI bots +## Setup + +Cloudflare recommends that you deploy these basic settings and customize them to traffic in your zone. + +### Enable The Latest ML Version + + + +### Block AI Bots :::note - -You can view blocked AI bot traffic via [Security Analytics](/waf/analytics/security-analytics/). +You can view blocked AI bot traffic via [Security Analytics](/waf/analytics/security-analytics/). ::: ### Enable AI Labyrinth -## Setup +### Enable Javascript Detections + +Enabling [Javascript Detections](/bots/additional-configurations/javascript-detections/) validates that the browser can run javascript, and is stored in the cf.bot_management.js_detection.passed variable. + + + +### Deploy Default Templates + +Cloudflare has [default templates](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules?template=bot_traffic) for definite bots, which we are very confident are automated (bot score 1) and likely bots that have many bot tells (bot score 2-29). In our templates, we recommend to allow verified bots like Google SEO crawler and access to static resources, which should be cached anyway. + +* [Definite Bots Template](https://dash.cloudflare.com/?to=/:account/:zone:/security/security-rules/custom-rules/create?template=Definitely%20Bots) - Targets malicious bot traffic while ignoring verified bots and routes delivering static content. + + `(cf.bot_management.score eq 1 and not cf.bot_management.verified_bot and not cf.bot_management.static_resource)` + +* [Likely Bots Template](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules/custom-rules/create?template=Likely%20Bots) Targets traffic likely to be malicious bots while ignoring verified bots and routes with static content. May contain a small amount of non-bot traffic. + + `(cf.bot_management.score ge 2 and cf.bot_management.score le 29 and not cf.bot_management.verified_bot and not cf.bot_management.static_resource)` + +* Optionally a [JSD Template](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules/custom-rules/create?template=JavaScript%20Verified%20URLs). If you toggled JSD above, then managed challenge. Make sure to add a method and URI path. JSD improves security for URLs that should only expect JavaScript enabled clients. -For more guidance on setup, refer to your Customer Success Manager. + `(not cf.bot_management.js_detection.passed and http.request.method eq "" and http.request.uri.path in {""})` \ No newline at end of file diff --git a/src/content/docs/bots/reference/machine-learning-models.mdx b/src/content/docs/bots/reference/machine-learning-models.mdx index 4c582a6c8155544..f9099a395b26e13 100644 --- a/src/content/docs/bots/reference/machine-learning-models.mdx +++ b/src/content/docs/bots/reference/machine-learning-models.mdx @@ -6,16 +6,11 @@ sidebar: --- -## Enable Auto-updates to the Machine Learning Models - -Cloudflare allows Enterprise customers to enable Auto-updates to its Machine Learning models for the newest bot detection models as they are released. +import { Render } from "~/components" -To enable Auto-updates: +## Enable Auto-updates to the Machine Learning Models -1. Log in to the Cloudflare dashboard and select your account and domain. -2. Go to **Security** > **Bots**. -3. Select **Configure Bot Management**. -4. Enable **Auto-updates to the Machine Learning Model**. + ### What will change @@ -38,4 +33,4 @@ By not updating to the latest version, you will be using a Machine Learning mode | v5 | Recalibrated model for the [removal of `_cfduid` cookie](https://blog.cloudflare.com/deprecating-cfduid-cookie/).

Introduced new signals to reduce false negatives. | Q2 2021 | | v6 | Significantly improved scoring for native Android application traffic.

Improved scoring on the newest versions of Chromium browsers. | Q1 2022 | | v7 | Increased recognition of distributed botnets.

Improved HTTP/3 scoring. | Q1 2024 | -| v8 | Improved detection of residential proxies.

Increased weight on network level traffic characteristics. | Q2 2024 | +| v8 | Improved detection of residential proxies.

Increased weight on network level traffic characteristics. | Q2 2024 | \ No newline at end of file diff --git a/src/content/partials/bots/ai-labyrinth-enable.mdx b/src/content/partials/bots/ai-labyrinth-enable.mdx index 2659c734ed82aae..235c6ed47ebfe00 100644 --- a/src/content/partials/bots/ai-labyrinth-enable.mdx +++ b/src/content/partials/bots/ai-labyrinth-enable.mdx @@ -5,11 +5,9 @@ inputParameters: param1 import { Markdown } from "~/components" -The AI Labyrinth adds invisible links on your webpage with specific `Nofollow` tags to block AI crawlers that do not adhere to the recommended guidelines and crawl without permission. AI crawlers that scrape your website content without permission will be stuck in a maze of never-ending links, and their details are recorded and used by all Cloudflare customers who choose to block [AI bots](/bots/concepts/bot/#ai-bots). +AI Labyrinth decreases the accuracy and wastes the resources of AI Bots by confabulating articles on your website that are not visible to users. -These links do not impact your search engine optimization (SEO) or your website's appearance, and are only seen by bots. AI bots that respect no-crawl instructions will safely ignore this honeypot. - -To enable AI Labyrinth: +To enable [AI Labyrinth](/bots/additional-configurations/ai-labyrinth): 1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/) and select your account and domain. 2. Go to **Security** > **Bots**. diff --git a/src/content/partials/bots/block-ai-bots-enable.mdx b/src/content/partials/bots/block-ai-bots-enable.mdx index 862c28d5eb7e940..ff18e47e5e38599 100644 --- a/src/content/partials/bots/block-ai-bots-enable.mdx +++ b/src/content/partials/bots/block-ai-bots-enable.mdx @@ -5,6 +5,8 @@ inputParameters: param1 import { Markdown } from "~/components" +AI Bots will block Definitely Automated bots and Verified AI Bots, such as AI Search, AI Assistant, AI Crawler, or an AI Archiver. + To block [AI bots](/bots/concepts/bot/#ai-bots): 1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/) and select your account and domain. diff --git a/src/content/partials/bots/latest-ml-model-enable.mdx b/src/content/partials/bots/latest-ml-model-enable.mdx new file mode 100644 index 000000000000000..cb1f7e73441dde1 --- /dev/null +++ b/src/content/partials/bots/latest-ml-model-enable.mdx @@ -0,0 +1,15 @@ +--- +inputParameters: param1 + +--- + +import { Markdown } from "~/components" + +Cloudflare encourages Enterprise customers to enable Auto-updates to its Machine Learning models to get the newest bot detection models as they are released. + +To enable Auto-updates: + +1. Log in to the Cloudflare dashboard and select your account and domain. +2. Go to **Security** > **Bots**. +3. Select **Configure Bot Management**. +4. Enable **Auto-updates to the Machine Learning Model**. \ No newline at end of file From 9eb1949d23fffe5b8bd5276ef7f946bcffe8deba Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Mon, 7 Apr 2025 17:55:05 -0500 Subject: [PATCH 02/15] Update src/content/partials/bots/latest-ml-model-enable.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/partials/bots/latest-ml-model-enable.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/partials/bots/latest-ml-model-enable.mdx b/src/content/partials/bots/latest-ml-model-enable.mdx index cb1f7e73441dde1..8a3aaebb96b3eb1 100644 --- a/src/content/partials/bots/latest-ml-model-enable.mdx +++ b/src/content/partials/bots/latest-ml-model-enable.mdx @@ -1,5 +1,5 @@ --- -inputParameters: param1 +{} --- From 16961e9a7b5c6a4ac240aef957b10c79ff731359 Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:09:44 -0500 Subject: [PATCH 03/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index aeab275235f0a5c..a71f184ab11fa5a 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -33,7 +33,7 @@ If you are not seeing Bot Management enabled on your zone or if you still see ** ## Setup -Cloudflare recommends that you deploy these basic settings and customize them to traffic in your zone. +Cloudflare recommends that you deploy the following basic settings and customize them according to the traffic in your zone. ### Enable The Latest ML Version From 63b69f6979a161f26e42bcef869771c0f5372433 Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:09:58 -0500 Subject: [PATCH 04/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index a71f184ab11fa5a..b1239b6c1539daa 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -35,7 +35,7 @@ If you are not seeing Bot Management enabled on your zone or if you still see ** Cloudflare recommends that you deploy the following basic settings and customize them according to the traffic in your zone. -### Enable The Latest ML Version +### Enable the latest Machine Learning version From 0be43124f63314e38cded1af4e0e9a86da11565c Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:10:11 -0500 Subject: [PATCH 05/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index b1239b6c1539daa..04c5925ca769e42 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -37,7 +37,7 @@ Cloudflare recommends that you deploy the following basic settings and customize ### Enable the latest Machine Learning version - + ### Block AI Bots From 65b0a3222da3455c68d0e77f2e5a9f296a2afb9d Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:11:00 -0500 Subject: [PATCH 06/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index 04c5925ca769e42..c0412d0cdd6cb75 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -53,7 +53,7 @@ You can view blocked AI bot traffic via [Security Analytics](/waf/analytics/secu ### Enable Javascript Detections -Enabling [Javascript Detections](/bots/additional-configurations/javascript-detections/) validates that the browser can run javascript, and is stored in the cf.bot_management.js_detection.passed variable. +Enabling [JavaScript Detections](/bots/additional-configurations/javascript-detections/) validates that the browser can run JavaScript, and is stored in the `cf.bot_management.js_detection.passed` variable. From 7075eec869339fc5f94010f422629544afaed1ca Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:13:45 -0500 Subject: [PATCH 07/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index c0412d0cdd6cb75..2329762f72c781f 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -57,7 +57,7 @@ Enabling [JavaScript Detections](/bots/additional-configurations/javascript-dete -### Deploy Default Templates +### Deploy default templates Cloudflare has [default templates](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules?template=bot_traffic) for definite bots, which we are very confident are automated (bot score 1) and likely bots that have many bot tells (bot score 2-29). In our templates, we recommend to allow verified bots like Google SEO crawler and access to static resources, which should be cached anyway. From d7463ae8275ce50e46d7a9f6d88562119ecb13ac Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:15:17 -0500 Subject: [PATCH 08/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index 2329762f72c781f..0271e787b356c63 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -61,7 +61,7 @@ Enabling [JavaScript Detections](/bots/additional-configurations/javascript-dete Cloudflare has [default templates](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules?template=bot_traffic) for definite bots, which we are very confident are automated (bot score 1) and likely bots that have many bot tells (bot score 2-29). In our templates, we recommend to allow verified bots like Google SEO crawler and access to static resources, which should be cached anyway. -* [Definite Bots Template](https://dash.cloudflare.com/?to=/:account/:zone:/security/security-rules/custom-rules/create?template=Definitely%20Bots) - Targets malicious bot traffic while ignoring verified bots and routes delivering static content. +- [Definite Bots template](https://dash.cloudflare.com/?to=/:account/:zone:/security/security-rules/custom-rules/create?template=Definitely%20Bots): Targets malicious bot traffic while ignoring verified bots and routes delivering static content. `(cf.bot_management.score eq 1 and not cf.bot_management.verified_bot and not cf.bot_management.static_resource)` From b76b43e77c93788debb2c78d12169e58bc1890f0 Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:17:51 -0500 Subject: [PATCH 09/15] Update src/content/docs/bots/reference/machine-learning-models.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/reference/machine-learning-models.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/reference/machine-learning-models.mdx b/src/content/docs/bots/reference/machine-learning-models.mdx index f9099a395b26e13..c90a2da60f1aa51 100644 --- a/src/content/docs/bots/reference/machine-learning-models.mdx +++ b/src/content/docs/bots/reference/machine-learning-models.mdx @@ -10,7 +10,7 @@ import { Render } from "~/components" ## Enable Auto-updates to the Machine Learning Models - + ### What will change From eed0ed6d44e8db8b19af9e641eb9d56eb76966e3 Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:17:58 -0500 Subject: [PATCH 10/15] Update src/content/docs/bots/reference/machine-learning-models.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/reference/machine-learning-models.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/reference/machine-learning-models.mdx b/src/content/docs/bots/reference/machine-learning-models.mdx index c90a2da60f1aa51..fe7d95ff69319f5 100644 --- a/src/content/docs/bots/reference/machine-learning-models.mdx +++ b/src/content/docs/bots/reference/machine-learning-models.mdx @@ -8,7 +8,7 @@ sidebar: import { Render } from "~/components" -## Enable Auto-updates to the Machine Learning Models +## Enable auto-updates to the Machine Learning models From 473df368399f21663440e5dadd1e53de3067a079 Mon Sep 17 00:00:00 2001 From: Ross Jacobs <137008165+witanred@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:18:16 -0500 Subject: [PATCH 11/15] Update src/content/docs/bots/get-started/bot-management.mdx Co-authored-by: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index 0271e787b356c63..6631dd00cff7a66 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -65,7 +65,7 @@ Cloudflare has [default templates](https://dash.cloudflare.com/?to=/:account/:zo `(cf.bot_management.score eq 1 and not cf.bot_management.verified_bot and not cf.bot_management.static_resource)` -* [Likely Bots Template](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules/custom-rules/create?template=Likely%20Bots) Targets traffic likely to be malicious bots while ignoring verified bots and routes with static content. May contain a small amount of non-bot traffic. +- [Likely Bots template](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules/custom-rules/create?template=Likely%20Bots): Targets traffic likely to be malicious bots while ignoring verified bots and routes with static content. It may contain a small amount of non-bot traffic. `(cf.bot_management.score ge 2 and cf.bot_management.score le 29 and not cf.bot_management.verified_bot and not cf.bot_management.static_resource)` From cfc99e1946a4e3451f34340888bbecba511a9cc0 Mon Sep 17 00:00:00 2001 From: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> Date: Tue, 8 Apr 2025 08:40:55 -0700 Subject: [PATCH 12/15] Update src/content/docs/bots/get-started/bot-management.mdx --- src/content/docs/bots/get-started/bot-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/bots/get-started/bot-management.mdx b/src/content/docs/bots/get-started/bot-management.mdx index 6631dd00cff7a66..5d821649cdc0e45 100644 --- a/src/content/docs/bots/get-started/bot-management.mdx +++ b/src/content/docs/bots/get-started/bot-management.mdx @@ -69,6 +69,6 @@ Cloudflare has [default templates](https://dash.cloudflare.com/?to=/:account/:zo `(cf.bot_management.score ge 2 and cf.bot_management.score le 29 and not cf.bot_management.verified_bot and not cf.bot_management.static_resource)` -* Optionally a [JSD Template](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules/custom-rules/create?template=JavaScript%20Verified%20URLs). If you toggled JSD above, then managed challenge. Make sure to add a method and URI path. JSD improves security for URLs that should only expect JavaScript enabled clients. +- (Optional) [JavaScript detections template](https://dash.cloudflare.com/?to=/:account/:zone/security/security-rules/custom-rules/create?template=JavaScript%20Verified%20URLs): If you enabled JavaScript detections, then set up a [managed challenge](/fundamentals/security/cloudflare-challenges/#managed-challenge-recommended), make sure to add a method and URI path. JavaScript detections improves security for URLs that should only expect JavaScript-enabled clients. `(not cf.bot_management.js_detection.passed and http.request.method eq "" and http.request.uri.path in {""})` \ No newline at end of file From 426b9fe95f96668045eeb264d9395ee6ed81826b Mon Sep 17 00:00:00 2001 From: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> Date: Tue, 8 Apr 2025 09:06:19 -0700 Subject: [PATCH 13/15] Update src/content/partials/bots/latest-ml-model-enable.mdx --- src/content/partials/bots/latest-ml-model-enable.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/partials/bots/latest-ml-model-enable.mdx b/src/content/partials/bots/latest-ml-model-enable.mdx index 8a3aaebb96b3eb1..9b1c2776448f2d1 100644 --- a/src/content/partials/bots/latest-ml-model-enable.mdx +++ b/src/content/partials/bots/latest-ml-model-enable.mdx @@ -5,9 +5,9 @@ import { Markdown } from "~/components" -Cloudflare encourages Enterprise customers to enable Auto-updates to its Machine Learning models to get the newest bot detection models as they are released. +Cloudflare encourages Enterprise customers to enable auto-updates to its Machine Learning models to get the newest bot detection models as they are released. -To enable Auto-updates: +To enable auto-updates: 1. Log in to the Cloudflare dashboard and select your account and domain. 2. Go to **Security** > **Bots**. From 68dc424619a7f1359de6dd8a84f5c5d828178d21 Mon Sep 17 00:00:00 2001 From: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> Date: Tue, 8 Apr 2025 09:06:38 -0700 Subject: [PATCH 14/15] Update src/content/docs/bots/additional-configurations/ai-labyrinth.mdx --- .../docs/bots/additional-configurations/ai-labyrinth.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx b/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx index 41a6fe45f4a80d5..4ad277ad555d59d 100644 --- a/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx +++ b/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx @@ -9,5 +9,3 @@ import { Render } from "~/components" The AI Labyrinth adds invisible links on your webpage with specific `Nofollow` tags to block AI crawlers that do not adhere to the recommended guidelines and crawl without permission. AI crawlers that scrape your website content without permission will be stuck in a maze of never-ending links, and their details are recorded and used by all Cloudflare customers who choose to block [AI bots](/bots/concepts/bot/#ai-bots). These links do not impact your search engine optimization (SEO) or your website's appearance, and are only seen by bots. AI bots that respect no-crawl instructions will safely ignore this honeypot. - - \ No newline at end of file From 74a1b1ca008d27d936a985e47dfa8c5a0fb909f0 Mon Sep 17 00:00:00 2001 From: Patricia Santa Ana <103445940+patriciasantaana@users.noreply.github.com> Date: Tue, 8 Apr 2025 09:14:51 -0700 Subject: [PATCH 15/15] Update src/content/docs/bots/additional-configurations/ai-labyrinth.mdx --- .../docs/bots/additional-configurations/ai-labyrinth.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx b/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx index 4ad277ad555d59d..a87bdc7a9f9baf3 100644 --- a/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx +++ b/src/content/docs/bots/additional-configurations/ai-labyrinth.mdx @@ -1,6 +1,5 @@ --- -type: overview -pcx_content_type: reference +pcx_content_type: overview title: AI Labyrinth ---