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

90 lines
2.2 KiB
Perl

#-----------------------------------------------------------
# winscp.pl
#
#
# Change history
# 20140203 - created
#
# References
#
#
# copyright 2014 QAR, LLC
# Author: H. Carvey, keydet89@yahoo.com
#-----------------------------------------------------------
package winscp;
use strict;
my %config = (hive => "NTUSER\.DAT",
category => "program execution",
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 0,
osmask => 22,
version => 20140203);
sub getConfig{return %config}
sub getShortDescr {
return "Gets user's WinSCP 2 data";
}
sub getDescr{}
sub getRefs {}
sub getHive {return $config{hive};}
sub getVersion {return $config{version};}
my $VERSION = getVersion();
sub pluginmain {
my $class = shift;
my $ntuser = shift;
::logMsg("Launching winscp v.".$VERSION);
::rptMsg("winspc v.".$VERSION); # banner
::rptMsg("(".$config{hive}.") ".getShortDescr()."\n"); # banner
my $reg = Parse::Win32Registry->new($ntuser);
my $root_key = $reg->get_root_key;
my $key_path = 'Software\\Martin Prikryl\\WinSCP 2';
my $key;
if ($key = $root_key->get_subkey($key_path)) {
::rptMsg($key_path);
::rptMsg("LastWrite Time ".gmtime($key->get_timestamp())." (UTC)");
::rptMsg("");
# CDCache
eval {
::rptMsg("Configuration\\CDCache");
my @vals = $key->get_subkey("Configuration\\CDCache")->get_list_of_values();
foreach my $v (@vals) {
::rptMsg("Value: ".$v->get_name());
::rptMsg("Data : ".$v->get_data());
}
::rptMsg("");
};
# \Configuration\History\RemoteTarget
eval {
::rptMsg("Configuration\\History\\RemoteTarget");
my @vals = $key->get_subkey("Configuration\\History\\RemoteTarget")->get_list_of_values();
foreach my $v (@vals) {
::rptMsg($v->get_name()." ".$v->get_data());
}
::rptMsg("");
};
# CMI-CreateHive{D43B12B8-09B5-40DB-B4F6-F6DFEB78DAEC}\Software\Martin Prikryl\WinSCP 2\SshHostKeys
eval {
::rptMsg("SshHostKeys");
my @vals = $key->get_subkey("SshHostKeys")->get_list_of_values();
foreach my $v (@vals) {
::rptMsg("Value: ".$v->get_name());
::rptMsg("Data : ".$v->get_data());
}
::rptMsg("");
};
}
else {
::rptMsg($key_path." not found.");
}
}
1;