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"
},
"@version": {
"type": "text"
"type": "keyword"
},
"address": {
"type": "keyword"
@ -34,7 +34,7 @@
}
},
"uuid": {
"type": "keyword"
"type": "text"
}
}
},
@ -76,9 +76,11 @@
"state": {
"type": "keyword"
},
"trademark": {
"type": "keyword"
},
"uuid": {
"type": "text",
"fielddata": true
"type": "keyword"
}
}
}

View File

@ -2,11 +2,13 @@ import { default as noble } from '@stoprocent/noble';
import randomMac from 'random-mac';
import { spawnSync } from 'node:child_process';
import { Client } from '@elastic/elasticsearch';
import { readFileSync } from 'node:fs';
const machineId = process.env.MACHINEID || 'Pi4',
indexBle = process.env.ELASTICINDEX || 'ble',
seconds: any = process.env.SECONDS || 60,
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 = [],
counter = 0
@ -35,6 +37,7 @@ const changeMacBle = () => {
id: peripheral.id,
uuid: peripheral.uuid,
address: peripheral.address,
trademark: oui.find(e => e.address === peripheral.address.toUpperCase().replaceAll(':','').substring(0,6))?.vendor || undefined,
addressType: peripheral.addressType,
connectable: peripheral.connectable,
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"
},
"dependencies": {
"@elastic/elasticsearch": "^8.16.2",
"@stoprocent/noble": "^1.15.1",
"@types/node": "^20.17.9",
"@elastic/elasticsearch": "^8.17.1",
"@stoprocent/noble": "^1.19.1",
"@types/node": "^20.17.21",
"random-mac": "^0.0.5",
"typescript": "^5.7.2"
"typescript": "^5.8.2"
},
"type": "module"
}

View File

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