mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 02:07:42 +00:00
128 lines
3.0 KiB
Perl
128 lines
3.0 KiB
Perl
#-----------------------------------------------------------
|
|
# profiler.pl
|
|
#
|
|
#
|
|
# Change history
|
|
# 20140508 - created
|
|
#
|
|
# References
|
|
# http://www.hexacorn.com/blog/2014/04/27/beyond-good-ol-run-key-part-11/
|
|
#
|
|
# Copyright 2014 QAR, LLC
|
|
# Author: H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
# Require #
|
|
package profiler;
|
|
use strict;
|
|
|
|
# Declarations #
|
|
my %config = (hive => "NTUSER\.DAT, System",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
category => "autostart",
|
|
version => 20140510);
|
|
my $VERSION = getVersion();
|
|
|
|
# Functions #
|
|
sub getConfig {return %config}
|
|
sub getHive {return $config{hive};}
|
|
sub getVersion {return $config{version};}
|
|
sub getDescr {}
|
|
sub getShortDescr {
|
|
return "Environment profiler information";
|
|
}
|
|
sub getRefs {}
|
|
|
|
sub pluginmain {
|
|
my $class = shift;
|
|
my $hive = shift;
|
|
|
|
::logMsg("Launching profiler v.".$VERSION);
|
|
::rptMsg("profiler v.".$VERSION);
|
|
::rptMsg("(".$config{hive}.") ".getShortDescr()."\n");
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
my $key;
|
|
my $msg = " **Possible profiler found.";
|
|
my ($key_path,$name,$data);
|
|
$key_path = "Environment";
|
|
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
|
|
# Return # plugin name, registry key and last modified date #
|
|
::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) {
|
|
$name = $v->get_name();
|
|
$data = $v->get_data();
|
|
::rptMsg($name." -> ".$data);
|
|
|
|
if ($name eq "JS_PROFILER") {
|
|
::rptMsg($msg);
|
|
}
|
|
elsif ($name =~ m/PROF/ || $name =~ m/prof/) {
|
|
::rptMsg($msg);
|
|
}
|
|
elsif ($name =~ m/^COR/) {
|
|
::rptMsg($msg);
|
|
}
|
|
else {}
|
|
|
|
}
|
|
} else {
|
|
::rptMsg($key_path." found, has no values.");
|
|
}
|
|
}
|
|
else {
|
|
# ::rptMsg($key_path." not found.");
|
|
}
|
|
::rptMsg("");
|
|
my $current;
|
|
if (my $sel = $root_key->get_subkey("Select")) {
|
|
$current = $sel->get_value("Current")->get_data();
|
|
if (length($current) == 1) {
|
|
$current = "00".$current;
|
|
}
|
|
elsif (length($current) == 2) {
|
|
$current = "0".$current;
|
|
}
|
|
else {}
|
|
|
|
$key_path = "ControlSet".$current."\\Control\\Session Manager\\Environment";
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
my @vals = $key->get_list_of_values();
|
|
if (scalar(@vals) > 0) {
|
|
foreach my $v (@vals) {
|
|
$name = $v->get_name();
|
|
$data = $v->get_data();
|
|
::rptMsg($name." -> ".$data);
|
|
|
|
if ($name eq "JS_PROFILER") {
|
|
::rptMsg($msg);
|
|
}
|
|
elsif ($name =~ m/PROF/ || $name =~ m/prof/) {
|
|
::rptMsg($msg);
|
|
}
|
|
elsif ($name =~ m/^COR/) {
|
|
::rptMsg($msg);
|
|
}
|
|
else {}
|
|
}
|
|
} else {
|
|
::rptMsg($key_path." found, has no values.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
}
|
|
|
|
1;
|