S
Sven
I'm certainly not the first to write about this subject, but I came
across it after buying a new PC with NIS on it and it messed up my
site without telling or yelling.
I solved it by this statement in the <head></head>
<script src=http://www.mydomain.com/norton.js></script>
and the script at http://www.mydomain.com/norton.js contains the
follwing code:
function undonorton(){
infected=false;
tmp=window.onerror;
if (tmp!=null){
tmp=tmp.toString();
if (tmp!=null)
if (tmp.indexOf('Sym')>=0)
infected=true;
}
if (infected){
window.open = null;
window.open = SymRealWinOpen;
window.onunload = null;
window.onload = null;
window.onerror = null;
}
}
undonorton();
I also call this script just before any window.open statement;
It works for me.
across it after buying a new PC with NIS on it and it messed up my
site without telling or yelling.
I solved it by this statement in the <head></head>
<script src=http://www.mydomain.com/norton.js></script>
and the script at http://www.mydomain.com/norton.js contains the
follwing code:
function undonorton(){
infected=false;
tmp=window.onerror;
if (tmp!=null){
tmp=tmp.toString();
if (tmp!=null)
if (tmp.indexOf('Sym')>=0)
infected=true;
}
if (infected){
window.open = null;
window.open = SymRealWinOpen;
window.onunload = null;
window.onload = null;
window.onerror = null;
}
}
undonorton();
I also call this script just before any window.open statement;
It works for me.