What's Google doing?
#1
Posted 21 July 2012 - 01:05 PM
www.mysite.com/veuxkhbgzwab.html
The file name varies (seems to be random) but it's always a html type.
This of course gives a 404 error.
So, what's Google upto?
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#2 ONLINE
Posted 21 July 2012 - 04:24 PM
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#3
Posted 21 July 2012 - 04:56 PM
That type of random file is typical of one type of hack. Check your site for hacked files and changes to the root .htaccess file.
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#4
Posted 21 July 2012 - 05:13 PM
O my is it really a hack? In that case I've got three sites affected.
I don't have Googls webmaster tools, never thought it could be of use to me.
So I don't know how to access it or use it.
Could you please advice?
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#5
Posted 21 July 2012 - 05:44 PM
Once you set up an account, you need to verify your site. The easiest way is to add a file to your site. Then you can look under Health -> Crawl Errors -> Not Found to see those 404 pages. Click on a link and select the Linked From tab to see where it's coming from. That may or may not be helpful, but it's worth trying.
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#6
Posted 21 July 2012 - 06:33 PM
I have tried for ½hour to find "Health"... Couldn't...
So more specific, where is it?
You are worth a hug!
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#7
Posted 21 July 2012 - 07:05 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#8
Posted 21 July 2012 - 08:04 PM
Google reported no errors, and no 404 problems. Also my webhost have checked the site, using SSH, and could not find any problems.: "A common hack is to inject code which is only shown to the googlebot, but your homepage does not appear to have this hack".
A while ago someone tried this (It was stopped)
guid%E2%80%8Bes.php
What does that mean?
So, al in all I need to amend something to my htaccess which redirects any random hmtl page to index.php
How should I do that?
Then, someone is trying to reach this file: /1 which of course doesn't exist. How do I redirect that sort to index.php?
Thanks for your help!
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#9
Posted 21 July 2012 - 08:34 PM
#10
Posted 21 July 2012 - 09:44 PM
So I need something exclusive for that kind of random html pages. I found this on stack overflow:
I see 4 main approaches (you choose which one suits you more - it depends on your website rewrite rules logic):
1. Add global exclusion rule that will prevent ANY further rewrite operations on that file:
RewriteCond %{HTTP_HOST} ^website.com
RewriteRule (.*) http://www.website.com/$1 [R=301,L]
# do not do any rewriting to this file
RewriteRule somefile\.html$ - [L]
RewriteRule ^(.+)\.html$ http://www.website.com/$1.php [R=301,L]
If you wish you can specify full path to the file to be more specific (useful to exclude only 1 specific file if there are more than 1 file with such name but in different folders -- such URL should start with NO leading slash):
# do not do any rewriting to this file
RewriteRule ^full/path/to/somefile\.html$ - [L]
2. Add global exclusion rule that will prevent ANY further rewrite operations on ANY existing file or folder:
RewriteCond %{HTTP_HOST} ^website.com
RewriteRule (.*) http://www.website.com/$1 [R=301,L]
# do not do anything for already existing files
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ - [L]
RewriteRule ^(.+)\.html$ http://www.website.com/$1.php [R=301,L]
3. Add exclusion condition that will deny rewriting this particular .html file to .php:
RewriteCond %{REQUEST_URI} !somefile\.html$
RewriteRule ^(.+)\.html$ http://www.website.com/$1.php [R=301,L]
If you wish you can specify full path to the file to be more specific (useful to exclude only 1 specific file if there are more than 1 file with such name but in different folders -- such URL should start with leading slash):
RewriteCond %{REQUEST_URI} !^/full/url/path/to/somefile\.html$
4. Add exclusion condition that will only allow rewriting .html to .php if such .html file does not exist:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)\.html$ http://www.website.com/$1.php [R=301,L]
ALL RULES ABOVE intended to be placed in .htaccess in website root folder. If placed elsewhere some small tweaking may be required.
A nice set of rules. But, which one is appropriate for me?
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#11
Posted 21 July 2012 - 11:01 PM
I would not redirect 404s to any normal site page. Normally Google will see that veuxkhbgzwab.html returns a 404 Not Found and will remove it from their index. If you redirect that page to index.php, then Google will see it as a normal web page and keep it in their index. Since it looks just like your store's front page, it is ranked as a duplicate. Depending on how it is ranked, that page may have a higher ranking than the regular front page, or high enough to damage the real page's ranking. It's better to redirect to a custom 404 page, and make certain that page returns a 404 in the header.
I'm not an expert on Apache rewrite rules, so I'm not going to give an opinion on that batch.
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#12
Posted 22 July 2012 - 08:38 AM
The only hack attempt prior to the garbage html requests was in the file "guides".
Conclusively, it was that hack attempt which the hacker tried to verify see the result of.
So, what I will do is to keep an eye on Googles webmaster tools, just to find out the ip of the hacker.
A hug to you
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#13
Posted 22 July 2012 - 01:27 PM
kymation, on 21 July 2012 - 11:01 PM, said:
Quote
#14
Posted 22 July 2012 - 09:06 PM
no such string were to be found either. So, if it was a hack attempt, it failed.
Kindest
Sara
Edited by Juto, 22 July 2012 - 09:06 PM.
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#15
Posted 23 July 2012 - 12:07 AM
#16
Posted 23 July 2012 - 09:00 AM
This morning I Googled and found this: http://ghh.sourceforge.net/userfaq.php
As I understand it, the purpose is to find vulnerabilities for an attack.
Since this failed, I am secured... Confirmed by a hacker!
Kindest
Sara
http://addons.oscommerce.com/info/8010 http://addons.oscommerce.com/info/8204 http://addons.oscommerce.com/info/8681
#17
Posted 23 July 2012 - 04:13 PM









