Netvibes
Netvibes web crawler for content aggregation
About this crawler
Netvibes is a web crawler identified by the regular-expression pattern Netvibes in the User-Agent request header. It is categorised as feed-reader. Use the regex above to detect, log, allow, or block Netvibes traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.59%
Technical details
- Name
- Netvibes
- Pattern
Netvibes- Tags
- feed-reader
- Reference
- https://www.3ds.com/products/netvibes/
- Added
- 2018/06/24
- Instances
- 2 known sample(s)
Sample User-Agent strings
Netvibes (crawler/bot; http://www.netvibes.com
Netvibes (crawler; http://www.netvibes.com)
Block this crawler
robots.txt — disallow Netvibes:
User-agent: Netvibes
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Netvibes [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Netvibes") {
return 403;
}
← back to all crawlers