1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-08-31 16:33:52 +00:00

Merge pull request #6592 from dannysmyda/7097-Encryption-Detection-Illegal-State

7097 encryption detection illegal state
This commit is contained in:
Richard Cordovano
2021-01-05 15:23:57 -05:00
committed by GitHub

View File

@@ -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;
}
/*