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