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