mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
changed hf search to look for topaz first and commented out ICT code path
This commit is contained in:
parent
bbbe985111
commit
11a298dc42
2 changed files with 14 additions and 11 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...
|
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]
|
## [unreleased][unreleased]
|
||||||
|
- Changed `hf search` - topaz is detect before ISO14443a and commented out WIP ICT code path (@iceman1001)
|
||||||
- Fixed `hf search` - where felica reader now doesnt timeout and give wrong response (@iceman1001)
|
- Fixed `hf search` - where felica reader now doesnt timeout and give wrong response (@iceman1001)
|
||||||
- Fixed overflow in deps/jansson library (@iceman1001)
|
- Fixed overflow in deps/jansson library (@iceman1001)
|
||||||
- Added `lf hitag crack2` - WIP. Trying to add the second attack vector against Hitag2 (@iceman1001)
|
- Added `lf hitag crack2` - WIP. Trying to add the second attack vector against Hitag2 (@iceman1001)
|
||||||
|
|
|
@ -95,6 +95,16 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PROMPT_CLEARLINE;
|
||||||
|
PrintAndLogEx(INPLACE, " Searching for Topaz tag...");
|
||||||
|
if (IfPm3Iso14443a()) {
|
||||||
|
if (readTopazUid(false, false) == PM3_SUCCESS) {
|
||||||
|
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("Topaz tag") " found\n");
|
||||||
|
success[TOPAZ] = true;
|
||||||
|
res = PM3_SUCCESS;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
PrintAndLogEx(INPLACE, " Searching for LTO-CM tag...");
|
PrintAndLogEx(INPLACE, " Searching for LTO-CM tag...");
|
||||||
if (IfPm3Iso14443a()) {
|
if (IfPm3Iso14443a()) {
|
||||||
|
@ -119,7 +129,8 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ICT
|
/*
|
||||||
|
// ICT
|
||||||
if (IfPm3Iso14443a()) {
|
if (IfPm3Iso14443a()) {
|
||||||
int sel_state = infoHF14A(false, false, false);
|
int sel_state = infoHF14A(false, false, false);
|
||||||
if (sel_state > 0) {
|
if (sel_state > 0) {
|
||||||
|
@ -131,6 +142,7 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
infoHF14A4Applications(verbose);
|
infoHF14A4Applications(verbose);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
PrintAndLogEx(INPLACE, " Searching for LEGIC tag...");
|
PrintAndLogEx(INPLACE, " Searching for LEGIC tag...");
|
||||||
|
@ -142,16 +154,6 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
|
||||||
PrintAndLogEx(INPLACE, " Searching for Topaz tag...");
|
|
||||||
if (IfPm3Iso14443a()) {
|
|
||||||
if (readTopazUid(false, false) == PM3_SUCCESS) {
|
|
||||||
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("Topaz tag") " found\n");
|
|
||||||
success[TOPAZ] = true;
|
|
||||||
res = PM3_SUCCESS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// texkom
|
// texkom
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
PrintAndLogEx(INPLACE, " Searching for TEXKOM tag...");
|
PrintAndLogEx(INPLACE, " Searching for TEXKOM tag...");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue