diff --git a/oletools/olevba.py b/oletools/olevba.py index 0c910e9..0272288 100644 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -227,8 +227,9 @@ from __future__ import print_function # 2020-01-31 v0.56 KS: - added option --no-xlm, improved MHT detection # 2020-03-22 PL: - uses plugin_biff to display DCONN objects and their URL # 2020-06-11 PL: - fixed issue #575 when decompressing raw chunks in VBA +# 2020-09-03 MX: - fixed issue #602 monkeypatch in email package -__version__ = '0.56dev6' +__version__ = '0.56dev7' #------------------------------------------------------------------------------ # TODO: diff --git a/setup.py b/setup.py index ee6c6e9..eaf62b8 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.56dev6' +version = '0.56dev7' 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"