From b3c57ce2b8e100dd9fdd9a2b3edfad63a148cb42 Mon Sep 17 00:00:00 2001 From: decalage2 Date: Mon, 24 May 2021 16:31:51 +0200 Subject: [PATCH] ftguess: added DLL to FType_EXE_PE --- oletools/ftguess.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oletools/ftguess.py b/oletools/ftguess.py index 28dc8d9..bdb5f44 100644 --- a/oletools/ftguess.py +++ b/oletools/ftguess.py @@ -590,8 +590,8 @@ class FType_EXE_PE (FType_Base): filetype = FTYPE.EXE_PE container = CONTAINER.BINARY application = APP.WINDOWS - name = "Windows PE Executable" - longname = "Windows Portable Executable (EXE)" + name = "Windows PE Executable or DLL" + longname = "Windows Portable Executable or DLL (EXE,DLL)" extensions = ('exe', 'dll', 'sys', 'scr') # TODO: add more from https://en.wikipedia.org/wiki/Portable_Executable content_types = ('application/vnd.microsoft.portable-executable',) PUID = 'fmt/899' -- libgit2 0.21.4