diff --git a/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionFileIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionFileIngestModule.java index 9afafb7831..aed3afc50d 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionFileIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionFileIngestModule.java @@ -324,7 +324,10 @@ final class EncryptionDetectionFileIngestModule extends FileIngestModuleAdapter Database accessDatabase; try { accessDatabase = databaseBuilder.open(); - } catch (IOException | BufferUnderflowException | IndexOutOfBoundsException ignored) { + } catch (Exception ex) { // Firewall, see JIRA-7097 + logger.log(Level.WARNING, String.format("Unexpected exception " + + "trying to open msaccess database using Jackcess " + + "(name: %s, id: %d)", file.getName(), file.getId()), ex); return passwordProtected; } /*