mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06:15 +00:00
93 lines
2.2 KiB
Perl
93 lines
2.2 KiB
Perl
#-----------------------------------------------------------
|
|
# netlogon.pl
|
|
#
|
|
#
|
|
# History:
|
|
# 20190223 - created
|
|
#
|
|
# References:
|
|
# https://support.microsoft.com/en-us/help/154501/how-to-disable-automatic-machine-account-password-changes
|
|
#
|
|
# copyright 2019 Quantum Analytics Research, LLC
|
|
# Author: H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
package netlogon;
|
|
use strict;
|
|
|
|
my %config = (hive => "System",
|
|
hivemask => 4,
|
|
output => "report",
|
|
category => "System Config",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 31,
|
|
version => 20190223);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Parse values for machine account password changes";
|
|
}
|
|
sub getDescr{}
|
|
sub getRefs {}
|
|
sub getHive {return $config{hive};}
|
|
sub getVersion {return $config{version};}
|
|
|
|
my $VERSION = getVersion();
|
|
my @vals;
|
|
my $name;
|
|
my $data;
|
|
my $type;
|
|
|
|
sub pluginmain {
|
|
my $class = shift;
|
|
my $hive = shift;
|
|
::logMsg("Launching netlogon v.".$VERSION);
|
|
::rptMsg("netlogon v.".$VERSION);
|
|
::rptMsg("(".$config{hive}.") ".getShortDescr()."\n");
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
my @sets = ();
|
|
|
|
my @subkeys = ();
|
|
if (@subkeys = $root_key->get_list_of_subkeys()) {
|
|
foreach my $s (@subkeys) {
|
|
my $name = $s->get_name();
|
|
push(@sets,$name) if ($name =~ m/^ControlSet/);
|
|
}
|
|
}
|
|
|
|
my $set;
|
|
foreach $set (@sets) {
|
|
::rptMsg("*** ".$set." ***");
|
|
my $key_path = $set."\\services\\NetLogon\\Parameters";
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
# ::rptMsg("LastWrite Time: ".gmtime($key->get_timestamp())." Z");
|
|
@vals = $key->get_list_of_values();
|
|
if (scalar @vals > 0) {
|
|
foreach my $v (@vals) {
|
|
$name = $v->get_name();
|
|
$data = $v->get_data();
|
|
$type = $v->get_type();
|
|
if ($type == 4) {
|
|
::rptMsg(sprintf "%-35s 0x%04x",$name,$data);
|
|
}
|
|
else {
|
|
::rptMsg(sprintf "%-35s $data",$name);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
# no values
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
::rptMsg("");
|
|
}
|
|
}
|
|
|
|
1;
|