Commit 631a172e4325278991c5955699b575569296f6f5
1 parent
52fec143
bumped version to 0.55
Showing
7 changed files
with
8 additions
and
7 deletions
oletools/crypto.py
oletools/mraptor.py
| ... | ... | @@ -61,7 +61,7 @@ http://www.decalage.info/python/oletools |
| 61 | 61 | # 2019-04-04 v0.54 PL: - added ExecuteExcel4Macro, ShellExecuteA, XLM keywords |
| 62 | 62 | # 2019-11-06 v0.55 PL: - added SetTimer |
| 63 | 63 | |
| 64 | -__version__ = '0.55.dev5' | |
| 64 | +__version__ = '0.55' | |
| 65 | 65 | |
| 66 | 66 | #------------------------------------------------------------------------------ |
| 67 | 67 | # TODO: | ... | ... |
oletools/msodde.py
| ... | ... | @@ -103,7 +103,7 @@ from oletools.common.log_helper import log_helper |
| 103 | 103 | # 2019-07-17 v0.55 CH: - fixed issue #267, unicode error on Python 2 |
| 104 | 104 | |
| 105 | 105 | |
| 106 | -__version__ = '0.55.dev3' | |
| 106 | +__version__ = '0.55' | |
| 107 | 107 | |
| 108 | 108 | # ----------------------------------------------------------------------------- |
| 109 | 109 | # TODO: field codes can be in headers/footers/comments - parse these | ... | ... |
oletools/olemap.py
| ... | ... | @@ -54,7 +54,7 @@ http://www.decalage.info/python/oletools |
| 54 | 54 | # 2018-08-28 v0.54 PL: - olefile is now a dependency |
| 55 | 55 | # 2019-07-10 v0.55 PL: - fixed display of OLE header CLSID (issue #394) |
| 56 | 56 | |
| 57 | -__version__ = '0.55.dev3' | |
| 57 | +__version__ = '0.55' | |
| 58 | 58 | |
| 59 | 59 | #------------------------------------------------------------------------------ |
| 60 | 60 | # TODO: | ... | ... |
oletools/oleobj.py
| ... | ... | @@ -87,7 +87,7 @@ from oletools.common.io_encoding import ensure_stdout_handles_unicode |
| 87 | 87 | # 2018-09-11 v0.54 PL: - olefile is now a dependency |
| 88 | 88 | # 2018-10-30 SA: - added detection of external links (PR #317) |
| 89 | 89 | |
| 90 | -__version__ = '0.55dev5' | |
| 90 | +__version__ = '0.55' | |
| 91 | 91 | |
| 92 | 92 | # ----------------------------------------------------------------------------- |
| 93 | 93 | # TODO: | ... | ... |
oletools/rtfobj.py
| ... | ... | @@ -91,7 +91,7 @@ http://www.decalage.info/python/oletools |
| 91 | 91 | # 2019-07-08 v0.55 MM: - added URL carver for CVE-2017-0199 (Equation Editor) PR #460 |
| 92 | 92 | # - added SCT to the list of executable file extensions PR #461 |
| 93 | 93 | |
| 94 | -__version__ = '0.55.dev3' | |
| 94 | +__version__ = '0.55' | |
| 95 | 95 | |
| 96 | 96 | # ------------------------------------------------------------------------------ |
| 97 | 97 | # TODO: | ... | ... |
setup.py
| ... | ... | @@ -52,7 +52,7 @@ import os, fnmatch |
| 52 | 52 | #--- METADATA ----------------------------------------------------------------- |
| 53 | 53 | |
| 54 | 54 | name = "oletools" |
| 55 | -version = '0.55.dev5' | |
| 55 | +version = '0.55' | |
| 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" |
| ... | ... | @@ -79,6 +79,7 @@ classifiers=[ |
| 79 | 79 | "Programming Language :: Python :: 3.5", |
| 80 | 80 | "Programming Language :: Python :: 3.6", |
| 81 | 81 | "Programming Language :: Python :: 3.7", |
| 82 | + "Programming Language :: Python :: 3.8", | |
| 82 | 83 | "Topic :: Security", |
| 83 | 84 | "Topic :: Software Development :: Libraries :: Python Modules", |
| 84 | 85 | ] | ... | ... |