Added script to search hw_ids in firmware files.

This commit is contained in:
Markus Birth 2020-11-21 22:11:17 +01:00
parent 45fcfc596f
commit d924c6b94e
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A

38
find_hwids.py Executable file
View File

@ -0,0 +1,38 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Parses a binary file for 006-Bxxxx-xx or 006Bxxxxxx occurrances.
"""
import os.path
import re
import sys
from grmn import devices
FILE = sys.argv[1]
pattern = re.compile(rb"006-?B\d\d\d\d-?\d\d")
print("Reading {} ...".format(FILE))
with open(FILE, "rb") as f:
data = f.read()
f.close()
matches = pattern.findall(data)
results = []
for i in matches:
i = i.decode("utf-8")
if len(i) == 10:
i = "{}-{}-{}".format(i[0:3], i[3:8], i[8:])
results.append(i)
results = sorted(set(results))
for r in results:
print(r, end="")
hw_id = int(r[5:9])
if hw_id in devices.DEVICES:
print(" - {}".format(devices.DEVICES[hw_id]), end="")
print()