This is a nice solution which will work as long as Zango choose to disclose it's presence via the User Agent information. So not 100% bullet-proof.
I would also seek 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.");
}
</script>
|