Commit b3c57ce2b8e100dd9fdd9a2b3edfad63a148cb42
1 parent
c6318571
ftguess: added DLL to FType_EXE_PE
Showing
1 changed file
with
2 additions
and
2 deletions
oletools/ftguess.py
| @@ -590,8 +590,8 @@ class FType_EXE_PE (FType_Base): | @@ -590,8 +590,8 @@ class FType_EXE_PE (FType_Base): | ||
| 590 | filetype = FTYPE.EXE_PE | 590 | filetype = FTYPE.EXE_PE |
| 591 | container = CONTAINER.BINARY | 591 | container = CONTAINER.BINARY |
| 592 | application = APP.WINDOWS | 592 | application = APP.WINDOWS |
| 593 | - name = "Windows PE Executable" | ||
| 594 | - longname = "Windows Portable Executable (EXE)" | 593 | + name = "Windows PE Executable or DLL" |
| 594 | + longname = "Windows Portable Executable or DLL (EXE,DLL)" | ||
| 595 | extensions = ('exe', 'dll', 'sys', 'scr') # TODO: add more from https://en.wikipedia.org/wiki/Portable_Executable | 595 | extensions = ('exe', 'dll', 'sys', 'scr') # TODO: add more from https://en.wikipedia.org/wiki/Portable_Executable |
| 596 | content_types = ('application/vnd.microsoft.portable-executable',) | 596 | content_types = ('application/vnd.microsoft.portable-executable',) |
| 597 | PUID = 'fmt/899' | 597 | PUID = 'fmt/899' |