Commit 40faecbfc8b5de945929a42e36a88d6ae737bb85
1 parent
45aec6e6
olevba: bumped version to 0.56dev11 after merging PR #479
Showing
2 changed files
with
4 additions
and
4 deletions
oletools/olevba.py
| ... | ... | @@ -232,7 +232,7 @@ from __future__ import print_function |
| 232 | 232 | # - fixed detect_vba_macros to always return VBA code as |
| 233 | 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 | 238 | # TODO: |
| ... | ... | @@ -4246,7 +4246,7 @@ def process_file(filename, data, container, options, crypto_nesting=0): |
| 4246 | 4246 | hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only, |
| 4247 | 4247 | show_deobfuscated_code=options.show_deobfuscated_code, |
| 4248 | 4248 | deobfuscate=options.deobfuscate, show_pcode=options.show_pcode, |
| 4249 | - no_xlm=options.no_xlm) | |
| 4249 | + no_xlm=options.no_xlm) | |
| 4250 | 4250 | elif options.output_mode == 'triage': |
| 4251 | 4251 | # summarized output for triage: |
| 4252 | 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 | 4258 | hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only, |
| 4259 | 4259 | show_deobfuscated_code=options.show_deobfuscated_code, |
| 4260 | 4260 | deobfuscate=options.deobfuscate, show_pcode=options.show_pcode, |
| 4261 | - no_xlm=options.no_xlm)) | |
| 4261 | + no_xlm=options.no_xlm)) | |
| 4262 | 4262 | else: # (should be impossible) |
| 4263 | 4263 | raise ValueError('unexpected output mode: "{0}"!'.format(options.output_mode)) |
| 4264 | 4264 | ... | ... |
setup.py
| ... | ... | @@ -52,7 +52,7 @@ import os, fnmatch |
| 52 | 52 | #--- METADATA ----------------------------------------------------------------- |
| 53 | 53 | |
| 54 | 54 | name = "oletools" |
| 55 | -version = '0.56dev10' | |
| 55 | +version = '0.56dev11' | |
| 56 | 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 | 57 | long_desc = open('oletools/README.rst').read() |
| 58 | 58 | author = "Philippe Lagadec" | ... | ... |