Forum Moderators: open
The reason I think so is there were too many files that had no logical connection (in other words there's no reason a web accelerator would know to cache them) taken nearly all at once from all over the website.
Also none of the usual files a human would get automatically, like .css and .js files, were requested. But it did request the default file for the site which should have triggered a request for my stylesheet and JavaScript include files.
I'm not sure what to make of it. Do you think this is the legit Google Web Accelerator or a faker? Thanks.
Examples of checking the variable:
# Set 'getout' environment variable using SetEnvif for use by subsequent 'bad-bot blocker' code
SetEnvIf X-moz prefetch getout
-or-
# Set 'moz_pref' environment variable using SetEnvif for use in custom log or later mod_rewrite code.
SetEnvIf X-moz prefetch moz_pref=mozpre
-or-
# BLOCK Mozilla-based browser prefetches using mod_rewrite
RewriteCond %{HTTP:X-moz} ^prefetch
RewriteRule .* - [F]
-or-
# Set 'moz_pref' environment variable using mod_rewrite for use in custom log or later mod_rewrite code.
RewriteCond %{HTTP:X-moz} ^prefetch
RewriteRule .* - [E=moz_pref:mozpre]
CustomLog /path_to_log_file "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" [b]\"%{X-moz}i\"[/b]"
CustomLog /path_to_log_file "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" [b]\"%{moz_pref}e\"[/b]"
Lots of things you could do...
Jim
Thanks Jim. I use IIS but I can do essentially the same thing you described. I'll get back to you once I see this toolbar again. I'm not blocking it for now because I want to see if it comes back, and if it's being used by anyone else.