mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-16 13:55:18 +00:00
50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
using System.Linq;
|
|
using BinaryObjectScanner.Interfaces;
|
|
using SabreTools.Serialization.Wrappers;
|
|
|
|
namespace BinaryObjectScanner.Packer
|
|
{
|
|
// TODO: Add extraction
|
|
// TODO: Add version checking, if possible
|
|
// https://raw.githubusercontent.com/wolfram77web/app-peid/master/userdb.txt
|
|
public class Armadillo : IExtractablePortableExecutable, IPortableExecutableCheck
|
|
{
|
|
/// <inheritdoc/>
|
|
public string? CheckPortableExecutable(string file, PortableExecutable pex, bool includeDebug)
|
|
{
|
|
// Get the sections from the executable, if possible
|
|
var sections = pex.Model.SectionTable;
|
|
if (sections == null)
|
|
return null;
|
|
|
|
// Get the .nicode section, if it exists
|
|
bool nicodeSection = pex.ContainsSection(".nicode", exact: true);
|
|
if (nicodeSection)
|
|
return "Armadillo";
|
|
|
|
// Loop through all "extension" sections -- usually .data1 or .text1
|
|
if (pex.SectionNames != null)
|
|
{
|
|
foreach (var sectionName in pex.SectionNames.Where(s => s != null && s.EndsWith("1")))
|
|
{
|
|
// Get the section strings, if they exist
|
|
var strs = pex.GetFirstSectionStrings(sectionName);
|
|
if (strs != null)
|
|
{
|
|
if (strs.Any(s => s.Contains("ARMDEBUG")))
|
|
return "Armadillo";
|
|
}
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public string? Extract(string file, PortableExecutable pex, bool includeDebug)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|