Files
autopsy/thirdparty/rr-full/plugins/landesk_tln.pl
T

140 lines
3.6 KiB
Perl

#-----------------------------------------------------------
# landesk_tln.pl
#
#
#
# Change history
# 20160822 - minor updates based on client engagement
# 20130214 - updated with Logon info
# 20090729 - updates, H. Carvey
#
# Original copyright 2009 Don C. Weber
# Updated copyright 2013 QAR, LLC
#-----------------------------------------------------------
package landesk_tln;
use strict;
my %config = (hive => "Software",
osmask => 22,
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 0,
version => 20130214);
sub getConfig{return %config}
sub getShortDescr {
return "Get list of programs monitored by LANDESK from Software hive";
}
sub getDescr{}
sub getRefs {}
sub getHive {return $config{hive};}
sub getVersion {return $config{version};}
my $VERSION = getVersion();
my (@f,$first);
sub pluginmain {
my $class = shift;
my $hive = shift;
::logMsg("Launching landesk (TLN) v.".$VERSION);
my $reg = Parse::Win32Registry->new($hive);
my $root_key = $reg->get_root_key;
# updated added 20130326
my @paths = ("LANDesk\\ManagementSuite\\WinClient\\SoftwareMonitoring\\MonitorLog",
"Wow6432Node\\LANDesk\\ManagementSuite\\WinClient\\SoftwareMonitoring\\MonitorLog");
foreach my $key_path (@paths) {
my $key;
if ($key = $root_key->get_subkey($key_path)) {
# ::rptMsg($key_path);
# ::rptMsg("");
my @subkeys = $key->get_list_of_subkeys();
if (scalar(@subkeys) > 0) {
foreach my $s (@subkeys) {
my $lw = $s->get_timestamp();
my $name = $s->get_name();
my $user;
eval {
$user = $s->get_value("Current User")->get_data();
};
$user = "" if ($@);
# ::rptMsg($lw."|REG||".$user."|M... LanDesk - ".$name." key last modified");
# "Current User" value not included in "First Started" data, as the user value applies only to the
# "Last Started" value
eval {
@f = unpack("VV",$s->get_value("First Started")->get_data());
$first = ::getTime($f[0],$f[1]);
::rptMsg($first."|REG|||LanDesk - ".$name." First Started");
};
eval {
@f = unpack("VV",$s->get_value("Last Started")->get_data());
$first = ::getTime($f[0],$f[1]);
@f = unpack("VV",$s->get_value("Last Duration")->get_data());
my $i = c64($f[0],$f[1]);
$i = $i/10000000;
::rptMsg($first."|REG||".$user."|LanDesk - ".$name." Last Started, Last Duration : ".$i." sec. - Total Runs: ".$s->get_value("Total Runs")->get_data());
};
}
}
else {
# ::rptMsg($key_path." does not appear to have any subkeys.")
}
}
else {
# ::rptMsg($key_path." not found.");
}
}
# update added 20130327
my @paths = ("LANDesk\\Inventory\\LogonHistory\\Logons",
"Wow6432Node\\LANDesk\\Inventory\\LogonHistory\\Logons");
foreach my $key_path (@paths) {
my $key;
if ($key = $root_key->get_subkey($key_path)) {
# ::rptMsg("");
# ::rptMsg($key_path);
# ::rptMsg("LastWrite: ".gmtime($key->get_timestamp()));
# ::rptMsg("");
my @vals = $key->get_list_of_values();
if (scalar(@vals) > 0) {
foreach my $v (@vals) {
my $name = $v->get_name();
my $data = $v->get_data();
# ::rptMsg($data." Logon: ".gmtime($name));
::rptMsg($name."|REG||".$data."|LANDesk - user login recorded");
}
}
else {
# ::rptMsg($key_path." has not values\.");
}
}
else {
# ::rptMsg($key_path." not found\.");
}
}
}
# Thanks to David Cowen for sharing this code
sub c64 {
my $n1 = shift;
my $n2 = shift;
if ($n2 != 0) {
$n2 = ($n2 * 4294967296);
my $n = $n1 + $n2;
return $n;
}
else {
return $n1;
}
}
1;