diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 8737ec16..78197583 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -139,6 +139,10 @@ namespace BurnOutSharp.FileType // If we have a PE executable, iterate through all PE content checks if (pex?.Initialized == true) { + // Print the section table for debug + if (scanner.IncludeDebug && pex.SectionTable != null) + pex.PrintAllSections(); + Parallel.ForEach(ScanningClasses.PortableExecutableCheckClasses, contentCheckClass => { // Check using custom content checks first