using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType { public class MediaMaxCD3 : IPathCheck, IPortableExecutableCheck { /// 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; var resource = pex.FindResource(dataContains: "Cd3Ctl"); if (resource != null) return $"MediaMax CD-3"; // Get the .data section, if it exists if (pex.DataSectionRaw != null) { var matchers = new List { // CD3 Launch Error new ContentMatchSet(new byte?[] { 0x43, 0x44, 0x33, 0x20, 0x4C, 0x61, 0x75, 0x6E, 0x63, 0x68, 0x20, 0x45, 0x72, 0x72, 0x6F, 0x72 }, "MediaMax CD-3"), }; string match = MatchUtil.GetFirstMatch(file, pex.DataSectionRaw, matchers, includeDebug); if (!string.IsNullOrWhiteSpace(match)) return match; } // Get the .rdata section, if it exists if (pex.ResourceDataSectionRaw != null) { var matchers = new List { // DllInstallSbcp new ContentMatchSet(new byte?[] { 0x44, 0x6C, 0x6C, 0x49, 0x6E, 0x73, 0x74, 0x61, 0x6C, 0x6C, 0x53, 0x62, 0x63, 0x70 }, "MediaMax CD-3"), }; string match = MatchUtil.GetFirstMatch(file, pex.ResourceDataSectionRaw, matchers, includeDebug); if (!string.IsNullOrWhiteSpace(match)) return match; } return null; } /// public ConcurrentQueue CheckDirectoryPath(string path, IEnumerable files) { var matchers = new List { new PathMatchSet(new PathMatch("LaunchCd.exe", useEndsWith: true), "MediaMax CD-3"), }; return MatchUtil.GetAllMatches(files, matchers, any: true); } /// public string CheckFilePath(string path) { var matchers = new List { new PathMatchSet(new PathMatch("LaunchCd.exe", useEndsWith: true), "MediaMax CD-3"), }; return MatchUtil.GetFirstMatch(path, matchers, any: true); } } }