Mark McKinnon 6674718c9e Update autopsyusb.pl
Comment out lines that issue errors as they are not needed in the file.
2020-10-01 14:30:15 -04:00

114 lines
2.7 KiB
Perl

#-----------------------------------------------------------
# usb
# Similar to usbstor plugin, but prints output in .csv format;
# also checks MountedDevices keys
#
#
# copyright 2008 H. Carvey, keydet89@yahoo.com
#-----------------------------------------------------------
package autopsyusb;
use strict;
my %config = (hive => "System",
osmask => 22,
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 0,
version => 20080825);
sub getConfig{return %config}
sub getShortDescr {
return "Get USB subkeys info; csv output";
}
sub getDescr{}
sub getRefs {}
sub getHive {return $config{hive};}
sub getVersion {return $config{version};}
my $VERSION = getVersion();
my $reg;
sub pluginmain {
my $class = shift;
my $hive = shift;
$reg = Parse::Win32Registry->new($hive);
my $root_key = $reg->get_root_key;
# Code for System file, getting CurrentControlSet
my $current;
my $ccs;
my $key_path = 'Select';
my $key;
if ($key = $root_key->get_subkey($key_path)) {
$current = $key->get_value("Current")->get_data();
$ccs = "ControlSet00".$current;
}
else {
#::rptMsg($key_path." not found.");
return;
}
my $name_path = $ccs."\\Control\\ComputerName\\ComputerName";
my $comp_name;
eval {
$comp_name = $root_key->get_subkey($name_path)->get_value("ComputerName")->get_data();
};
$comp_name = "Test" if ($@);
my $key_path = $ccs."\\Enum\\USB";
my $key;
if ($key = $root_key->get_subkey($key_path)) {
::rptMsg("<usb><mtime></mtime><artifacts>");
my @subkeys = $key->get_list_of_subkeys();
if (scalar(@subkeys) > 0) {
foreach my $s (@subkeys) {
my $dev_class = $s->get_name();
my @sk = $s->get_list_of_subkeys();
if (scalar(@sk) > 0) {
foreach my $k (@sk) {
my $serial = $k->get_name();
my $mtime = $k->get_timestamp();
my $str = $comp_name.",".$dev_class.",".$serial.",".$mtime;
my $loc;
eval {
$loc = $k->get_value("LocationInformation")->get_data();
$str .= ",".$loc;
};
$str .= ", " if ($@);
my $friendly;
eval {
$friendly = $k->get_value("FriendlyName")->get_data();
$str .= ",".$friendly;
};
$str .= ", " if ($@);
my $parent;
eval {
$parent = $k->get_value("ParentIdPrefix")->get_data();
$str .= ",".$parent;
};
::rptMsg("<device mtime=\"" . $mtime. "\" dev=\"" . $dev_class . "\" >" . $serial . "</device>");
}
}
}
}
else {
#::rptMsg($key_path." has no subkeys.");
#::logMsg($key_path." has no subkeys.");
}
::rptMsg("</artifacts></usb>");
}
else {
#::rptMsg($key_path." not found.");
#::logMsg($key_path." not found.");
}
}
1;