Commit dfbcabb957644769d17dfbb367eb3a52167c0506
1 parent
45a528aa
Updated version after PR #737 and license for 2022
Showing
3 changed files
with
4 additions
and
4 deletions
README.md
| ... | ... | @@ -225,7 +225,7 @@ License |
| 225 | 225 | This license applies to the python-oletools package, apart from the thirdparty folder which contains third-party files |
| 226 | 226 | published with their own license. |
| 227 | 227 | |
| 228 | -The python-oletools package is copyright (c) 2012-2021 Philippe Lagadec (http://www.decalage.info) | |
| 228 | +The python-oletools package is copyright (c) 2012-2022 Philippe Lagadec (http://www.decalage.info) | |
| 229 | 229 | |
| 230 | 230 | All rights reserved. |
| 231 | 231 | ... | ... |
oletools/olevba.py
| ... | ... | @@ -32,7 +32,7 @@ https://github.com/unixfreak0037/officeparser |
| 32 | 32 | |
| 33 | 33 | # === LICENSE ================================================================== |
| 34 | 34 | |
| 35 | -# olevba is copyright (c) 2014-2021 Philippe Lagadec (http://www.decalage.info) | |
| 35 | +# olevba is copyright (c) 2014-2022 Philippe Lagadec (http://www.decalage.info) | |
| 36 | 36 | # All rights reserved. |
| 37 | 37 | # |
| 38 | 38 | # Redistribution and use in source and binary forms, with or without modification, |
| ... | ... | @@ -235,7 +235,7 @@ from __future__ import print_function |
| 235 | 235 | # for issue #619) |
| 236 | 236 | # 2021-04-14 PL: - added detection of Workbook_BeforeClose (issue #518) |
| 237 | 237 | |
| 238 | -__version__ = '0.60.1.dev3' | |
| 238 | +__version__ = '0.60.1.dev6' | |
| 239 | 239 | |
| 240 | 240 | #------------------------------------------------------------------------------ |
| 241 | 241 | # TODO: | ... | ... |
setup.py
| ... | ... | @@ -55,7 +55,7 @@ import os, fnmatch |
| 55 | 55 | #--- METADATA ----------------------------------------------------------------- |
| 56 | 56 | |
| 57 | 57 | name = "oletools" |
| 58 | -version = '0.60.1.dev5' | |
| 58 | +version = '0.60.1.dev6' | |
| 59 | 59 | 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" |
| 60 | 60 | long_desc = open('oletools/README.rst').read() |
| 61 | 61 | author = "Philippe Lagadec" | ... | ... |