3

Tools like nmap are able to identify the make of a device based on it's mac address. Is there a tool or a reference to identify the make of a Bluetooth Low Energy device based on its mac address?

Lester T.
  • 1,263
  • 1
  • 9
  • 21
Tabish Imran
  • 131
  • 1
  • 1
  • 3

3 Answers3

2

You can refer to this Wikipedia writeup

And yes, Hardware Manufacturer can be identified from the first 3 octet aka OUI Hardware Manufacturer can be identified from the first 3 octet aka OUI

Sources: Wikipedia

What is an OUI then?

An OUI {Organizationally Unique Identifier} consists of a 24-bit number that uniquely identifies a vendor or manufacturer. The 24-bit numbers are purchased and assigned by the IEEE.

If you want to jump straight to searching for Manufacturers based on brands. you could google it. Here are some of the links.

1. Macvendors.com

2. macvendorlookup.com

3. coffer.com/mac_find/

4. Wireshark OUI lookup

5. macvendors.co

Lester T.
  • 1,263
  • 1
  • 9
  • 21
1

Yes. There's a very well maintained MAC vendor list here.

Just enter the address and it will find you the vendor. The 1st 3 octets are the vendor-specific ones.

Overmind
  • 8,779
  • 3
  • 19
  • 28
0

I'm not sure that I understand the other answers here. Those answers and links are for Ethernet MAC addresses, not Bluetooth -- so they do not answer the question appropriately.

For a list of BDADDR MAC addresses, see this database -- http://web.archive.org/web/20100604064309/http://802.15ninja.net/bnapbnap/thelist.php

You can also find out which Bluetooth devices are around you by using the BTScanner (actively) or bluelog (passively, over time) tools.

I also recommend under Linux that you check out the hcitool scan --all --flush and bluetoothctl commands since they offer active and passive Bluetooth device identification capabilities as well.

atdre
  • 18,885
  • 6
  • 58
  • 107
  • Comparing the list you've supplied with the one in the other posts by checking a few random vendors, I can't find any differences. Do you have any information about the differences between MAC of ethernet devices and MAC of bluetooth devices? – Thorbear Feb 26 '17 at 19:27
  • Can't find any difference other than that the list I gave has WAY more information? – atdre Feb 27 '17 at 00:53
  • http://www.willhackforsushi.com/presentations/icanhearyounow-sansns2007.pdf – atdre Feb 27 '17 at 00:54
  • @aldre +1 for the presentation, very useful. – JBaczuk May 29 '17 at 17:11