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