eBot
eBot Czech search engine
About this crawler
eBot is a web crawler identified by the regular-expression pattern eBot \/ in the User-Agent request header. It is categorised as search-engine. Use the regex above to detect, log, allow, or block eBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.20%
Technical details
- Name
- eBot
- Pattern
eBot \/- Tags
- search-engine
- Reference
- http://alfa.elchron.cz
- Added
- 2026/05/09
- Instances
- 2 known sample(s)
Sample User-Agent strings
eBot / v.0.1e (http://alfa.elchron.cz)
eBot / v.1.0a (http://alfa.elchron.cz)
Block this crawler
robots.txt — disallow eBot:
User-agent: eBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} eBot \/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "eBot \\/") {
return 403;
}
← back to all crawlers