From aa0ea47289607e84c6382be9a3641f6d34f38836 Mon Sep 17 00:00:00 2001 From: Eric Betts Date: Mon, 1 Jan 2024 09:15:35 -0800 Subject: [PATCH 1/2] Add hint for iClass in `hf search` --- client/src/cmdhf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/cmdhf.c b/client/src/cmdhf.c index 366ba219d..c0ae5f3da 100644 --- a/client/src/cmdhf.c +++ b/client/src/cmdhf.c @@ -175,6 +175,7 @@ int CmdHFSearch(const char *Cmd) { if (IfPm3Iclass()) { if (read_iclass_csn(false, false, false) == PM3_SUCCESS) { PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("iCLASS tag / PicoPass tag") " found\n"); + PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`hf iclass`") " commands\n"); res = PM3_SUCCESS; } } From dbc0f593048c442a7ff0fe2dbe35577a82f4215e Mon Sep 17 00:00:00 2001 From: Eric Betts Date: Mon, 1 Jan 2024 09:17:04 -0800 Subject: [PATCH 2/2] Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3759eeaa..5264916a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log... ## [unreleased][unreleased] + - Added hint for iClass to `hf search` (@bettse) - Changed `hf 14a apdu` - It now uses the FWI and SGFI values from the ATS to determine an appropriate timeout (@nvx) - Added a thread to check when device comes online again. It will connect and update prompt (@iceman1001) - Changed CLI offline prompt - replaces the old prompt when offline is detected (@iceman100)