Last active
August 14, 2025 10:54
-
-
Save agners/0338576e0003318b63ec1ea75adc90f9 to your computer and use it in GitHub Desktop.
Thread credentials dataset TLV parser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python3 | |
import binascii | |
import sys | |
MESHCOP_TLV_TYPE = { | |
"CHANNEL": 0, | |
"PANID": 1, | |
"EXTPANID": 2, | |
"NETWORKNAME": 3, | |
"PSKC": 4, | |
"NETWORKKEY": 5, | |
"NETWORK_KEY_SEQUENCE": 6, | |
"MESHLOCALPREFIX": 7, | |
"STEERING_DATA": 8, | |
"BORDER_AGENT_RLOC": 9, | |
"COMMISSIONER_ID": 10, | |
"COMM_SESSION_ID": 11, | |
"SECURITYPOLICY": 12, | |
"GET": 13, | |
"ACTIVETIMESTAMP": 14, | |
"COMMISSIONER_UDP_PORT": 15, | |
"STATE": 16, | |
"JOINER_DTLS": 17, | |
"JOINER_UDP_PORT": 18, | |
"JOINER_IID": 19, | |
"JOINER_RLOC": 20, | |
"JOINER_ROUTER_KEK": 21, | |
"PROVISIONING_URL": 32, | |
"VENDOR_NAME_TLV": 33, | |
"VENDOR_MODEL_TLV": 34, | |
"VENDOR_SW_VERSION_TLV": 35, | |
"VENDOR_DATA_TLV": 36, | |
"VENDOR_STACK_VERSION_TLV": 37, | |
"UDP_ENCAPSULATION_TLV": 48, | |
"IPV6_ADDRESS_TLV": 49, | |
"PENDINGTIMESTAMP": 51, | |
"DELAYTIMER": 52, | |
"CHANNELMASK": 53, | |
"COUNT": 54, | |
"PERIOD": 55, | |
"SCAN_DURATION": 56, | |
"ENERGY_LIST": 57, | |
"THREAD_DOMAIN_NAME": 59, | |
"WAKEUP_CHANNEL": 74, | |
"DISCOVERYREQUEST": 128, | |
"DISCOVERYRESPONSE": 129, | |
"JOINERADVERTISEMENT": 241, | |
} | |
MESHCOP_TLV_TYPE_NAME = { | |
value: name for name, value in MESHCOP_TLV_TYPE.items() | |
} | |
def main(): | |
args = sys.argv[1:] | |
data = binascii.a2b_hex(args[0]) | |
pos = 0 | |
while pos < len(data): | |
tag = data[pos] | |
pos += 1 | |
_len = data[pos] | |
pos += 1 | |
val = data[pos:pos+_len] | |
pos += _len | |
if tag == 3: | |
print("t: %2s (%s), l: %s, v: %s" % (tag, MESHCOP_TLV_TYPE_NAME[tag], _len, val)) | |
else: | |
print("t: %2s (%s), l: %s, v: 0x%s" % (tag, | |
MESHCOP_TLV_TYPE_NAME[tag], | |
_len, val.hex())) | |
if __name__ == "__main__": | |
main() |
Hi @eversteegt, Based on the openthread repository, you could maybe update 74 and add 59 like so:
- "THREAD_DOMAIN_NAME": 59,
- "WAKEUP_CHANNEL": 74,
Cheers.
@nk64 thanks for the hint, updated the tag list accordingly.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@agners Thanks!!! This worked like a charm! Now the entire set of tags was shown, including the network key. My GL-S20 could be paried as a child of my HA thread network without any problem now.
I also read about tag 74 previously, but I do not own any single Apple device. So I think we can safely say that this is not an Apple only tag.