mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-05 07:36:14 +08:00
textual
This commit is contained in:
parent
4437148a49
commit
2168d3ea7d
1 changed files with 0 additions and 5 deletions
|
@ -1188,7 +1188,6 @@ static bool CheckChipType(bool getDeviceData) {
|
||||||
|
|
||||||
//check for em4x05/em4x69 chips first
|
//check for em4x05/em4x69 chips first
|
||||||
uint32_t word = 0;
|
uint32_t word = 0;
|
||||||
PrintAndLogEx(INFO, "Checking for 4x05 chipset");
|
|
||||||
if (EM4x05IsBlock0(&word)) {
|
if (EM4x05IsBlock0(&word)) {
|
||||||
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("EM4x05 / EM4x69"));
|
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("EM4x05 / EM4x69"));
|
||||||
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf em 4x05`") " commands");
|
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf em 4x05`") " commands");
|
||||||
|
@ -1197,7 +1196,6 @@ static bool CheckChipType(bool getDeviceData) {
|
||||||
}
|
}
|
||||||
|
|
||||||
//check for t55xx chip...
|
//check for t55xx chip...
|
||||||
PrintAndLogEx(INFO, "Checking for T55x7 chipset");
|
|
||||||
if (tryDetectP1(true)) {
|
if (tryDetectP1(true)) {
|
||||||
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("T55xx"));
|
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("T55xx"));
|
||||||
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf t55xx`") " commands");
|
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf t55xx`") " commands");
|
||||||
|
@ -1205,7 +1203,6 @@ static bool CheckChipType(bool getDeviceData) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// check for em4x50 chips
|
// check for em4x50 chips
|
||||||
PrintAndLogEx(INFO, "Checking for 4x50 chipset");
|
|
||||||
if (detect_4x50_block()) {
|
if (detect_4x50_block()) {
|
||||||
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("EM4x50"));
|
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("EM4x50"));
|
||||||
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf em 4x50`") " commands");
|
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf em 4x50`") " commands");
|
||||||
|
@ -1253,7 +1250,6 @@ int CmdLFfind(const char *Cmd) {
|
||||||
if (isOnline) {
|
if (isOnline) {
|
||||||
|
|
||||||
if (IfPm3Hitag()) {
|
if (IfPm3Hitag()) {
|
||||||
PrintAndLogEx(INFO, "check hitag");
|
|
||||||
if (readHitagUid()) {
|
if (readHitagUid()) {
|
||||||
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("Hitag") " found!");
|
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("Hitag") " found!");
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
|
@ -1261,7 +1257,6 @@ int CmdLFfind(const char *Cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IfPm3EM4x50()) {
|
if (IfPm3EM4x50()) {
|
||||||
PrintAndLogEx(INFO, "check 4x50");
|
|
||||||
if (read_em4x50_uid() == PM3_SUCCESS) {
|
if (read_em4x50_uid() == PM3_SUCCESS) {
|
||||||
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("EM4x50 ID") " found!");
|
PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("EM4x50 ID") " found!");
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
|
|
Loading…
Reference in a new issue