Commit bbc4c0c53c0f2af6cce1f6688abcfaa82908a064
1 parent
5c03a4af
updated changelog and bumped version to 0.60.2dev5
Showing
4 changed files
with
5 additions
and
5 deletions
LICENSE.md
| 1 | 1 | This license applies to the python-oletools package, apart from the thirdparty folder which contains third-party files |
| 2 | 2 | published with their own license. |
| 3 | 3 | |
| 4 | -The python-oletools package is copyright (c) 2012-2023 Philippe Lagadec (http://www.decalage.info) | |
| 4 | +The python-oletools package is copyright (c) 2012-2024 Philippe Lagadec (http://www.decalage.info) | |
| 5 | 5 | |
| 6 | 6 | All rights reserved. |
| 7 | 7 | ... | ... |
README.md
| ... | ... | @@ -253,7 +253,7 @@ License |
| 253 | 253 | This license applies to the python-oletools package, apart from the thirdparty folder which contains third-party files |
| 254 | 254 | published with their own license. |
| 255 | 255 | |
| 256 | -The python-oletools package is copyright (c) 2012-2023 Philippe Lagadec (http://www.decalage.info) | |
| 256 | +The python-oletools package is copyright (c) 2012-2024 Philippe Lagadec (http://www.decalage.info) | |
| 257 | 257 | |
| 258 | 258 | All rights reserved. |
| 259 | 259 | ... | ... |
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-2022 Philippe Lagadec (http://www.decalage.info) | |
| 35 | +# olevba is copyright (c) 2014-2024 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, |
| ... | ... | @@ -236,7 +236,7 @@ from __future__ import print_function |
| 236 | 236 | # 2021-04-14 PL: - added detection of Workbook_BeforeClose (issue #518) |
| 237 | 237 | # 2021-11-09 KJ: - added PROJECTCOMPATVERSION Record on dir Stream |
| 238 | 238 | |
| 239 | -__version__ = '0.60.2dev1' | |
| 239 | +__version__ = '0.60.2dev5' | |
| 240 | 240 | |
| 241 | 241 | #------------------------------------------------------------------------------ |
| 242 | 242 | # TODO: | ... | ... |
setup.py
| ... | ... | @@ -55,7 +55,7 @@ import os, fnmatch |
| 55 | 55 | #--- METADATA ----------------------------------------------------------------- |
| 56 | 56 | |
| 57 | 57 | name = "oletools" |
| 58 | -version = '0.60.2dev4' | |
| 58 | +version = '0.60.2dev5' | |
| 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" | ... | ... |