BrandVerity
BrandVerity web crawler for brand monitoring
About this crawler
BrandVerity is a web crawler identified by the regular-expression pattern BrandVerity in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block BrandVerity traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.13%
Technical details
- Name
- BrandVerity
- Pattern
BrandVerity- Tags
- seo
- Reference
- https://www.brandverity.com/why-is-brandverity-visiting-me
- Added
- 2018/02/27
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/55.0 BrandVerity/1.0 (http://www.brandverity.com/why-is-brandverity-visiting-me)
Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Mobile/11A465 Twitter for iPhone BrandVerity/1.0 (http://www.brandverity.com/why-is-brandverity-visiting-me)
Block this crawler
robots.txt — disallow BrandVerity:
User-agent: BrandVerity
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} BrandVerity [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "BrandVerity") {
return 403;
}
← back to all crawlers