W3C_Validator
W3C HTML validator web crawler bot
About this crawler
W3C_Validator is a web crawler identified by the regular-expression pattern W3C_Validator in the User-Agent request header. It is categorised as monitoring. Use the regex above to detect, log, allow, or block W3C_Validator traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- W3C_Validator
- Pattern
W3C_Validator- 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_Validator 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_Validator/1.3
Block this crawler
robots.txt — disallow W3C_Validator:
User-agent: W3C_Validator
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} W3C_Validator [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "W3C_Validator") {
return 403;
}
← back to all crawlers