seo-audit-check-bot
SEO auditing crawler evaluating optimization signals
About this crawler
seo-audit-check-bot is a web crawler identified by the regular-expression pattern seo-audit-check-bot\/ in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block seo-audit-check-bot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.33%
Technical details
- Name
- seo-audit-check-bot
- Pattern
seo-audit-check-bot\/- Tags
- seo
- Reference
- https://www.webceo.com/webceo-bots.htm
- Added
- 2026/04/17
- Instances
- 1 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (compatible; seo-audit-check-bot/1.0)
Block this crawler
robots.txt — disallow seo-audit-check-bot:
User-agent: seo-audit-check-bot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} seo-audit-check-bot\/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "seo-audit-check-bot\\/") {
return 403;
}
← back to all crawlers