From 0390ee33635a059bf4fad663c659d61b3309eafd Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 10 Dec 2022 22:42:03 -0800 Subject: [PATCH] Don't print section table on debug now --- BurnOutSharp/FileType/Executable.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 5092b9c8..9dae8144 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -107,10 +107,6 @@ namespace BurnOutSharp.FileType // If we have a PE executable, iterate through all PE content checks if (pex != null) { - // 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