autopsy-flatpak/thirdparty/rr-full/plugins/processor_architecture.pl
2018-01-03 14:43:27 -05:00

80 lines
2.1 KiB
Perl

#-----------------------------------------------------------
# processor_architecture.pl
#
# Gets the processor_architecture registry values from the system hive
#
# Ref:
#
#
# copyright 2014 Corey Harrell (jIIr) http://journeyintoir.blogspot.com/
# Corey Harrell <corey_harrell@yahoo.com>
#-----------------------------------------------------------
package processor_architecture;
use strict;
my %config = (hive => "System",
osmask => 22,
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 0,
version => 20140505);
sub getConfig{return %config}
sub getShortDescr {
return "Get from the processor architecture from the System's environment 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 processor_architecture v.".$VERSION);
::rptMsg("processor_architecture v.".$VERSION); # banner
::rptMsg("(".getHive().") ".getShortDescr()."\n"); # banner
my $reg = Parse::Win32Registry->new($hive);
my $root_key = $reg->get_root_key;
# Code for System file, getting CurrentControlSet
my $current;
my $key_path = 'Select';
my $key;
if ($key = $root_key->get_subkey($key_path)) {
$current = $key->get_value("Current")->get_data();
my $mm_path = "ControlSet00".$current."\\Control\\Session Manager\\Environment";
my $mm;
if ($mm = $root_key->get_subkey($mm_path)) {
eval {
my $cpf = $mm->get_value("PROCESSOR_ARCHITECTURE")->get_data();
::rptMsg("PROCESSOR_ARCHITECTURE = ".$cpf);
};
eval {
my $cpf = $mm->get_value("PROCESSOR_IDENTIFIER")->get_data();
::rptMsg("PROCESSOR_IDENTIFIER = ".$cpf);
};
eval {
my $cpf = $mm->get_value("PROCESSOR_REVISION")->get_data();
::rptMsg("PROCESSOR_REVISION = ".$cpf);
};
}
else {
::rptMsg($mm_path." not found.");
}
}
else {
::rptMsg($key_path." not found.");
::logMsg($key_path." not found.");
}
}
1;