mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Fix plugin ps*
Fix System file in ps* plugin output
This commit is contained in:
parent
3812b10e79
commit
1a92b342ea
@ -512,7 +512,9 @@ 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, 37);
|
file_path = line.substring(19, 37);
|
||||||
fileSet.add(file_path.toLowerCase());
|
if (!file_path.startsWith("System")) {
|
||||||
|
fileSet.add(file_path.toLowerCase());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
br.close();
|
br.close();
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
@ -530,7 +532,9 @@ 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);
|
||||||
fileSet.add(file_path.toLowerCase());
|
if (!file_path.startsWith("System")) {
|
||||||
|
fileSet.add(file_path.toLowerCase());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
br.close();
|
br.close();
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
@ -548,7 +552,9 @@ 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);
|
||||||
fileSet.add(file_path.toLowerCase());
|
if (!file_path.startsWith("System")) {
|
||||||
|
fileSet.add(file_path.toLowerCase());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
br.close();
|
br.close();
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
@ -568,7 +574,9 @@ class VolatilityProcessor implements Runnable{
|
|||||||
String TAG = ":";
|
String TAG = ":";
|
||||||
if (line.contains(TAG)) {
|
if (line.contains(TAG)) {
|
||||||
file_path = line.substring(line.indexOf(":") + 1, 52);
|
file_path = line.substring(line.indexOf(":") + 1, 52);
|
||||||
fileSet.add(file_path.toLowerCase());
|
if (!file_path.startsWith("System")) {
|
||||||
|
fileSet.add(file_path.toLowerCase());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
br.close();
|
br.close();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user