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