mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-09-21 22:34:58 +00:00
Create LE during scan as well
This commit is contained in:
@@ -53,12 +53,14 @@ namespace BurnOutSharp.FileType
|
||||
}
|
||||
}
|
||||
|
||||
// Create PortableExecutable and NewExecutable objects for use in the checks
|
||||
// Create Executable objects for use in the checks
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
PortableExecutable pex = PortableExecutable.Create(stream);
|
||||
LinearExecutable lex = LinearExecutable.Create(stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
NewExecutable nex = NewExecutable.Create(stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
PortableExecutable pex = PortableExecutable.Create(stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
|
||||
// Iterate through all generic content checks
|
||||
if (fileContent != null)
|
||||
|
||||
Reference in New Issue
Block a user