View Single Post
Old 10-22-2006, 11:28 PM  
Adultnet
Confirmed User
 
Join Date: Sep 2003
Posts: 8,713
Quote:
Originally Posted by Zyber View Post
This is a nice solution which will work as long as Zango choose to disclose it's presence via the User Agent information. So it is not 100% bullet-proof

I would also search for their alternative name - "seekmo" - in addition to "zango".

Replace
if (agt.indexOf("zango")!=-1)

With
if (agt.indexOf("zango")!=-1 || agt.indexOf("seekmo")!=-1)

The final script would look like

<script>
var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("zango")!=-1 || agt.indexOf("seekmo")!=-1){
alert("WARNING - do not close this message - please read - You have what many people call dangerous spyware known as ZANGO installed on your system. We are not here to sell you anything you can remove it for free simply go to google and type REMOVE ZANGO into the search box and you will find many websites to help you remove it.");
window.open('http://www.google.com/search?q=remove+zango','_top');
}
</script>


Thanks to Smokey for providing a small and simple solution which webmasters can implement. Better than nothing.
yeah this can work..
__________________


TrafficCashGold Paying Webmasters Since 1996!

Awesome Conversions! Fast Weekly Payments! Over 125 Tours!
Adultnet is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote