mirror of
https://github.com/elisspace/autopsy.git
synced 2026-08-31 00:22:00 +00:00
bug fixes
This commit is contained in:
@@ -113,7 +113,7 @@ class ContactsDbIngestModule(DataSourceIngestModule):
|
||||
progressBar.switchToIndeterminate()
|
||||
|
||||
# Use blackboard class to index blackboard artifacts for keyword search
|
||||
blackboard = Case.getCurrentCase().getServices().getBlackboard()
|
||||
blackboard = Case.getCurrentCase().getSleuthkitCase().getBlackboard()
|
||||
|
||||
# Find files named contacts.db, regardless of parent path
|
||||
fileManager = Case.getCurrentCase().getServices().getFileManager()
|
||||
|
||||
@@ -145,7 +145,7 @@ class RunExeIngestModule(DataSourceIngestModule):
|
||||
# Add each argument in its own line. I.e. "-f foo" would be two calls to .add()
|
||||
cmd.add(imagePaths[0])
|
||||
|
||||
processBuilder = ProcessBuilder(cmd);
|
||||
processBuilder = ProcessBuilder(cmd)
|
||||
processBuilder.redirectOutput(reportFile)
|
||||
ExecUtil.execute(processBuilder, DataSourceIngestModuleProcessTerminator(self.context))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user