GeedoProductSearch
Geedo product search web crawler bot
About this crawler
GeedoProductSearch is a web crawler identified by the regular-expression pattern GeedoProductSearch in the User-Agent request header. It is categorised as search-engine. Use the regex above to detect, log, allow, or block GeedoProductSearch 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
- GeedoProductSearch
- Pattern
GeedoProductSearch- Tags
- search-engine
- Reference
- https://geedo.com/product-search.html
- Added
- 2025/03/15
- Instances
- 1 known sample(s)
Sample User-Agent strings
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GeedoProductSearch; +http://www.geedo.com/product-search.html) Chrome/79.0.3945.88 Safari/537.36
Block this crawler
robots.txt — disallow GeedoProductSearch:
User-agent: GeedoProductSearch
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} GeedoProductSearch [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "GeedoProductSearch") {
return 403;
}
← back to all crawlers