mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 13:45:25 +00:00
25 lines
752 B
C#
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;
|
|
}
|
|
}
|
|
}
|