mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
iclass doesnt need 4500 timout anymore, can put earlier in hf search.
This commit is contained in:
parent
d6f65f8578
commit
88c14b9c08
1 changed files with 10 additions and 10 deletions
|
@ -129,6 +129,15 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PROMPT_CLEARLINE;
|
||||||
|
PrintAndLogEx(INPLACE, " Searching for iClass / PicoPass tag...");
|
||||||
|
if (IfPm3Iclass()) {
|
||||||
|
if (readIclass(false, false) == PM3_SUCCESS) {
|
||||||
|
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("iClass tag / PicoPass tag") " found\n");
|
||||||
|
res = PM3_SUCCESS;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
PrintAndLogEx(INPLACE, " Searching for LEGIC tag...");
|
PrintAndLogEx(INPLACE, " Searching for LEGIC tag...");
|
||||||
if (IfPm3Legicrf()) {
|
if (IfPm3Legicrf()) {
|
||||||
|
@ -156,7 +165,6 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
// 14b and iclass is the longest test (put last)
|
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
PrintAndLogEx(INPLACE, " Searching for CryptoRF tag...");
|
PrintAndLogEx(INPLACE, " Searching for CryptoRF tag...");
|
||||||
if (IfPm3Iso14443b()) {
|
if (IfPm3Iso14443b()) {
|
||||||
|
@ -167,7 +175,7 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// 14b and iclass is the longest test (put last)
|
// 14b is the longest test (put last)
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
PrintAndLogEx(INPLACE, " Searching for ISO14443-B tag...");
|
PrintAndLogEx(INPLACE, " Searching for ISO14443-B tag...");
|
||||||
if (IfPm3Iso14443b()) {
|
if (IfPm3Iso14443b()) {
|
||||||
|
@ -177,14 +185,6 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
|
||||||
PrintAndLogEx(INPLACE, " Searching for iClass / PicoPass tag...");
|
|
||||||
if (IfPm3Iclass()) {
|
|
||||||
if (readIclass(false, false) == PM3_SUCCESS) {
|
|
||||||
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("iClass tag / PicoPass tag") " found\n");
|
|
||||||
res = PM3_SUCCESS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
if (res != PM3_SUCCESS) {
|
if (res != PM3_SUCCESS) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue