From 06ecc1a571811df810eac1c7303a9b49629814cc Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 30 May 2023 13:43:35 -0400 Subject: [PATCH] Temporarily disable MS-CAB extraction This only affects the code for normal protection scans. This does not affect trying to run extract separately, mainly for the purposes of testing. --- BinaryObjectScanner.FileType/MicrosoftCAB.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BinaryObjectScanner.FileType/MicrosoftCAB.cs b/BinaryObjectScanner.FileType/MicrosoftCAB.cs index a8efa838..9a010724 100644 --- a/BinaryObjectScanner.FileType/MicrosoftCAB.cs +++ b/BinaryObjectScanner.FileType/MicrosoftCAB.cs @@ -29,6 +29,9 @@ namespace BinaryObjectScanner.FileType { try { + // TODO: Fix/re-enable/do ANYTHING to get this working again + return null; + // Open the cab file var cabFile = MicrosoftCabinet.Create(stream); if (cabFile == null)