mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
24 lines
766 B
C#
24 lines
766 B
C#
using BurnOutSharp.ExecutableType.Microsoft;
|
|
|
|
namespace BurnOutSharp.PackerType
|
|
{
|
|
public class PEtite : IContentCheck
|
|
{
|
|
/// <inheritdoc/>
|
|
public string CheckContents(string file, byte[] fileContent, bool includeDebug, PortableExecutable pex, NewExecutable nex)
|
|
{
|
|
// Get the sections from the executable, if possible
|
|
var sections = pex?.SectionTable;
|
|
if (sections == null)
|
|
return null;
|
|
|
|
// Get the .petite section, if it exists -- TODO: Is there a version number that can be found?
|
|
bool nicodeSection = pex.ContainsSection(".petite", exact: true);
|
|
if (nicodeSection)
|
|
return "PEtite";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|