Go-http-client
Go programming language HTTP client library
About this crawler
Go-http-client is a web crawler identified by the regular-expression pattern Go-http-client in the User-Agent request header. It is categorised as http-library. Use the regex above to detect, log, allow, or block Go-http-client traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.39%
Technical details
- Name
- Go-http-client
- Pattern
Go-http-client- Tags
- http-library
- Reference
- https://pkg.go.dev/net/http
- Added
- 2016/03/26
- Instances
- 2 known sample(s)
Sample User-Agent strings
Go-http-client/1.1
Go-http-client/2.0
Block this crawler
robots.txt — disallow Go-http-client:
User-agent: Go-http-client
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Go-http-client [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Go-http-client") {
return 403;
}
← back to all crawlers