Mobile app version of vmapp.org
Login or Join
Jessie594

: Removing Spam Links from Google Index Last week a site I help administer was compromised. A confluence of events (move to new hosting, brand new web application released, etc.) makes it difficult

@Jessie594

Posted in: #GoogleSearch #Spam

Last week a site I help administer was compromised. A confluence of events (move to new hosting, brand new web application released, etc.) makes it difficult to track down why it happened, but essentially an index1.php file was uploaded to the root of the site's shared hosting. We noticed a lot of spam-like traffic coming in looking like the following:
www.mysite.com/index1.php?Ugg=black-ugg-cardy-purple
We deleted the php script, locked down our hosting, disabled PHP (which wasn't necessary in the first place), changed all passwords and performed a thorough security review to ensure this doesn't happen in the future.

The problem

Google indexed the site subsequent to the file being uploaded and a site that should have a few hundred indexed pages now has 65K. I need to get these removed to stop visits to these spam links and did the following:


Updated application to return a 410 in case index1.php is requested
Added a disallow: /index1.php line to our robots.txt
Began requesting url removals from google.


Google has been crawling our site but steps 1 and 2 don't appear to have made a difference.
The 3rd step (url removal) can be automated to an extent but has a daily limit of ~1000 urls and it would obviously take ~2 months to complete. To add to this, I haven't found a straightforward way to export a list of all indexed URLs and it is a manual and tedious process to actually find these URLs to begin with.

Does anyone have any other suggestions for removing these spam links?

Thank you in advance,
JP

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Jessie594

1 Comments

Sorted by latest first Latest Oldest Best

 

@Jamie184

Yes. The first item is perfect!


Updated application to return a 410 in case index1.php is requested


But the second item needs to be removed.


Added a disallow: /index1.php line to our robots.txt


This will not allow Google and Bing to know of your 410.

As for item three,


Began requesting url removals from google.


...forget it. Too much work to be practical.

The best thing you can do is wait. It will take a while, but Google only has to hit the index1.php file once to get the picture.

Often, the best remedy in most cases like this is patience.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme