mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
75 lines
2.0 KiB
Perl
75 lines
2.0 KiB
Perl
#-----------------------------------------------------------
|
|
# compname.pl
|
|
# Plugin for Registry Ripper; Access System hive file to get the
|
|
# computername
|
|
#
|
|
# Change history
|
|
# 20090727 - added Hostname
|
|
#
|
|
# References
|
|
# http://support.microsoft.com/kb/314053/
|
|
#
|
|
# copyright 2009 H. Carvey
|
|
#-----------------------------------------------------------
|
|
package compname;
|
|
use strict;
|
|
|
|
my %config = (hive => "System",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20090727);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Gets ComputerName and Hostname values 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 compname v.".$VERSION);
|
|
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 $key_path = 'Select';
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
$current = $key->get_value("Current")->get_data();
|
|
$ccs = "ControlSet00".$current;
|
|
my $cn_path = $ccs."\\Control\\ComputerName\\ComputerName";
|
|
my $cn;
|
|
if ($cn = $root_key->get_subkey($cn_path)) {
|
|
my $name = $cn->get_value("ComputerName")->get_data();
|
|
::rptMsg("ComputerName = ".$name);
|
|
}
|
|
else {
|
|
::rptMsg($cn_path." not found.");
|
|
::logMsg($cn_path." not found.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
::logMsg($key_path." not found.");
|
|
}
|
|
|
|
my $hostname;
|
|
eval {
|
|
my $host_path = $ccs."\\Services\\Tcpip\\Parameters";
|
|
$hostname = $root_key->get_subkey($host_path)->get_value("Hostname")->get_data();
|
|
::rptMsg("TCP/IP Hostname = ".$hostname);
|
|
};
|
|
|
|
}
|
|
|
|
1; |