mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
69 lines
2.0 KiB
Perl
69 lines
2.0 KiB
Perl
#-----------------------------------------------------------
|
|
# securityproviders.pl
|
|
# Get contents of SecurityProviders value in System hive; MS says
|
|
# that Win32/Hioles.C uses this key as a persistence mechanism
|
|
#
|
|
# Change history
|
|
# 20120312 - added Hostname
|
|
#
|
|
# References
|
|
#
|
|
#
|
|
# copyright 2012 Quantum Analytics Research, LLC
|
|
# Author: H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
package securityproviders;
|
|
use strict;
|
|
|
|
my %config = (hive => "System",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20120312);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Gets SecurityProvider value from System hive";
|
|
}
|
|
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 securityproviders v.".$VERSION);
|
|
::rptMsg("Launching securityproviders v.".$VERSION);
|
|
::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 $sel_path = 'Select';
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($sel_path)) {
|
|
$current = $key->get_value("Current")->get_data();
|
|
$ccs = "ControlSet00".$current;
|
|
my $key_path = $ccs."\\Control\\SecurityProviders";
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
::rptMsg("LastWrite: ".gmtime($key->get_timestamp()));
|
|
::rptMsg("");
|
|
my $providers = $key->get_value("SecurityProviders")->get_data();
|
|
::rptMsg("SecurityPrividers = ".$providers);
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($sel_path." not found.");
|
|
}
|
|
}
|
|
1; |