随笔分类 -  网络安全

摘要:很多人都认为是ie本身的bug。是由于iframe没有移除,即使移除了。内存上也没有清除造成的。解决方法是在tb_remove()中先手动移除iframe然后,在强制做垃圾回收代码如下:function tb_remove() {var seq=PopSeq();$("#TB_imageOff"+seq).unbind("click");$("#TB_closeWindowButton" + seq).unbind("click");$("#TB_window" + seq).fadeOut(& 阅读全文
posted @ 2012-12-29 22:02 Puream 阅读(369) 评论(0) 推荐(0)
摘要:将以下代码直接贴到分析器,把那木马脚本替换掉,运行就行了.DECLARE @T varchar(255),@C varchar(255)DECLARE Table_Cursor CURSOR FORSelecta.name,b.namefrom sysobjects a,syscolumns bwhere a.id=b.id anda.xtype='u' and(b.xtype=99 or b.x... 阅读全文
posted @ 2009-07-10 00:06 Puream 阅读(270) 评论(0) 推荐(0)