GA
Google-Ads-Overview
Google Ads overview crawler
About this crawler
Google-Ads-Overview is a web crawler identified by the regular-expression pattern Google-Ads-Overview in the User-Agent request header. It is categorised as advertising. Use the regex above to detect, log, allow, or block Google-Ads-Overview 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
- Google-Ads-Overview
- Pattern
Google-Ads-Overview- Tags
- advertising
- Added
- 2026/05/09
- Instances
- 3 known sample(s)
Sample User-Agent strings
Google-Ads-Overview Mozilla/5.0 (Linux; U; Android 2.3.4; generic) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Version/4.0 Mobile Safari/537.36
Google-Ads-Overview Mozilla/5.0 (Linux; U; Android 6.0.1; generic) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Version/4.0 Mobile Safari/537.36
Google-Ads-Overview Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36
Block this crawler
robots.txt — disallow Google-Ads-Overview:
User-agent: Google-Ads-Overview
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Google-Ads-Overview [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Google-Ads-Overview") {
return 403;
}
← back to all crawlers