diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 856ac493..b119eee5 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -89,7 +89,7 @@ namespace BurnOutSharp.FileType } // If we have a New Executable - if (wrapper is NewExecutable nex) + else if (wrapper is NewExecutable nex) { Parallel.ForEach(ScanningClasses.NewExecutableCheckClasses, contentCheckClass => { @@ -140,6 +140,8 @@ namespace BurnOutSharp.FileType }); } + // No other executable formats currently identified or supported + return protections; }