两行CSS来解决,共5种方案
一、
iframe{n1ifm:expression(this.src='about:blank',this.outerHTML='');}/*这行代码是解决挂IFRAME木马的哦*/
script{nojs1:expression((this.src.toLowerCase().indexOf('http')==0)?document.write('木马被成功隔离!'):'');}
原理:将script标记的src拿出来转为小写,再看是不是以http开头的外域JS脚本文件,如果是,则页面内容清空并写出木马被成功隔离!。反之正常显示。 缺点:访客无法看到被感染了script木马的页面。
二、
iframe{nifm2:expression(this.src='about:blank',this.outerHTML='');}
script{no2js:expression((this.src.toLowerCase().indexOf('http')==0)?document.close():'');}
原理:将外域的JS文件的document.wr...[ 查看全文 ]