OOZBOT
Setooz web crawler
About this crawler
OOZBOT is a web crawler identified by the regular-expression pattern OOZBOT in the User-Agent request header. It is categorised as search-engine. Use the regex above to detect, log, allow, or block OOZBOT traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- OOZBOT
- Pattern
OOZBOT- Tags
- search-engine
- Reference
- http://www.setooz.com/oozbot.html
- Added
- 2026/05/09
- Instances
- 3 known sample(s)
Sample User-Agent strings
OOZBOT/0.20 ( -- ; http://www.setooz.com/oozbot.html ; agentname at setooz dot_com )
OOZBOT/0.20 ( Setooz výrazný ako say-th-uuz, znamená mosty. ; http://www.setooz.com/oozbot.html ; agentname at setooz dot_com )
OOZBOT/0.20 ( http://www.setooz.com/oozbot.html ; agentname at setooz dot_com )
Block this crawler
robots.txt — disallow OOZBOT:
User-agent: OOZBOT
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} OOZBOT [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "OOZBOT") {
return 403;
}
← back to all crawlers