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