Specificfeeds
Content aggregation crawler for personalized feeds
About this crawler
Specificfeeds is a web crawler identified by the regular-expression pattern Specificfeeds in the User-Agent request header. It is categorised as feed-reader. Use the regex above to detect, log, allow, or block Specificfeeds 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
- Specificfeeds
- Pattern
Specificfeeds- Tags
- feed-reader
- Reference
- https://follow.it/
- Added
- 2026/04/17
- Instances
- 1 known sample(s)
Sample User-Agent strings
FeedBurner/1.0 (http://www.FeedBurner.com) Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 Specificfeeds
Block this crawler
robots.txt — disallow Specificfeeds:
User-agent: Specificfeeds
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Specificfeeds [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Specificfeeds") {
return 403;
}
← back to all crawlers