MALICIOUS
142
Risk Score
Malware Insights
MITRE ATT&CK
T1566.001 Spearphishing Attachment
T1059.005 Visual Basic
The sample contains a VBA macro with an AutoOpen subroutine, a common technique for executing malicious code upon opening a document. The document body presents a job description lure to encourage user interaction. The AutoOpen macro manipulates document content and is likely intended to download and execute a second-stage payload, as indicated by the ClamAV detection signature 'Win.Malware.Agent-9662656-0'.
Heuristics 5
-
ClamAV: Win.Malware.Agent-9662656-0 critical CLAMAV_DETECTIONClamAV detected this file as malware: Win.Malware.Agent-9662656-0
-
VBA macros detected medium 1 related finding OLE_VBA_MACROSDocument contains VBA macro code
-
AutoOpen macro high OLE_VBA_AUTOOPENAutoOpen 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.
-
Embedded URL info EMBEDDED_URLOne 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 https://www.blockverify.com In document text (OLE body)
- https://www.BlockVerify.comIn document text (OLE body)
- http://schemas.openxmlformats.org/drawingml/2006/mainIn document text (OLE body)
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) | 799 bytes |
SHA-256: fd2db3d9d7b9a2cff213da1964fcd8a9888304668f811f33e89fc96cc54aabee |
|||
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 = "NewMacros"
Sub AutoOpen()
Dim oliPictuu As Shape
For Each oliPictuu In ActiveDocument.Shapes
If oliPictuu.AlternativeText = "GD" & "PR" Then
oliPictuu.Left = 0
oliPictuu.Top = 0
oliPictuu.Width = 0
oliPictuu.Height = 0
End If
Next oliPictuu
ActiveDocument.Content.Font.Hidden = False
ActiveDocument.Content.Font.Color = 0
ActiveDocument.Content.Font.Size = 14
End Sub
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.