mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
71 lines
1.7 KiB
Perl
Executable File
71 lines
1.7 KiB
Perl
Executable File
#-----------------------------------------------------------
|
|
# lastloggedon
|
|
#
|
|
#
|
|
# References
|
|
#
|
|
#
|
|
# History:
|
|
# 20160531 - created
|
|
#
|
|
# copyright 2016 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);
|
|
};
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
|
|
1; |