mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Fix for psxview plugin
fixed the psxview plugin returning many false positives
This commit is contained in:
parent
1a92b342ea
commit
20aeaef2ee
@ -552,8 +552,10 @@ class VolatilityProcessor implements Runnable{
|
|||||||
while ((line = br.readLine()) != null) {
|
while ((line = br.readLine()) != null) {
|
||||||
String file_path;
|
String file_path;
|
||||||
file_path = line.substring(19, 41);
|
file_path = line.substring(19, 41);
|
||||||
if (!file_path.startsWith("System")) {
|
if (!file_path.startsWith("System ")) {
|
||||||
fileSet.add(file_path.toLowerCase());
|
if (file_path.trim().length() > 0) {;
|
||||||
|
fileSet.add(file_path.toLowerCase().trim());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
br.close();
|
br.close();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user