mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
62 lines
1.6 KiB
Perl
62 lines
1.6 KiB
Perl
#-----------------------------------------------------------
|
|
# networkcards
|
|
#
|
|
# copyright 2008 H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
package networkcards;
|
|
use strict;
|
|
|
|
my %config = (hive => "Software",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20080325);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Get NetworkCards";
|
|
}
|
|
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 networkcards v.".$VERSION);
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
my $key_path = "Microsoft\\Windows NT\\CurrentVersion\\NetworkCards";
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
::rptMsg("NetworkCards");
|
|
::rptMsg($key_path);
|
|
::rptMsg("");
|
|
my @subkeys = $key->get_list_of_subkeys();
|
|
if (scalar(@subkeys) > 0) {
|
|
my %nc;
|
|
foreach my $s (@subkeys) {
|
|
my $service = $s->get_value("ServiceName")->get_data();
|
|
$nc{$service}{descr} = $s->get_value("Description")->get_data();
|
|
$nc{$service}{lastwrite} = $s->get_timestamp();
|
|
}
|
|
|
|
foreach my $n (keys %nc) {
|
|
::rptMsg($nc{$n}{descr}." [".gmtime($nc{$n}{lastwrite})."]");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." has no subkeys.");
|
|
::logMsg($key_path." has no subkeys.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
::logMsg($key_path." not found.");
|
|
}
|
|
}
|
|
1; |