mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
62 lines
2.0 KiB
C#
62 lines
2.0 KiB
C#
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using BurnOutSharp.Interfaces;
|
|
using BurnOutSharp.Wrappers;
|
|
|
|
namespace BurnOutSharp.PackerType
|
|
{
|
|
// TODO: Add extraction
|
|
// TODO: Add version checking, if possible
|
|
// https://raw.githubusercontent.com/wolfram77web/app-peid/master/userdb.txt
|
|
public class Armadillo : IPortableExecutableCheck, IScannable
|
|
{
|
|
/// <inheritdoc/>
|
|
public string CheckPortableExecutable(string file, PortableExecutable pex, bool includeDebug)
|
|
{
|
|
// Get the sections from the executable, if possible
|
|
var sections = pex?.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
|
|
foreach (var sectionName in pex.SectionNames.Where(s => s != null && s.EndsWith("1")))
|
|
{
|
|
// Get the section strings, if they exist
|
|
List<string> strs = pex.GetFirstSectionStrings(sectionName);
|
|
if (strs != null)
|
|
{
|
|
if (strs.Any(s => s.Contains("ARMDEBUG")))
|
|
return "Armadillo";
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, string file)
|
|
{
|
|
if (!File.Exists(file))
|
|
return null;
|
|
|
|
using (var fs = File.OpenRead(file))
|
|
{
|
|
return Scan(scanner, fs, file);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, Stream stream, string file)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|