SenutoBot
Senuto web crawler for SEO analysis
About this crawler
SenutoBot is a web crawler identified by the regular-expression pattern SenutoBot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block SenutoBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.26%
Technical details
- Name
- SenutoBot
- Pattern
SenutoBot- Tags
- seo
- Reference
- https://www.senuto.com
- Added
- 2023/09/08
- Instances
- 1 known sample(s)
Sample User-Agent strings
SenutoBot/1.0 (compatible; SenutoBot/1.0; +https://www.senuto.com/)
Block this crawler
robots.txt — disallow SenutoBot:
User-agent: SenutoBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} SenutoBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "SenutoBot") {
return 403;
}
← back to all crawlers