Commit dfd6b4f0453b3362e8e8b5e6f5aac88cf3541622
1 parent
f01da293
updated readme and setup.py for v0.41
Showing
2 changed files
with
4 additions
and
2 deletions
README.md
| ... | ... | @@ -22,7 +22,9 @@ Note: python-oletools is not related to OLETools published by BeCubed Software. |
| 22 | 22 | News |
| 23 | 23 | ---- |
| 24 | 24 | |
| 25 | -- **2015-09-17 v0.40**: Improved macro deobfuscation in [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba), | |
| 25 | +- **2015-09-22 v0.41**: added new --reveal option to [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba), | |
| 26 | +to show the macro code with VBA strings deobfuscated. | |
| 27 | +- 2015-09-17 v0.40: Improved macro deobfuscation in [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba), | |
| 26 | 28 | to decode Hex and Base64 within VBA expressions. Display printable deobfuscated strings by |
| 27 | 29 | default. Improved the VBA_Parser API. Improved performance. |
| 28 | 30 | Fixed [issue #23](https://bitbucket.org/decalage/oletools/issue/23) with sys.stderr. | ... | ... |
setup.py
| ... | ... | @@ -37,7 +37,7 @@ import sys, os, fnmatch |
| 37 | 37 | #--- METADATA ----------------------------------------------------------------- |
| 38 | 38 | |
| 39 | 39 | name = "oletools" |
| 40 | -version = '0.40' | |
| 40 | +version = '0.41' | |
| 41 | 41 | 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" |
| 42 | 42 | long_desc = open('oletools/README.rst').read() |
| 43 | 43 | author ="Philippe Lagadec" | ... | ... |