SEOENGBot
SEO Engine crawler
About this crawler
SEOENGBot is a web crawler identified by the regular-expression pattern SEOENGBot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block SEOENGBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.13%
Technical details
- Name
- SEOENGBot
- Pattern
SEOENGBot- Tags
- seo
- Reference
- http://www.seoengine.com/seoengbot.htm
- Added
- 2026/05/09
- Instances
- 3 known sample(s)
Sample User-Agent strings
SEOENGBot/1.2 (+http://learn.seoeng.com/seoengbot.htm)
SEOENGBot/1.2 (+http://learn.seoengine.com/seoengbot.htm)
SEOENGBot/1.2 (+http://www.seoengine.com/seoengbot.htm)
Block this crawler
robots.txt — disallow SEOENGBot:
User-agent: SEOENGBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} SEOENGBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "SEOENGBot") {
return 403;
}
← back to all crawlers