Commit 193f9efa95ecaa387728a606d0ec8c57bae720a3

Authored by decalage2
1 parent 9201fe43

clsid: added CLSID for Excel sheet (issue #298)

oletools/common/clsid.py
... ... @@ -42,14 +42,16 @@ http://www.decalage.info/python/oletools
42 42 # SQ: - several additions by Shiao Qu
43 43 # 2018-04-18 PL: - added known-bad CLSIDs from Cuckoo sandbox (issue #290)
44 44  
45   -__version__ = '0.53dev5'
  45 +__version__ = '0.53dev9'
46 46  
47 47  
48 48 KNOWN_CLSIDS = {
49 49 # MS Office files
50   - 'F4754C9B-64F5-4B40-8AF4-679732AC0607': 'Microsoft Word Document',
51   - '00020906-0000-0000-C000-000000000046': 'Microsoft Word 97-2003 Document',
52 50 '00020900-0000-0000-C000-000000000046': 'Microsoft Word 6.0-7.0 Document',
  51 + '00020906-0000-0000-C000-000000000046': 'Microsoft Word 97-2003 Document',
  52 + 'F4754C9B-64F5-4B40-8AF4-679732AC0607': 'Microsoft Word Document',
  53 +
  54 + '00020820-0000-0000-C000-000000000046': 'Microsoft Excel 97-2003 Worksheet',
53 55 '00020832-0000-0000-C000-000000000046': 'Excel sheet with macro enabled',
54 56 '00020833-0000-0000-C000-000000000046': 'Excel binary sheet with macro enabled',
55 57  
... ...
setup.py
... ... @@ -43,7 +43,7 @@ import os, fnmatch
43 43 #--- METADATA -----------------------------------------------------------------
44 44  
45 45 name = "oletools"
46   -version = '0.53dev8'
  46 +version = '0.53dev9'
47 47 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"
48 48 long_desc = open('oletools/README.rst').read()
49 49 author = "Philippe Lagadec"
... ...