I need to get the serialnumber of my BLE device. For this I currently access the device_information service and then get the characteristic serial_number_string / 0x2A25. However I get a console error, that this UUID is blocked.
On the WebBluetoothCG I found the blocklisted characteristics, which also lists the serialnumber. Is there anyway to bypass the blocklist?
My code looks like this:
const deviceInfoService = await device.value?.gatt?.getPrimaryService('device_information')
const deviceInfoCharacteristics = await deviceInfoService?.getCharacteristic(0x2a25) //serial_number_string
In the same service I can read the characteristics for the firmware, manufacturer, hardware and model name.
The serial number string characteristic is blocked for privacy reasons. The serial number identifier can be used for active fingerprinting and usually can't be modified by the user.
https://github.com/WebBluetoothCG/registries/blob/228b62c31c177c9b770b79896aec9ef660f62216/gatt_blocklist.txt#L53
There's some additional context in https://crbug.com/532930#c17:
Device identification is important, despite the privacy risk. Applications need to be able to distinguish devices when two devices of the same type are connected. Applications should also be able to recognize when they have reconnected to a device that was previously connected. Blocking access device identifiers like the device address or serial number makes this difficult.
BluetoothDevice
exposes anid
attribute that aims to solve these issues while preserving user privacy. Theid
attribute is unique for a specific Bluetooth device, user profile, and host. Clearing permissions also clears storedid
attributes, causing a new identifier to be created the next time the device is connected.