
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
airtrackrelay
Advanced tools
UDP socket server to collect live tracking reports and relay them to metarace telegraph as JSON encoded objects.
Supported tracking devices and messages:
Configuration is via metarace sysconf section 'airtrackrelay' with the following keys:
| key | (type) Description [default] |
|---|---|
| topic | (string) MQTT relay topic ['tracking/data'] |
| port | (int) UDP listen port [1911] |
| k1 | (string) Beaker K1, 128 bit hex string |
| k2 | (string) Beaker K2, 128 bit hex string |
| uid | (int32) Beaker uid/config id [0] |
Tracker imeis are read from the section 'tracking' under the key 'devices', which is a map of device ids to a dict object:
| key | (type) Description [default] |
|---|---|
| imei | (string) Device IMEI |
| type | (string) Device type |
Example config:
{
"airtrackrelay": {
"port": 12345,
"topic": "tracking/data",
"k1": "000102030405060708090a0b0c0d0e0f",
"k2": "f0e0d0c0b0a090807060504030201000",
"uid": 1234567890
},
"tracking": {
"devices": {
"bob": { "imei": "012345678901234", "label": null,
"phone": "+12345678901", "type": null },
"gem": { "imei": "023456788901234", "label": null,
"phone": null, "type": null },
}
}
}
Example Info Message:
{"type": "drdstat", "drd": "bob", "devstate": "41", "rssi": "13",
"voltage": "4.08", "battery": "94", "charging": "0",
"sendtime": "20220101023424" }
Example Ack Message:
{"type": "drdack", "drd": "gem", "ctype": "GTFRI", "cid": "1A3D",
"sendtime": "20220101031607", "req": ""}
Example GL3xx/Beaker Location Message:
{"type": "drdpos", "lat": "-13.567891", "lng": "101.367815",
"elev": "22.6", "speed": "12.7", "drd": "gem",
"fixtime": "20220101022231", "battery": "94", "flags": 0}
$ pip3 install airtrackrelay
FAQs
UDP GPS Tracker Relay
We found that airtrackrelay demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.