Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

advlib

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

advlib

Library for Decoding Wireless Advertising Packets. We believe in an open Internet of Things.

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
147
increased by234.09%
Maintainers
1
Weekly downloads
 
Created
Source

advlib

Library for wireless advertising packet decoding. Currently supports the following protocols:

  • Bluetooth Smart (BLE)
  • reelyActive RFID

Installation

npm install advlib

Hello advlib

var advlib = require('advlib');

var rawHexPacket = '421655daba50e1fe0201050c097265656c79416374697665';
var processedPacket = advlib.ble.process(rawHexPacket);

console.log(JSON.stringify(processedPacket, null, " "));

The console output should appear as follows:

{
  type: "ADVA-48",
  value: "fee150bada55",
  advHeader: { 
    type: "ADV_NONCONNECT_IND",
    length: 22,
    txAdd: "random",
    rxAdd: "public" 
  },
  advData: {
    flags: [ "LE Limited Discoverable Mode", "BR/EDR Not Supported" ],
    completeLocalName: "reelyActive" 
  } 
}

Bluetooth Smart (BLE) Advertising Packet Library

Process a raw packet (as a hexadecimal string) with the following command:

advlib.ble.process(rawHexPacket);

The library is organised hierarchically so that the separate elements of a packet can be processed individually. Refer to the index below for details on each element:

Header

Process a 16-bit header (as a hexadecimal string) with the following command:

advlib.ble.header.process(rawHexHeader);

For reference, the 16-bit header is as follows (reading the hexadecimal string from left to right):

Bit(s)Function
15RxAdd: 0 = public, 1 = random
14TxAdd: 0 = public, 1 = random
13-12Reserved for Future Use (RFU)
11-8Type (see table below)
7-6Reserved for Future Use (RFU)
5-0Payload length in bytes

And the advertising packet types are as follows:

TypePacketPurpose
0ADV_INDConnectable undirected advertising
1ADV_DIRECT_INDConnectable directed advertising
2ADV_NONCONN_INDNon-connectable undirected advertising
3SCAN_REQScan for more info from advertiser
4SCAN_RSPResponse to scan request from scanner
5CONNECT_REQRequest to connect
6ADV_DISCOVER_INDScannable undirected advertising

For example:

advlib.ble.header.process('4216');

would yield:

{
  rxAdd: "public",
  txAdd: "random",
  type: "ADV_NONCONNECT_IND",
  length: 22
}

Address

Process a 48-bit address (as a hexadecimal string) with the following command:

advlib.ble.address.process(rawHexAddress);

For reference, the 48-bit header is as follows (reading the hexadecimal string from left to right):

Bit(s)Address component
47-40xx:xx:xx:xx:xx:##
39-32xx:xx:xx:xx:##:xx
31-24xx:xx:xx:##:xx:xx
23-16xx:xx:##:xx:xx:xx
15-8xx:##:xx:xx:xx:xx
7-0##:xx:xx:xx:xx:xx

This is best illustrated with an example:

advlib.ble.address.process('0123456789ab');

Would yield:

{
  type: "ADVA-48",
  value: "ab8967452301"
}

which can alternatively be represented as ab:89:67:45:23:01.

Data (Generic Access Profile)

Process GAP data (as a hexadecimal string) with the following command:

advlib.ble.data.process(rawHexData);

For reference, the structure of the data is as follows:

Byte(s)Data component
0Length of the data in bytes (including type and data)
1GAP Data Type (see table below)
2 to lengthType-specifc data

The Generic Access Profile Data Types are listed on the Bluetooth GAP Assigned Numbers website. The following table lists the Data Types, their names and the section in this document in which they are described.

Data TypeData Type NameSee advlib section
0x01FlagsFlags
0x02Incomplete List of 16-bit UUIDsUUID
0x03Complete List of 16-bit UUIDsUUID
0x04Incomplete List of 32-bit UUIDsUUID
0x05Complete List of 32-bit UUIDsUUID
0x06Incomplete List of 128-bit UUIDsUUID
0x07Complete List of 128-bit UUIDsUUID
0x08Shortened Local NameLocal Name
0x09Complete Local NameLocal Name
0x0aTx Power LevelTx Power
0x0dClass of DeviceGeneric Data
0x0eSimple Pairing Hash C-192Generic Data
0x0fSimple Pairing Randomizer R-192Generic Data
0x10Security Manager TK ValueGeneric Data
0x11Security Manager OOB FlagsGeneric Data
0x12Slave Connection Interval RangeSCIR
0x1416-bit Solicitation UUIDsSolicitation
0x15128-bit Solicitation UUIDsSolicitation
0x16Service Data 16-bit UUIDService Data
0x17Public Target AddressGeneric Data
0x18Random Target AddressGeneric Data
0x19Public Target AddressGeneric Data
0x1aAdvertising IntervalGeneric Data
0x1bLE Bluetooth Device AddressGeneric Data
0x1cLE Bluetooth RoleGeneric Data
0x1dSimple Pairing Hash C-256Generic Data
0x1eSimple Pairing Hash Randomizer C-256Generic Data
0x1f32-bit Solicitation UUIDsSolicitation
0x20Service Data 32-bit UUIDService Data
0x21Service Data 128-bit UUIDService Data
0x3d3-D Information DataGeneric Data
0xffManufacturer Specific DataMfr. Specific Data
UUID

Process a UUID assigned to the device with any of the following commands:

advlib.ble.data.gap.uuid.nonComplete16BitUUIDs(payload, cursor, advertiserData);
advlib.ble.data.gap.uuid.complete16BitUUIDs(payload, cursor, advertiserData);
advlib.ble.data.gap.uuid.nonComplete128BitUUIDs(payload, cursor, advertiserData);
advlib.ble.data.gap.uuid.complete128BitUUIDs(payload, cursor, advertiserData);

This is best illustrated with an example:

var payload = '16074449555520657669746341796c656572';
advlib.ble.data.gap.uuid.complete128BitUUIDs(payload, 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
016Length, in bytes, of type and data
107GAP Data Type for Complete 128-bit UUID
2 to 164449555520657669746341796c656572reelyActive's 128-bit UUID

Which would add the following property to advData:

complete128BitUUIDs: "7265656c794163746976652055554944"
Local Name

Process the device's local name, complete or shortened, with the following commands, respectively:

advlib.ble.data.gap.localname.completeLocalName(payload, cursor, advertiserData);
advlib.ble.data.gap.localname.shortenedLocalName(payload, cursor, advertiserData);

This is best illustrated with an example:

advlib.ble.data.gap.localname.completeLocalName('12097265656c79416374697665', 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
012Length, in bytes, of type and data
109GAP Data Type for Complete Local Name
2 to 127265656c79416374697665ASCII representation of 'reelyActive'

Which would add the following property to advData:

completeLocalName: "reelyActive"
Flags

Process the flags with the following command:

advlib.ble.data.gap.flags.process(payload, cursor, advertiserData);

For reference, the flags are as follows:

BitDescription
0LE Limited Discoverable Mode
1LE General Discoverable Mode
2BR/EDR Not Supported
3Simultaneous LE and BR/EDR to Same Device Capable (Controller)
4Simultaneous LE and BR/EDR to Same Device Capable (Host)
5Reserved

This is best illustrated with an example:

advlib.ble.data.gap.flags.process('020104', 0, {});

For reference, the example payload is interpreted as follows:

ByteHex StringDescription
002Length, in bytes, of type and data
101GAP Data Type for flags
204See table above

Which would add the following property to advData:

flags: [ "BR/EDR Not Supported" ]
Manufacturer Specific Data

Process manufacturer specific data with the following command:

advlib.ble.data.gap.manufacturerspecificdata.process(payload, cursor, advertiserData);

This is best illustrated with an example:

advlib.ble.data.gap.manufacturerspecificdata.process('03ff8c00', 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
003Length, in bytes, of type and data
1ffGAP Data Type for manufacturer specific data
2-38c00Gimbal company identifier code (bytes reversed)

Which would add the following property to advData:

manufacturerSpecificData: {
  companyIdentifierCode: "008c",
  data: ""
}
iBeacon

A specific case of manufacturer specific data is the iBeacon:

var payload = '26ff4c000215b9407f30f5f8466eaff925556b57fe6d294c903974';
advlib.ble.data.gap.manufacturerspecificdata.process(payload, 0, {});

For reference, the iBeacon payload is interpreted as follows:

Byte(s)Hex StringDescription
026Length, in bytes, of type and data
1ffGAP Data Type for manufacturer specific data
2-34c00Apple company identifier code (bytes reversed)
4-50215Identifier code for iBeacon
6-21b9407f30f5f8466eaff925556b57fe6dUUID (assigned by Apple)
21-22294cMajor
23-249039Minor
2574TxPower (see TxPower section)

Which would add the following property to advData:

manufacturerSpecificData: {
  iBeacon: {
    uuid: "b9407f30f5f8466eaff925556b57fe6d",
    major: "294c",
    minor: "9039",
    txPower: "116dBm"
  }
}
TX Power Level

Process Tx Power Level with the following command:

advlib.ble.data.gap.txpower.process(payload, cursor, advertiserData);

This is best illustrated with an example:

advlib.ble.data.gap.txpower.process('020a7f', 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
002Length, in bytes, of type and data
10aGAP Data Type for TxPower
27fTxPower (see table below)

TxPower is a two's complement value which is interpreted as follows:

Hex StringPower dBm
7f127 dBm
000 dBm
ff-128 dBm

Which would add the following property to advData:

manufacturerSpecificData: {
  iBeacon: {
    txPower: "127dBm"
  }
}
Slave Connection Interval Range

Process the Slave Connection Interval Range with the following command:

advlib.ble.data.gap.slaveconnectionintervalrange.process(payload, cursor, advertiserData);

This is best illustrated with an example:

advlib.ble.data.gap.slaveconnectionintervalrange.process('061200060c80', 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
006Length, in bytes, of type and data
112GAP Data Type for Slave Connection Interval Range
2-600060c80Min and max intervals (see table below)

And the intervals are intepreted as follows:

Byte(s)Hex StringDescription
0-10006Min interval = 6 x 1.25 ms = 7.5 ms
2-30c80Max interval = 12128 x 1.25 ms = 15160 ms

Which would add the following property to advData:

slaveConnectionIntervalRange: "00060c80"
  
Service Solicitation

Process a Service Solicitation UUID with any of the following commands:

advlib.ble.data.gap.solicitation.solicitation16BitUUIDs(payload, cursor, advertiserData);
advlib.ble.data.gap.solicitation.solicitation128BitUUIDs(payload, cursor, advertiserData);

This is best illustrated with an example:

advlib.ble.data.gap.uuid.solicitation16BitUUIDs('0314d8fe', 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
003Length, in bytes, of type and data
114GAP Data Type for 16-bit Service Solicitation UUID
2-3d8feGoogle's UriBeacon UUID (bytes reversed)

Which would add a property to advData as follows:

solicitation16BitUUIDs: "fed8"
Service Data

Process service data assigned to the device.

advlib.ble.data.gap.servicedata.process(payload, cursor, advertiserData);

This is best illustrated with an example:

advlib.ble.data.gap.servicedata.process('09160a181204eb150000', 0, {});

For reference, the example payload is interpreted as follows:

Byte(s)Hex StringDescription
009Length, in bytes, of type and data
116GAP Data Type for service data
2-30a18UUID (bytes reversed)
4-91204eb150000Service Data

Which would add the following property to advData:

serviceData: {
  uuid : "180a",
  data : "1204eb150000"
}

reelyActive RFID Library

Process a raw packet (as a hexadecimal string) with the following command:

advlib.reelyactive.process(rawHexPacket);

What's next?

This is an active work in progress. Expect regular changes and updates, as well as improved documentation!

License

MIT License

Copyright (c) 2015 reelyActive

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 16 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc