AB
adbeat_bot
AdBeat web crawler for advertising analysis
About this crawler
adbeat_bot is a web crawler identified by the regular-expression pattern adbeat_bot in the User-Agent request header. It is categorised as advertising. Use the regex above to detect, log, allow, or block adbeat_bot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.13%
Technical details
- Name
- adbeat_bot
- Pattern
adbeat_bot- Tags
- advertising
- Added
- 2016/11/04
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (compatible; adbeat_bot; [email protected]; [email protected])
adbeat_bot
Block this crawler
robots.txt — disallow adbeat_bot:
User-agent: adbeat_bot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} adbeat_bot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "adbeat_bot") {
return 403;
}
← back to all crawlers