mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
62 lines
1.8 KiB
Perl
62 lines
1.8 KiB
Perl
#-----------------------------------------------------------
|
|
# secrets_tln.pl
|
|
# Get the last write time for the Policy\Secrets key
|
|
#
|
|
#
|
|
# History
|
|
# 20140730 - created
|
|
#
|
|
# Note: When gsecdump.exe is run with the "-a" switch, or the LSA
|
|
# secrets are dumped, the tool accesses the Policy\Secrets key
|
|
# in a way that modifies the key LastWrite time without changing
|
|
# any values or data. As such, the LastWrite time of this key may
|
|
# correlate to the time that gsecdump.exe was run. Insight for this
|
|
# plugin was provided by Jamie Levy
|
|
#
|
|
# copyright 2014 Quantum Analytics Research, LLC
|
|
# Author: H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
package secrets_tln;
|
|
use strict;
|
|
|
|
my %config = (hive => "Security",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20140814);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Get the last write time for the Policy\\Secrets key";
|
|
}
|
|
sub getDescr{}
|
|
sub getRefs {}
|
|
sub getHive {return $config{hive};}
|
|
sub getVersion {return $config{version};}
|
|
|
|
my $VERSION = getVersion();
|
|
|
|
sub pluginmain {
|
|
my $class = shift;
|
|
my $hive = shift;
|
|
# ::logMsg("Launching secrets v.".$VERSION);
|
|
# ::rptMsg("secrets v.".$VERSION); # banner
|
|
# ::rptMsg("(".$config{hive}.") ".getShortDescr()."\n"); # banner
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
|
|
my $key_path = "Policy\\Secrets";
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
# ::rptMsg($key_path);
|
|
# ::rptMsg("LastWrite Time ".gmtime($key->get_timestamp())." (UTC)");
|
|
::rptMsg($key->get_timestamp()."|REG|||".$key_path." key LastWrite time");
|
|
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
|
|
1; |