Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs
2022-05-01 17:41:50 -07:00

25 lines
752 B
C#

using BurnOutSharp.ExecutableType.Microsoft.PE;
using BurnOutSharp.Interfaces;
namespace BurnOutSharp.ProtectionType
{
public class CengaProtectDVD : IPortableExecutableCheck
{
/// <inheritdoc/>
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;
// Get the .cenega section, if it exists
bool cenegaSection = pex.ContainsSection(".cenega", exact: true);
if (cenegaSection)
return "Cenega ProtectDVD";
return null;
}
}
}