HybridBot
Russian hybrid search bot
About this crawler
HybridBot is a web crawler identified by the regular-expression pattern HybridBot in the User-Agent request header. It is categorised as search-engine. Use the regex above to detect, log, allow, or block HybridBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.39%
Technical details
- Name
- HybridBot
- Pattern
HybridBot- Tags
- search-engine
- Reference
- https://hybrid.ru:80/about/
- Added
- 2026/05/03
- Instances
- 2 known sample(s)
Sample User-Agent strings
HybridBot (hybrid.ru/about. If our bot caused problems please contact us. Contact email: [email protected])
HybridBot (hybrid.ru/about. If our bot caused problems please contact us. Contact email: [email protected])
Block this crawler
robots.txt — disallow HybridBot:
User-agent: HybridBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} HybridBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "HybridBot") {
return 403;
}
← back to all crawlers