mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 02:07:42 +00:00
90 lines
2.6 KiB
Perl
90 lines
2.6 KiB
Perl
#-----------------------------------------------------------
|
|
# bthport_tln.pl
|
|
# Get BlueTooth device information from the Registry; assumes
|
|
# MS drivers (other drivers, such as BroadComm, will be found in
|
|
# other locations)
|
|
#
|
|
# Change history
|
|
# 20180705 - updated to support Win10, per data provided by Micah Jones
|
|
# 20170129 - added support for http://www.hexacorn.com/blog/2017/01/29/beyond-good-ol-run-key-part-59/
|
|
# 20130115 - created
|
|
#
|
|
# Category:
|
|
#
|
|
# copyright 2018 Quantum Analytics Research, LLC
|
|
# Author: H. Carvey, keydet89@yahoo.com
|
|
#-----------------------------------------------------------
|
|
package bthport_tln;
|
|
use strict;
|
|
|
|
my %config = (hive => "System",
|
|
hasShortDescr => 1,
|
|
hasDescr => 0,
|
|
hasRefs => 0,
|
|
osmask => 22,
|
|
version => 20180705);
|
|
|
|
sub getConfig{return %config}
|
|
sub getShortDescr {
|
|
return "Gets Bluetooth-connected devices from System hive; TLN output";
|
|
}
|
|
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;
|
|
::logMsg("Launching bthport_tln v.".$VERSION);
|
|
# ::rptMsg("bthport v.".$VERSION); # banner
|
|
# ::rptMsg("(".$config{hive}.") ".getShortDescr()."\n"); # banner
|
|
my $reg = Parse::Win32Registry->new($hive);
|
|
my $root_key = $reg->get_root_key;
|
|
# First thing to do is get the ControlSet00x marked current...this is
|
|
# going to be used over and over again in plugins that access the system
|
|
# file
|
|
my ($current,$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;
|
|
my $cn_path = $ccs."\\services\\BTHPORT\\Parameters\\Devices";
|
|
my $cn;
|
|
if ($cn = $root_key->get_subkey($cn_path)) {
|
|
|
|
my @sk = $cn->get_list_of_subkeys();
|
|
if (scalar(@sk) > 0) {
|
|
foreach my $s (@sk) {
|
|
my $uniq = $s->get_name();
|
|
my $devname;
|
|
eval {
|
|
$devname = $s->get_value("Name")->get_data();
|
|
};
|
|
|
|
eval {
|
|
my ($t0,$t1) = unpack("VV",$s->get_value("LastSeen")->get_data());
|
|
::rptMsg(::getTime($t0,$t1)."|REG|||BlueTooth Device ".$devname." (Unique ID: ".$uniq.") LastSeen");
|
|
};
|
|
|
|
eval {
|
|
my ($t0,$t1) = unpack("VV",$s->get_value("LastConnected")->get_data());
|
|
::rptMsg(::getTime($t0,$t1)."|REG|||BlueTooth Device ".$devname." (Unique ID: ".$uniq.") LastConnected");
|
|
};
|
|
|
|
}
|
|
}
|
|
else {
|
|
# ::rptMsg($cn_path." has no subkeys.");
|
|
}
|
|
}
|
|
else {
|
|
# ::rptMsg($cn_path." not found.");
|
|
}
|
|
}
|
|
}
|
|
|
|
1; |