mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-11 23:46:15 +00:00
74 lines
1.7 KiB
Perl
74 lines
1.7 KiB
Perl
#-----------------------------------------------------------
|
|
# printermru.pl
|
|
# Plugin to get RealVNC MRU listings from NTUSER.DAT
|
|
#
|
|
# Change history
|
|
# 20091125 - created
|
|
#
|
|
# References
|
|
#
|
|
# copyright 2009 H. Carvey
|
|
#-----------------------------------------------------------
|
|
package printermru;
|
|
use strict;
|
|
|
|
my %config = (hive => "NTUSER\.DAT",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20091125);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Gets user's Printer Wizard MRU listing";
|
|
}
|
|
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 printermru v.".$VERSION);
|
|
my $reg = Parse::Win32Registry->new($ntuser);
|
|
my $root_key = $reg->get_root_key;
|
|
|
|
my $key_path = 'Printers\\Settings\\Wizard\\ConnectMRU';
|
|
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) {
|
|
my %mru;
|
|
my @list;
|
|
foreach my $v (@vals) {
|
|
$mru{$v->get_name()} = $v->get_data();
|
|
}
|
|
|
|
if (exists $mru{MRUList}) {
|
|
@list = split(//,$mru{MRUList});
|
|
}
|
|
|
|
::rptMsg("Printers listed in MRUList order.");
|
|
foreach my $i (0..scalar(@list) - 1) {
|
|
::rptMsg(" ".$list[$i]." -> ".$mru{$list[$i]});
|
|
}
|
|
|
|
|
|
}
|
|
else {
|
|
::rptMsg($key_path." has no values.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
|
|
1; |