From 77fa232b7ed95df57f9a9540c27bd07263b40227 Mon Sep 17 00:00:00 2001 From: Ed Lafargue Date: Mon, 29 Sep 2025 18:02:41 -0700 Subject: [PATCH] Fix Tesla "GET VERSION" APDU --- client/src/cmdhftesla.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhftesla.c b/client/src/cmdhftesla.c index bf42f84cb..f88ed3914 100644 --- a/client/src/cmdhftesla.c +++ b/client/src/cmdhftesla.c @@ -137,7 +137,7 @@ static int info_hf_tesla(bool parse_certs) { uint8_t aREAD_VERSION[30]; int aREAD_VERSION_n = 0; - param_gethex_to_eol("80170000", 0, aREAD_VERSION, sizeof(aREAD_VERSION), &aREAD_VERSION_n); + param_gethex_to_eol("80070000", 0, aREAD_VERSION, sizeof(aREAD_VERSION), &aREAD_VERSION_n); res = ExchangeAPDU14a(aREAD_VERSION, aREAD_VERSION_n, activate_field, keep_field_on, response, sizeof(response), &resplen); if (res != PM3_SUCCESS) { DropField();