From ed3e0895b5e1e161533ea7faf30a967effbf3cf2 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 23 Dec 2019 22:00:34 +0100 Subject: [PATCH] hook it up --- client/cmdhf14a.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/cmdhf14a.c b/client/cmdhf14a.c index 4aac73855..6744916f7 100644 --- a/client/cmdhf14a.c +++ b/client/cmdhf14a.c @@ -1598,6 +1598,12 @@ int infoHF14A(bool verbose, bool do_nack_test, bool do_aid_search) { if (do_nack_test) detect_classic_nackbug(!verbose); + + res = detect_classic_static_nonce(); + if (res == 1) + PrintAndLogEx(SUCCESS, "Static/Fixed nonce detected"); + if (res == 2 && verbose) + PrintAndLogEx(SUCCESS, "Static/Fixed nonce detection failed"); } return select_status;