SerendeputyBot
Serendeputy web crawler for content discovery
About this crawler
SerendeputyBot is a web crawler identified by the regular-expression pattern SerendeputyBot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block SerendeputyBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- SerendeputyBot
- Pattern
SerendeputyBot- Tags
- seo
- Reference
- http://serendeputy.com/about/serendeputy-bot
- Added
- 2020/03/02
- Instances
- 1 known sample(s)
Sample User-Agent strings
SerendeputyBot/0.8.6 (http://serendeputy.com/about/serendeputy-bot)
Block this crawler
robots.txt — disallow SerendeputyBot:
User-agent: SerendeputyBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} SerendeputyBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "SerendeputyBot") {
return 403;
}
← back to all crawlers