mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-11 23:46:15 +00:00
80 lines
2.0 KiB
Perl
80 lines
2.0 KiB
Perl
#-----------------------------------------------------------
|
|
# pending.pl
|
|
#
|
|
# History:
|
|
# 20130711 - created
|
|
#
|
|
# References:
|
|
# http://technet.microsoft.com/en-us/library/cc960241.aspx
|
|
#
|
|
#
|
|
#
|
|
# copyright 2013 Quantum Analytics Research, LLC
|
|
# Author: H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
package pending;
|
|
use strict;
|
|
|
|
my %config = (hive => "System",
|
|
hivemask => 4,
|
|
output => "report",
|
|
category => "System Activity",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 31, #XP - Win7
|
|
version => 20130711);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Gets contents of PendingFileRenameOperations value";
|
|
}
|
|
sub getDescr{}
|
|
sub getRefs {}
|
|
sub getHive {return $config{hive};}
|
|
sub getVersion {return $config{version};}
|
|
|
|
my $VERSION = getVersion();
|
|
my %files;
|
|
|
|
sub pluginmain {
|
|
my $class = shift;
|
|
my $hive = shift;
|
|
::logMsg("Launching pending v.".$VERSION);
|
|
::rptMsg("pending v.".$VERSION); # banner
|
|
::rptMsg("(".$config{hive}.") ".getShortDescr()."\n"); # banner
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
# First thing to do is get the ControlSet00x marked current...this is
|
|
# going to be used over and over again in plugins that access the system
|
|
# file
|
|
my ($current,$ccs);
|
|
my $key_path = 'Select';
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
$current = $key->get_value("Current")->get_data();
|
|
$ccs = "ControlSet00".$current;
|
|
my $sm_path = $ccs."\\Control\\Session Manager";
|
|
my $sm;
|
|
if ($sm = $root_key->get_subkey($sm_path)) {
|
|
|
|
eval {
|
|
my $pend = $sm->get_value("PendingFileRenameOperations")->get_value();
|
|
|
|
::rptMsg($pend);
|
|
};
|
|
if ($@) {
|
|
::rptMsg("PendingFileRenameOperations value not found\.");
|
|
}
|
|
|
|
}
|
|
else {
|
|
::rptMsg($sm_path." not found.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
|
|
1; |