2018-01-03 14:43:27 -05:00

67 lines
1.6 KiB
Perl

#-----------------------------------------------------------
# wbem.pl
# There are indications that the contents of this key may be associated
# with a number of different malware variants, including the Elite
# Keylogger.
#
# History
# 20120306 - created
#
#
# copyright 2012, Quantum Analytics Research, LLC
#-----------------------------------------------------------
package wbem;
use strict;
my %config = (hive => "Software",
osmask => 22,
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 0,
version => 20120306);
sub getConfig{return %config}
sub getShortDescr {
return "Get contents of WBEM\\WDM 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;
my %clsid;
::logMsg("Launching wbem v.".$VERSION);
::rptMsg("wbem v.".$VERSION); # banner
::rptMsg("(".$config{hive}.") ".getShortDescr()."\n"); # banner
my $reg = Parse::Win32Registry->new($hive);
my $root_key = $reg->get_root_key;
my $key_path = "Microsoft\\WBEM\\WDM";
my $key;
if ($key = $root_key->get_subkey($key_path)) {
::rptMsg($key_path);
::rptMsg("LastWrite Time ".gmtime($key->get_timestamp())." (UTC)");
::rptMsg("");
my @vals = $key->get_list_of_values();
if (scalar(@vals) > 0) {
foreach my $v (@vals) {
::rptMsg($v->get_name()." - ".$v->get_data());
::rptMsg("");
}
}
else {
::rptMsg($key_path." has no values.");
}
}
else {
::rptMsg($key_path." not found.");
}
}
1;