mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
80 lines
1.9 KiB
Perl
80 lines
1.9 KiB
Perl
#-----------------------------------------------------------
|
|
# clsid.pl
|
|
# Plugin to extract file association data from the Software hive file
|
|
# Can take considerable time to run; recommend running it via rip.exe
|
|
#
|
|
# History
|
|
# 20100227 - created
|
|
#
|
|
# References
|
|
# http://msdn.microsoft.com/en-us/library/ms724475%28VS.85%29.aspx
|
|
#
|
|
# copyright 2010, Quantum Analytics Research, LLC
|
|
#-----------------------------------------------------------
|
|
package clsid;
|
|
use strict;
|
|
|
|
my %config = (hive => "Software",
|
|
osmask => 22,
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
version => 20100227);
|
|
|
|
sub getConfig{return %config}
|
|
|
|
sub getShortDescr {
|
|
return "Get list of CLSID/registered classes";
|
|
}
|
|
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 clsid v.".$VERSION);
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
|
|
my $key_path = "Classes\\CLSID";
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
::rptMsg($key_path);
|
|
# ::rptMsg("LastWrite Time ".gmtime($key->get_timestamp())." (UTC)");
|
|
::rptMsg("");
|
|
# First step will be to get a list of all of the file extensions
|
|
my %ext;
|
|
my @sk = $key->get_list_of_subkeys();
|
|
if (scalar(@sk) > 0) {
|
|
foreach my $s (@sk) {
|
|
|
|
my $name = $s->get_name();
|
|
eval {
|
|
my $n = $s->get_value("")->get_data();
|
|
$name .= " ".$n unless ($n eq "");
|
|
};
|
|
|
|
push(@{$clsid{$s->get_timestamp()}},$name);
|
|
}
|
|
|
|
foreach my $t (reverse sort {$a <=> $b} keys %clsid) {
|
|
::rptMsg(gmtime($t)." Z");
|
|
foreach my $item (@{$clsid{$t}}) {
|
|
::rptMsg(" ".$item);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." has no subkeys.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
1; |