Fix for psxview plugin

fixed the psxview plugin returning many false positives
This commit is contained in:
Mark McKinnon 2018-03-06 08:42:15 -08:00
parent 1a92b342ea
commit 20aeaef2ee

View File

@ -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();