Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs
2022-03-14 22:51:17 -07:00

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;
}
}
}