From d0d4c87fc032bb14fa03b97cb3afd311a23bf465 Mon Sep 17 00:00:00 2001 From: kijeong kim Date: Thu, 2 Nov 2017 10:06:33 +0900 Subject: [PATCH] msodde: fix detecting an utf-16le dde string. --- oletools/msodde.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oletools/msodde.py b/oletools/msodde.py index e7862cb..d235503 100644 --- a/oletools/msodde.py +++ b/oletools/msodde.py @@ -275,7 +275,7 @@ def process_ole_field(data): if data.lstrip().lower().startswith(u'dde'): #log.debug('--> is DDE!') return data - elif data.lstrip().lower().startswith(u'\00d\x00d\x00e\x00'): + elif data.lstrip().lower().startswith(u'\x00d\x00d\x00e\x00'): return data else: return u'' -- libgit2 0.21.4