trendictionbot
Trendiction web crawler for trend analysis
About this crawler
trendictionbot is a web crawler identified by the regular-expression pattern trendictionbot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block trendictionbot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.91%
Technical details
- Name
- trendictionbot
- Pattern
trendictionbot- Tags
- seo
- Reference
- https://www.trendiction.com/bot
- Added
- 2017/10/30
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.0; trendictionbot0.5.0; trendiction search; http://www.trendiction.de/bot; please let us know of any problems; web at trendiction.com) Gecko/20071127 Firefox/3.0.0.11
Mozilla/5.0 (Windows NT 10.0; Win64; x64; trendictionbot0.5.0; trendiction search; http://www.trendiction.de/bot; please let us know of any problems; web at trendiction.com) Gecko/20170101 Firefox/67.0
Block this crawler
robots.txt — disallow trendictionbot:
User-agent: trendictionbot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} trendictionbot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "trendictionbot") {
return 403;
}
← back to all crawlers