NetzCheckBot
Security seal verification
About this crawler
NetzCheckBot is a web crawler identified by the regular-expression pattern NetzCheckBot in the User-Agent request header. It is categorised as scanner. Use the regex above to detect, log, allow, or block NetzCheckBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
No block-rate data for this crawler.
Technical details
- Name
- NetzCheckBot
- Pattern
NetzCheckBot- Tags
- scanner
- Reference
- http://www.netzcheck.com
- Added
- 2026/05/03
- Instances
- 6 known sample(s)
Sample User-Agent strings
NetzCheckBot/1.0 (security seal – page; http://spasspics.de.netzcheck.com; [email protected])
NetzCheckBot/1.0 (security seal – page; http://randomfun.de.netzcheck.com; [email protected])
NetzCheckBot/1.0 (security seal – page; http://trailerfan.de.netzcheck.com; [email protected])
NetzCheckBot/1.0 (security seal – page; http://myfunbay.com.netzcheck.com; [email protected])
NetzCheckBot/1.0 (security seal – page; http://lustigewerbespots.com.netzcheck.com; [email protected])
NetzCheckBot/1.0 (security seal – page; http://domain-pirat.de.netzcheck.com; [email protected])
Block this crawler
robots.txt — disallow NetzCheckBot:
User-agent: NetzCheckBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} NetzCheckBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "NetzCheckBot") {
return 403;
}
← back to all crawlers