mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
chg: textual
This commit is contained in:
parent
f943348a7b
commit
7e601e5285
2 changed files with 4 additions and 4 deletions
|
@ -1834,7 +1834,7 @@ int CmdHF14AMfChk(const char *Cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (keycnt == 0) {
|
if (keycnt == 0) {
|
||||||
PrintAndLogEx(NORMAL, "No key specified, trying default keys");
|
PrintAndLogEx(INFO, "No key specified, trying default keys");
|
||||||
for (;keycnt < MIFARE_DEFAULTKEYS_SIZE; keycnt++)
|
for (;keycnt < MIFARE_DEFAULTKEYS_SIZE; keycnt++)
|
||||||
PrintAndLogEx(NORMAL, "[%2d] %02x%02x%02x%02x%02x%02x", keycnt,
|
PrintAndLogEx(NORMAL, "[%2d] %02x%02x%02x%02x%02x%02x", keycnt,
|
||||||
(keyBlock + 6*keycnt)[0],(keyBlock + 6*keycnt)[1], (keyBlock + 6*keycnt)[2],
|
(keyBlock + 6*keycnt)[0],(keyBlock + 6*keycnt)[1], (keyBlock + 6*keycnt)[2],
|
||||||
|
|
|
@ -257,9 +257,9 @@ int CmdVersion(const char *Cmd) {
|
||||||
SendCommand(&c);
|
SendCommand(&c);
|
||||||
if (WaitForResponseTimeout(CMD_ACK, &resp, 1000)) {
|
if (WaitForResponseTimeout(CMD_ACK, &resp, 1000)) {
|
||||||
#ifdef __WIN32
|
#ifdef __WIN32
|
||||||
PrintAndLogEx(NORMAL, "\nProxmark3 RFID instrument\n");
|
PrintAndLogEx(NORMAL, "\n [ Proxmark3 RFID instrument ]\n");
|
||||||
#else
|
#else
|
||||||
PrintAndLogEx(NORMAL, "\n\e[34mProxmark3 RFID instrument\e[0m\n");
|
PrintAndLogEx(NORMAL, "\n\e[34m [ Proxmark3 RFID instrument ]\e[0m\n");
|
||||||
#endif
|
#endif
|
||||||
char s[50] = {0};
|
char s[50] = {0};
|
||||||
#if defined(WITH_FLASH) || defined(WITH_SMARTCARD) || defined(WITH_FPC)
|
#if defined(WITH_FLASH) || defined(WITH_SMARTCARD) || defined(WITH_FPC)
|
||||||
|
@ -275,7 +275,7 @@ int CmdVersion(const char *Cmd) {
|
||||||
strncat(s, "fpc; ", sizeof(s) - strlen(s) - 1);
|
strncat(s, "fpc; ", sizeof(s) - strlen(s) - 1);
|
||||||
#endif
|
#endif
|
||||||
PrintAndLogEx(NORMAL, "\n [ CLIENT ]");
|
PrintAndLogEx(NORMAL, "\n [ CLIENT ]");
|
||||||
PrintAndLogEx(NORMAL, " client: iceman %s \n", s);
|
PrintAndLogEx(NORMAL, " client: iceman %s \n", s);
|
||||||
|
|
||||||
PrintAndLogEx(NORMAL, (char*)resp.d.asBytes);
|
PrintAndLogEx(NORMAL, (char*)resp.d.asBytes);
|
||||||
lookupChipID(resp.arg[0], resp.arg[1]);
|
lookupChipID(resp.arg[0], resp.arg[1]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue