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