W3C_Unicorn
W3C Unicorn validator web crawler bot
About this crawler
W3C_Unicorn is a web crawler identified by the regular-expression pattern W3C_Unicorn in the User-Agent request header. It is categorised as monitoring. Use the regex above to detect, log, allow, or block W3C_Unicorn traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- W3C_Unicorn
- Pattern
W3C_Unicorn- Tags
- monitoring
- Reference
- https://validator.w3.org/services
- Added
- 2018/10/14
- rDNS suffixes
.w3.org,.w3c.org- Instances
- 1 known sample(s)
rDNS verification (FCrDNS)
Verify a request is genuinely W3C_Unicorn with forward-confirmed reverse DNS: the client IP's PTR record must end in one of the suffixes below and a forward A/AAAA lookup of that hostname must return the same IP. UA strings alone are spoofable; FCrDNS is not.
.w3.org.w3c.org
Sample User-Agent strings
W3C_Unicorn/1.0
Block this crawler
robots.txt — disallow W3C_Unicorn:
User-agent: W3C_Unicorn
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} W3C_Unicorn [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "W3C_Unicorn") {
return 403;
}
← back to all crawlers