update oui.json

Signed-off-by: ale <ale@manalejandro.com>
This commit is contained in:
ale 2025-03-03 21:20:40 +01:00
parent d9a76c9a9f
commit 6a953a3f93
Signed by: ale
GPG Key ID: 244A9C4DAB1C0C81
5 changed files with 37029 additions and 10 deletions

View File

@ -5,7 +5,7 @@
"type": "date" "type": "date"
}, },
"@version": { "@version": {
"type": "text" "type": "keyword"
}, },
"address": { "address": {
"type": "keyword" "type": "keyword"
@ -34,7 +34,7 @@
} }
}, },
"uuid": { "uuid": {
"type": "keyword" "type": "text"
} }
} }
}, },
@ -76,9 +76,11 @@
"state": { "state": {
"type": "keyword" "type": "keyword"
}, },
"trademark": {
"type": "keyword"
},
"uuid": { "uuid": {
"type": "text", "type": "keyword"
"fielddata": true
} }
} }
} }

View File

@ -2,11 +2,13 @@ import { default as noble } from '@stoprocent/noble';
import randomMac from 'random-mac'; import randomMac from 'random-mac';
import { spawnSync } from 'node:child_process'; import { spawnSync } from 'node:child_process';
import { Client } from '@elastic/elasticsearch'; import { Client } from '@elastic/elasticsearch';
import { readFileSync } from 'node:fs';
const machineId = process.env.MACHINEID || 'Pi4', const machineId = process.env.MACHINEID || 'Pi4',
indexBle = process.env.ELASTICINDEX || 'ble', indexBle = process.env.ELASTICINDEX || 'ble',
seconds: any = process.env.SECONDS || 60, seconds: any = process.env.SECONDS || 60,
counterChangeMac: any = process.env.COUNTERCHANGEMAC || 90, counterChangeMac: any = process.env.COUNTERCHANGEMAC || 90,
waitStartScan: any = process.env.WAITSTARTSCAN || 3 waitStartScan: any = process.env.WAITSTARTSCAN || 3,
oui = JSON.parse(readFileSync('oui.json').toString())
let peers = [], let peers = [],
counter = 0 counter = 0
@ -35,6 +37,7 @@ const changeMacBle = () => {
id: peripheral.id, id: peripheral.id,
uuid: peripheral.uuid, uuid: peripheral.uuid,
address: peripheral.address, address: peripheral.address,
trademark: oui.find(e => e.address === peripheral.address.toUpperCase().replaceAll(':','').substring(0,6))?.vendor || undefined,
addressType: peripheral.addressType, addressType: peripheral.addressType,
connectable: peripheral.connectable, connectable: peripheral.connectable,
advertisement: peripheral.advertisement, advertisement: peripheral.advertisement,

37014
wble/oui.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -10,11 +10,11 @@
"start": "node index.js" "start": "node index.js"
}, },
"dependencies": { "dependencies": {
"@elastic/elasticsearch": "^8.16.2", "@elastic/elasticsearch": "^8.17.1",
"@stoprocent/noble": "^1.15.1", "@stoprocent/noble": "^1.19.1",
"@types/node": "^20.17.9", "@types/node": "^20.17.21",
"random-mac": "^0.0.5", "random-mac": "^0.0.5",
"typescript": "^5.7.2" "typescript": "^5.8.2"
}, },
"type": "module" "type": "module"
} }

View File

@ -1,6 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2020", /* Specify ECMAScript target "target": "ES2021", /* Specify ECMAScript target
version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES201 version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES201
9', 'ES2020', 'ES2021', or 'ESNEXT'. */ 9', 'ES2020', 'ES2021', or 'ESNEXT'. */
"module": "es2020", /* Specify module code gener "module": "es2020", /* Specify module code gener