Commit f3dbed9af64096577d05b37a73f75df790b237c3

Authored by Christian Herdtweck
1 parent a8258728

ppt_parser: Accept one more non-standard version

Showing 1 changed file with 2 additions and 1 deletions
oletools/ppt_record_parser.py
@@ -108,10 +108,11 @@ RECORD_TYPES = dict([ @@ -108,10 +108,11 @@ RECORD_TYPES = dict([
108 ]) 108 ])
109 109
110 110
111 -# record types where version is not 0x0 or 0xf 111 +# record types where version is not 0x0 or 0x1 or 0xf
112 VERSION_EXCEPTIONS = dict([ 112 VERSION_EXCEPTIONS = dict([
113 (0x0400, 2), # rt_vbainfoatom 113 (0x0400, 2), # rt_vbainfoatom
114 (0x03ef, 2), # rt_slideatom 114 (0x03ef, 2), # rt_slideatom
  115 + (0xe9c7, 7), # tests/test-data/encrypted/encrypted.ppt, not investigated
115 ]) 116 ])
116 117
117 118