diff --git a/oletools/olevba.py b/oletools/olevba.py index 4a1a952..d820f00 100644 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -232,7 +232,7 @@ from __future__ import print_function # - fixed detect_vba_macros to always return VBA code as # unicode on Python 3 (issues #455, #477, #587, #593) -__version__ = '0.56dev10' +__version__ = '0.56dev11' #------------------------------------------------------------------------------ # TODO: @@ -4246,7 +4246,7 @@ def process_file(filename, data, container, options, crypto_nesting=0): hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only, show_deobfuscated_code=options.show_deobfuscated_code, deobfuscate=options.deobfuscate, show_pcode=options.show_pcode, - no_xlm=options.no_xlm) + no_xlm=options.no_xlm) elif options.output_mode == 'triage': # summarized output for triage: vba_parser.process_file_triage(show_decoded_strings=options.show_decoded_strings, @@ -4258,7 +4258,7 @@ def process_file(filename, data, container, options, crypto_nesting=0): hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only, show_deobfuscated_code=options.show_deobfuscated_code, deobfuscate=options.deobfuscate, show_pcode=options.show_pcode, - no_xlm=options.no_xlm)) + no_xlm=options.no_xlm)) else: # (should be impossible) raise ValueError('unexpected output mode: "{0}"!'.format(options.output_mode)) diff --git a/setup.py b/setup.py index 5576ad5..aa7bf06 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.56dev10' +version = '0.56dev11' desc = "Python tools to analyze security characteristics of MS Office and OLE files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), for Malware Analysis and Incident Response #DFIR" long_desc = open('oletools/README.rst').read() author = "Philippe Lagadec"