Commit 57ec6e295662703d06ef3d66120b2c9d40a48602
1 parent
63ec91ed
setup.py: sync oletools version number with olevba (0.40)
Showing
2 changed files
with
2 additions
and
1 deletions
oletools/olevba.py
| ... | ... | @@ -160,6 +160,7 @@ __version__ = '0.40' |
| 160 | 160 | # + do not use logging, but a provided logger (null logger by default) |
| 161 | 161 | # + setup logging (common with other oletools) |
| 162 | 162 | # + add xor bruteforcing like bbharvest |
| 163 | +# + options -a and -c should imply -d | |
| 163 | 164 | |
| 164 | 165 | # TODO later: |
| 165 | 166 | # + performance improvement: instead of searching each keyword separately, | ... | ... |
setup.py
| ... | ... | @@ -37,7 +37,7 @@ import sys, os, fnmatch |
| 37 | 37 | #--- METADATA ----------------------------------------------------------------- |
| 38 | 38 | |
| 39 | 39 | name = "oletools" |
| 40 | -version = '0.13' | |
| 40 | +version = '0.40' | |
| 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" | ... | ... |