From 69a04ff8252f3244225fbc6bba51bcefc8ebc1ff Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 31 Oct 2020 14:43:27 -0700 Subject: [PATCH] Hook up ITENIUM --- BurnOutSharp/FileType/Executable.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index f887b952..150a96ea 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -146,6 +146,11 @@ namespace BurnOutSharp.FileType if (!string.IsNullOrWhiteSpace(protection)) Utilities.AppendToDictionary(protections, file, protection); + // ITENIUM Trial & Buy Protection + protection = Itenium.CheckContents(fileContent, scanner.IncludePosition); + if (!string.IsNullOrWhiteSpace(protection)) + Utilities.AppendToDictionary(protections, file, protection); + // JoWooD X-Prot protection = JoWooDXProt.CheckContents(fileContent, scanner.IncludePosition); if (!string.IsNullOrWhiteSpace(protection))