Commit d055af42cf55734510342ce05782c50943b0538f
Committed by
Philippe Lagadec
1 parent
df2ad14a
msodde: update doc, todo, history, version (now 0.52dev6)
Showing
1 changed file
with
5 additions
and
2 deletions
oletools/msodde.py
| ... | ... | @@ -7,6 +7,7 @@ msodde is a script to parse MS Office documents |
| 7 | 7 | |
| 8 | 8 | Supported formats: |
| 9 | 9 | - Word 97-2003 (.doc, .dot), Word 2007+ (.docx, .dotx, .docm, .dotm) |
| 10 | +- Excel 2007+ (.xlsx, .xlsm) (not .xlsb) | |
| 10 | 11 | |
| 11 | 12 | Author: Philippe Lagadec - http://www.decalage.info |
| 12 | 13 | License: BSD, see source code or documentation |
| ... | ... | @@ -52,12 +53,14 @@ from __future__ import print_function |
| 52 | 53 | # 2017-10-25 CH: - parse doc |
| 53 | 54 | # PL: - added logging |
| 54 | 55 | # 2017-11-10 CH: - added field blacklist and corresponding cmd line args |
| 56 | +# 2017-11-23 CH: - added support for xlsx files | |
| 55 | 57 | |
| 56 | -__version__ = '0.52dev5' | |
| 58 | +__version__ = '0.52dev6' | |
| 57 | 59 | |
| 58 | 60 | #------------------------------------------------------------------------------ |
| 59 | 61 | # TODO: field codes can be in headers/footers/comments - parse these |
| 60 | -# TODO: add xlsx support | |
| 62 | +# TODO: generalize behaviour for xlsx: find all external links (maybe rename | |
| 63 | +# command line flag for "blacklist" to "find all suspicious" or so) | |
| 61 | 64 | |
| 62 | 65 | #------------------------------------------------------------------------------ |
| 63 | 66 | # REFERENCES: | ... | ... |