mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-09-22 06:45:03 +00:00
Fix EVORE IsPEExecutable check
This commit is contained in:
@@ -67,7 +67,7 @@ namespace BurnOutSharp.Tools
|
||||
try
|
||||
{
|
||||
PortableExecutable pex = PortableExecutable.Deserialize(fileContent, 0);
|
||||
return pex.ImageFileHeader.Characteristics.HasFlag(ImageObjectCharacteristics.IMAGE_FILE_DLL);
|
||||
return !pex.ImageFileHeader.Characteristics.HasFlag(ImageObjectCharacteristics.IMAGE_FILE_DLL);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user