Influencebot
Influencebox website classification bot
About this crawler
Influencebot is a web crawler identified by the regular-expression pattern Influencebot\/ in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block Influencebot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.064%
Technical details
- Name
- Influencebot
- Pattern
Influencebot\/- Tags
- seo
- Reference
- http://www.influencebox.com/
- Added
- 2026/05/09
- Instances
- 2 known sample(s)
Sample User-Agent strings
Influencebot/0.9; (Automatic classification of websites; http://www.influencebox.com/; [email protected])
Influencebot/0.9; (Automatic classification of websites; http://www.influencebox.com/; [email protected])User-Agent: Mozilla/5.0 (X11; Linux i686; rv:9.0) Gecko/20100101 Firefox/9.0
Block this crawler
robots.txt — disallow Influencebot:
User-agent: Influencebot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Influencebot\/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Influencebot\\/") {
return 403;
}
← back to all crawlers