{"slug": "ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access", "title": "AI Crawlers Are Scanning Your Site Right Now - How to Check and Control Access", "summary": "AI crawlers from OpenAI, Anthropic, Google, Common Crawl, and Perplexity are now common in server logs. A developer at AEO Checker explains how to audit robots.txt and CDN settings to avoid accidentally blocking AI crawlers from public content. The guide provides diagnostic steps and a template for allowing AI crawlers while blocking sensitive paths.", "body_md": "AI crawlers now appear in many server logs alongside traditional search bots.\n\nSome are used for search retrieval, some for training, and some for broader web\n\nindexing. If you care about AI search visibility, you need to know which ones\n\ncan access your public pages.\n\nThe most common accidental blocker is simple: a robots.txt rule or CDN bot\n\nsetting that prevents AI crawlers from reaching the content you want discovered.\n\nHere are crawler tokens you may see in logs or robots.txt rules:\n\n| Crawler token | Company | Notes |\n|---|---|---|\n| GPTBot | OpenAI | Documented OpenAI crawler token |\n| OAI-SearchBot | OpenAI | Documented OpenAI search-related crawler token |\n| ChatGPT-User | OpenAI | Documented OpenAI user-triggered agent token |\n| ClaudeBot | Anthropic | Documented Anthropic crawler token |\n| Claude-SearchBot | Anthropic | Documented Anthropic search-related crawler token |\n| Google-Extended | Google control token for Gemini Apps and Vertex AI use | |\n| CCBot | Common Crawl | Web corpus crawler used by many downstream systems |\n| PerplexityBot | Perplexity | Commonly referenced Perplexity crawler token |\n\nCrawler names and purposes change. Always confirm against official platform\n\ndocumentation before making sitewide access decisions.\n\nBefore you change anything, find out who is already crawling. If you have server\n\nlogs:\n\n```\ngrep -E \"GPTBot|OAI-SearchBot|ChatGPT-User|ClaudeBot|Claude-SearchBot|Google-Extended|CCBot|PerplexityBot\" access.log\n```\n\nIf you use Cloudflare, check bot and security events and filter by user agent.\n\nThree quick diagnostic steps:\n\n`https://yourdomain.com/robots.txt`\n\nand look for broad `Disallow: /`\n\nrules.`/sitemap.xml`\n\n.The blunt rule that makes sites invisible to many crawlers:\n\n```\nUser-agent: *\nDisallow: /\n```\n\nThis blocks every well-behaved crawler that follows the wildcard rule. If you\n\nsee it on a public marketing site, blog, or documentation site, it is probably\n\ntoo restrictive.\n\nA more common pattern is:\n\n```\nUser-agent: *\nDisallow: /admin\nDisallow: /api\nDisallow: /private\n```\n\nThis can be reasonable. The key is to make sure public content is allowed and\n\nsensitive areas are blocked intentionally.\n\n**Allow public content** when you want search and AI discovery.\n\n**Selectively block sensitive paths** such as admin, account, checkout, API, and\n\nprivate areas.\n\n**Block completely** only when you intentionally do not want a crawler to access\n\nany public content.\n\nFor most content sites, SaaS marketing sites, and documentation sites, the\n\npractical approach is to allow public pages and block private or operational\n\npaths.\n\nHere is a simple template:\n\n```\nUser-agent: Googlebot\nAllow: /\n\nUser-agent: Bingbot\nAllow: /\n\nUser-agent: GPTBot\nAllow: /\n\nUser-agent: OAI-SearchBot\nAllow: /\n\nUser-agent: ChatGPT-User\nAllow: /\n\nUser-agent: ClaudeBot\nAllow: /\n\nUser-agent: Claude-SearchBot\nAllow: /\n\nUser-agent: Google-Extended\nAllow: /\n\nUser-agent: *\nDisallow: /admin\nDisallow: /api\nDisallow: /private\n\nSitemap: https://example.com/sitemap.xml\n```\n\nPlace it at `/robots.txt`\n\n. Make sure it returns a 200 status and a plain text\n\nresponse.\n\nRobots.txt is a crawler instruction, not an authentication system. Major\n\nwell-behaved crawlers generally respect it. Bad actors may not.\n\nIf a path contains sensitive information, protect it with authentication and\n\nauthorization. Do not rely on robots.txt as a security boundary.\n\nEven if robots.txt is correct, CDN bot protection can still block or challenge\n\nAI crawlers at the network level. If you use Cloudflare or another CDN, review\n\nbot events and WAF rules after changing crawler access.\n\nRun our [AEO Checker](https://aeocheck.xyz/tools/aeo-checker) to audit these signals in one scan.\n\nMost accidental AI crawler blocks come from broad robots.txt rules or CDN bot\n\nsettings. Both are fixable. The right setup is not \"allow everything forever\";\n\nit is to make public discovery intentional and private areas truly private.\n\n*Originally published at aeocheck.xyz — free AI search readiness tools.*", "url": "https://wpnews.pro/news/ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access", "canonical_source": "https://dev.to/_6a9b7b682ef6dfb20e506/ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access-3bak", "published_at": "2026-06-29 09:33:36+00:00", "updated_at": "2026-06-29 09:57:04.576387+00:00", "lang": "en", "topics": ["artificial-intelligence", "large-language-models", "ai-products", "developer-tools"], "entities": ["OpenAI", "Anthropic", "Google", "Common Crawl", "Perplexity", "Cloudflare", "AEO Checker"], "alternates": {"html": "https://wpnews.pro/news/ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access", "markdown": "https://wpnews.pro/news/ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access.md", "text": "https://wpnews.pro/news/ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access.txt", "jsonld": "https://wpnews.pro/news/ai-crawlers-are-scanning-your-site-right-now-how-to-check-and-control-access.jsonld"}}