MALICIOUS
220
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
T1566.001 Spearphishing Attachment
The file is identified as malicious by ClamAV with the signature Doc.Trojan.Eight941-1. It contains a VBA macro within the Document_Open subroutine, which is designed to execute automatically when the document is opened. This macro is likely responsible for downloading and executing a secondary payload, a common technique for malware delivery.
Heuristics 4
-
ClamAV: Doc.Trojan.Eight941-1 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Eight941-1
-
OLE document has large unaccounted-for region high OLE_SLACK_ANOMALYOLE file is 47,616 bytes but its declared streams total only 27,233 bytes — 20,383 bytes (43%) live in unallocated sector slack. This is the canonical hiding place for pre-macro-era Office exploit payloads (XOR-encoded shellcode reached via a parser pointer-corruption bug in the document structure).
-
VBA macros detected medium 1 related finding OLE_VBA_MACROSDocument contains VBA macro code
-
Document_Open macro high OLE_VBA_DOCOPENDocument_Open macro
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) | 6663 bytes |
SHA-256: 772c3d5cf38cc617a53a9d2c62cfa326dea4e17a729f9701cf3f363fc22e0f7d |
|||
|
Detection
ClamAV:
Doc.Trojan.Eight941-1
Obfuscation or payload:
unlikely
|
|||
Preview scriptFirst 1,000 lines of the extracted script
Attribute VB_Name = "ThisDocument"
Attribute VB_Base = "1Normal.ThisDocument"
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = True
Attribute VB_TemplateDerived = True
Attribute VB_Customizable = True
Private Sub Document_Open()
On Error GoTo 0
Dim i, j As Integer
j = -1
For i = 1 To Application.VBE.VBProjects.Count
If Application.VBE.VBProjects(i).Name = "Normal" Then
End If
j = i
... (truncated)
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.