mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Merge pull request #2227 from bettse/hf_search_iclass_hint
Add hint for iClass in `hf search`
This commit is contained in:
commit
1abb3ecf97
2 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue