mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 21:33:08 +00:00
24 lines
736 B
C#
24 lines
736 B
C#
using BurnOutSharp.ExecutableType.Microsoft;
|
|
|
|
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class CengaProtectDVD : 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 .cenega section, if it exists
|
|
bool cenegaSection = pex.ContainsSection(".cenega", exact: true);
|
|
if (cenegaSection)
|
|
return "Cenega ProtectDVD";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|