OdklBot
Odnoklassniki web crawler for sharing
About this crawler
OdklBot is a web crawler identified by the regular-expression pattern OdklBot\/ in the User-Agent request header. It is categorised as social-preview. Use the regex above to detect, log, allow, or block OdklBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
No block-rate data for this crawler.
Technical details
- Name
- OdklBot
- Pattern
OdklBot\/- Tags
- social-preview
- Reference
- https://ok.ru/
- Added
- 2023/05/24
- Instances
- 2 known sample(s)
Sample User-Agent strings
OdklBot/1.0 ([email protected])
Mozilla/5.0 (compatible; OdklBot/1.0 like Linux; [email protected])
Block this crawler
robots.txt — disallow OdklBot:
User-agent: OdklBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} OdklBot\/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "OdklBot\\/") {
return 403;
}
← back to all crawlers