Commit 40faecbfc8b5de945929a42e36a88d6ae737bb85

Authored by decalage2
1 parent 45aec6e6

olevba: bumped version to 0.56dev11 after merging PR #479

oletools/olevba.py
@@ -232,7 +232,7 @@ from __future__ import print_function @@ -232,7 +232,7 @@ from __future__ import print_function
232 # - fixed detect_vba_macros to always return VBA code as 232 # - fixed detect_vba_macros to always return VBA code as
233 # unicode on Python 3 (issues #455, #477, #587, #593) 233 # unicode on Python 3 (issues #455, #477, #587, #593)
234 234
235 -__version__ = '0.56dev10' 235 +__version__ = '0.56dev11'
236 236
237 #------------------------------------------------------------------------------ 237 #------------------------------------------------------------------------------
238 # TODO: 238 # TODO:
@@ -4246,7 +4246,7 @@ def process_file(filename, data, container, options, crypto_nesting=0): @@ -4246,7 +4246,7 @@ def process_file(filename, data, container, options, crypto_nesting=0):
4246 hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only, 4246 hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only,
4247 show_deobfuscated_code=options.show_deobfuscated_code, 4247 show_deobfuscated_code=options.show_deobfuscated_code,
4248 deobfuscate=options.deobfuscate, show_pcode=options.show_pcode, 4248 deobfuscate=options.deobfuscate, show_pcode=options.show_pcode,
4249 - no_xlm=options.no_xlm) 4249 + no_xlm=options.no_xlm)
4250 elif options.output_mode == 'triage': 4250 elif options.output_mode == 'triage':
4251 # summarized output for triage: 4251 # summarized output for triage:
4252 vba_parser.process_file_triage(show_decoded_strings=options.show_decoded_strings, 4252 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): @@ -4258,7 +4258,7 @@ def process_file(filename, data, container, options, crypto_nesting=0):
4258 hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only, 4258 hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only,
4259 show_deobfuscated_code=options.show_deobfuscated_code, 4259 show_deobfuscated_code=options.show_deobfuscated_code,
4260 deobfuscate=options.deobfuscate, show_pcode=options.show_pcode, 4260 deobfuscate=options.deobfuscate, show_pcode=options.show_pcode,
4261 - no_xlm=options.no_xlm)) 4261 + no_xlm=options.no_xlm))
4262 else: # (should be impossible) 4262 else: # (should be impossible)
4263 raise ValueError('unexpected output mode: "{0}"!'.format(options.output_mode)) 4263 raise ValueError('unexpected output mode: "{0}"!'.format(options.output_mode))
4264 4264
setup.py
@@ -52,7 +52,7 @@ import os, fnmatch @@ -52,7 +52,7 @@ import os, fnmatch
52 #--- METADATA ----------------------------------------------------------------- 52 #--- METADATA -----------------------------------------------------------------
53 53
54 name = "oletools" 54 name = "oletools"
55 -version = '0.56dev10' 55 +version = '0.56dev11'
56 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" 56 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"
57 long_desc = open('oletools/README.rst').read() 57 long_desc = open('oletools/README.rst').read()
58 author = "Philippe Lagadec" 58 author = "Philippe Lagadec"