Mark McKinnon 78042da4c7 Update Changed plugins
Update Plugins that have changed from Autopsy's last version of Regripper.
2020-04-29 10:50:49 -04:00

77 lines
1.9 KiB
Perl

#-----------------------------------------------------------
# lastloggedon
#
#
# References
#
#
# History:
# 20180614 - Updated by Michael Godfrey
# 20160531 - created
#
# copyright 2018 Quantum Analytics Research, LLC
# Author: H. Carvey, keydet89@yahoo.com
#-----------------------------------------------------------
package lastloggedon;
use strict;
my %config = (hive => "Software",
osmask => 22,
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 0,
version => 20160531);
sub getConfig{return %config}
sub getShortDescr {
return "Gets LastLoggedOn* values from LogonUI key";
}
sub getDescr{}
sub getRefs {
my %refs = ();
return %refs;
}
sub getHive {return $config{hive};}
sub getVersion {return $config{version};}
my $VERSION = getVersion();
sub pluginmain {
my $class = shift;
my $hive = shift;
::logMsg("Launching lastloggedon v.".$VERSION);
::rptMsg("lastloggedon v.".$VERSION);
::rptMsg("(".$config{hive}.") ".getShortDescr()."\n");
my $reg = Parse::Win32Registry->new($hive);
my $root_key = $reg->get_root_key;
my ($key_path, $key);
$key_path = "Microsoft\\Windows\\CurrentVersion\\Authentication\\LogonUI";
if ($key = $root_key->get_subkey($key_path)) {
::rptMsg("LastLoggedOn");
::rptMsg($key_path);
::rptMsg("LastWrite: ".gmtime($key->get_timestamp()));
::rptMsg("");
eval {
my $lastuser = $key->get_value("LastLoggedOnUser")->get_data();
::rptMsg("LastLoggedOnUser = ".$lastuser);
};
eval {
my $lastsamuser = $key->get_value("LastLoggedOnSAMUser")->get_data();
::rptMsg("LastLoggedOnSAMUser = ".$lastsamuser);
};
# Added by Michael Godfrey
eval {
my $lastsamuserSID = $key->get_value("LastLoggedOnUserSID")->get_data();
::rptMsg("LastLoggedOnUserSID = ".$lastsamuserSID);
}
}
else {
::rptMsg($key_path." not found.");
}
}
1;