diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 21ea9ac0..046dff8e 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -93,10 +93,10 @@ namespace BurnOutSharp.FileType if (!string.IsNullOrWhiteSpace(protection)) protections.Add(protection); - // CD Check - protection = CDCheck.CheckContents(fileContent, includePosition); - if (!string.IsNullOrWhiteSpace(protection)) - protections.Add(protection); + // CD Check - Disabled because of too many false positives + //protection = CDCheck.CheckContents(fileContent, includePosition); + //if (!string.IsNullOrWhiteSpace(protection)) + // protections.Add(protection); // Cenega ProtectDVD protection = CengaProtectDVD.CheckContents(fileContent, includePosition); diff --git a/BurnOutSharp/ProtectionType/WiseInstaller.cs b/BurnOutSharp/ProtectionType/WiseInstaller.cs index 32e5125a..5e7d550a 100644 --- a/BurnOutSharp/ProtectionType/WiseInstaller.cs +++ b/BurnOutSharp/ProtectionType/WiseInstaller.cs @@ -13,9 +13,7 @@ namespace BurnOutSharp.ProtectionType byte[] check = new byte[] { 0x57, 0x69, 0x73, 0x65, 0x4D, 0x61, 0x69, 0x6E }; if (fileContent.Contains(check, out int position)) { - List protections = new List { "Wise Installation Wizard Module" + (includePosition ? $" (Index {position})" : string.Empty) - }; - + List protections = new List { "Wise Installation Wizard Module" + (includePosition ? $" (Index {position})" : string.Empty) }; if (!File.Exists(file)) return protections;