mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-08 22:29:33 +00:00
132 lines
3.4 KiB
Perl
132 lines
3.4 KiB
Perl
#-----------------------------------------------------------
|
|
# mp2.pl
|
|
# Plugin for Registry Ripper,
|
|
# MountPoints2 key parser
|
|
#
|
|
# Change history
|
|
# 20120330 - updated to include parsing of UUID v1 GUIDs to get unique
|
|
# MAC addresses
|
|
# 20091116 - updated output/sorting; added getting
|
|
# _LabelFromReg value
|
|
# 20090115 - Removed printing of "volumes"
|
|
#
|
|
# References
|
|
# http://support.microsoft.com/kb/932463
|
|
#
|
|
# copyright 2012 Quantum Analytics Research, LLC
|
|
# Author: H. Carvey
|
|
#-----------------------------------------------------------
|
|
package mp2;
|
|
use strict;
|
|
|
|
my %config = (hive => "NTUSER\.DAT",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20120330);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Gets user's MountPoints2 key contents";
|
|
}
|
|
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 mp2 v.".$VERSION);
|
|
::rptMsg("mp2 v.".$VERSION); # banner
|
|
::rptMsg("(".getHive().") ".getShortDescr()."\n"); # banner
|
|
my %drives;
|
|
my %volumes;
|
|
my %remote;
|
|
my %macs;
|
|
|
|
my $reg = Parse::Win32Registry->new($ntuser);
|
|
my $root_key = $reg->get_root_key;
|
|
|
|
my $key_path = 'Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2';
|
|
my $key;
|
|
if ($key = $root_key->get_subkey($key_path)) {
|
|
::rptMsg("MountPoints2");
|
|
::rptMsg($key_path);
|
|
::rptMsg("LastWrite Time ".gmtime($key->get_timestamp())." (UTC)");
|
|
my @subkeys = $key->get_list_of_subkeys();
|
|
if (scalar @subkeys > 0) {
|
|
foreach my $s (@subkeys) {
|
|
my $name = $s->get_name();
|
|
if ($name =~ m/^{/) {
|
|
my $label;
|
|
eval {
|
|
$label = $s->get_value("_LabelFromReg")->get_data();
|
|
};
|
|
|
|
my $m = (split(/-/,$name,5))[4];
|
|
$m =~ s/}$//;
|
|
$m = uc($m);
|
|
$m = join(':',unpack("(A2)*",$m));
|
|
$macs{$m} = 1;
|
|
|
|
$name = $name." (".$label.")" unless ($@);
|
|
|
|
push(@{$volumes{$s->get_timestamp()}},$name);
|
|
}
|
|
elsif ($name =~ m/^[A-Z]/) {
|
|
push(@{$drives{$s->get_timestamp()}},$name);
|
|
}
|
|
elsif ($name =~ m/^#/) {
|
|
push(@{$remote{$s->get_timestamp()}},$name);
|
|
}
|
|
else {
|
|
::rptMsg(" Key name = ".$name);
|
|
}
|
|
}
|
|
::rptMsg("");
|
|
::rptMsg("Remote Drives:");
|
|
foreach my $t (reverse sort {$a <=> $b} keys %remote) {
|
|
::rptMsg(gmtime($t)." (UTC)");
|
|
foreach my $item (@{$remote{$t}}) {
|
|
::rptMsg(" $item");
|
|
}
|
|
}
|
|
|
|
::rptMsg("");
|
|
::rptMsg("Volumes:");
|
|
foreach my $t (reverse sort {$a <=> $b} keys %volumes) {
|
|
::rptMsg(gmtime($t)." (UTC)");
|
|
foreach my $item (@{$volumes{$t}}) {
|
|
::rptMsg(" $item");
|
|
}
|
|
}
|
|
::rptMsg("");
|
|
::rptMsg("Drives:");
|
|
foreach my $t (reverse sort {$a <=> $b} keys %drives) {
|
|
my $d = join(',',(@{$drives{$t}}));
|
|
::rptMsg(gmtime($t)." (UTC) - ".$d);
|
|
}
|
|
::rptMsg("");
|
|
::rptMsg("Unique MAC Addresses:");
|
|
foreach (keys %macs) {
|
|
::rptMsg($_);
|
|
}
|
|
|
|
::rptMsg("");
|
|
::rptMsg("Analysis Tip: Correlate the Volume entries to those found in the MountedDevices");
|
|
::rptMsg("entries that begin with \"\\??\\Volume\"\.");
|
|
}
|
|
else {
|
|
::rptMsg($key_path." has no subkeys.");
|
|
}
|
|
}
|
|
else {
|
|
::rptMsg($key_path." not found.");
|
|
}
|
|
}
|
|
|
|
1; |