using System.Collections.Generic; using System.IO; using System.Linq; using BinaryObjectScanner.Interfaces; using SabreTools.Serialization.Wrappers; namespace BinaryObjectScanner.Packer { // TODO: Add extraction public class dotFuscator : IExtractable, IPortableExecutableCheck { /// 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 .text section strings, if they exist List strs = pex.GetFirstSectionStrings(".text"); if (strs != null) { if (strs.Any(s => s.Contains("DotfuscatorAttribute"))) return "dotFuscator"; } return null; } /// public string Extract(string file, bool includeDebug) { if (!File.Exists(file)) return null; using (var fs = File.Open(file, FileMode.Open, FileAccess.Read, FileShare.Read)) { return Extract(fs, file, includeDebug); } } /// public string Extract(Stream stream, string file, bool includeDebug) { return null; } } }