mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-30 19:40:37 -07:00
text
This commit is contained in:
parent
596b0b6405
commit
41d545f5b8
4 changed files with 11 additions and 11 deletions
|
@ -1108,7 +1108,7 @@ static int CmdHF15Reader(const char *Cmd) {
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
if (cm) {
|
if (cm) {
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
}
|
}
|
||||||
readHF15Uid(cm, true);
|
readHF15Uid(cm, true);
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
|
@ -1470,7 +1470,7 @@ static int CmdHF15Sim(const char *Cmd) {
|
||||||
PrintAndLogEx(SUCCESS, "Start simulating UID... " _YELLOW_("%s"), iso15693_sprintUID(NULL, resp.data.asBytes));
|
PrintAndLogEx(SUCCESS, "Start simulating UID... " _YELLOW_("%s"), iso15693_sprintUID(NULL, resp.data.asBytes));
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "Press " _YELLOW_("`pm3-button`") " to abort simulation");
|
PrintAndLogEx(INFO, "Press " _GREEN_("pm3 button") " to abort simulation");
|
||||||
|
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommandNG(CMD_HF_ISO15693_SIMULATE, (uint8_t *)&payload, sizeof(payload));
|
SendCommandNG(CMD_HF_ISO15693_SIMULATE, (uint8_t *)&payload, sizeof(payload));
|
||||||
|
|
|
@ -834,7 +834,7 @@ static int CmdHFiClassSim(const char *Cmd) {
|
||||||
|
|
||||||
case ICLASS_SIM_MODE_READER_ATTACK: {
|
case ICLASS_SIM_MODE_READER_ATTACK: {
|
||||||
PrintAndLogEx(INFO, "Starting iCLASS sim 2 attack (elite mode)");
|
PrintAndLogEx(INFO, "Starting iCLASS sim 2 attack (elite mode)");
|
||||||
PrintAndLogEx(INFO, "press " _YELLOW_("`enter`") " to cancel");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to abort");
|
||||||
PacketResponseNG resp;
|
PacketResponseNG resp;
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommandMIX(CMD_HF_ICLASS_SIMULATE, sim_type, NUM_CSNS, 1, csns, NUM_CSNS * PICOPASS_BLOCK_SIZE);
|
SendCommandMIX(CMD_HF_ICLASS_SIMULATE, sim_type, NUM_CSNS, 1, csns, NUM_CSNS * PICOPASS_BLOCK_SIZE);
|
||||||
|
@ -885,7 +885,7 @@ static int CmdHFiClassSim(const char *Cmd) {
|
||||||
case ICLASS_SIM_MODE_READER_ATTACK_KEYROLL: {
|
case ICLASS_SIM_MODE_READER_ATTACK_KEYROLL: {
|
||||||
// reader in key roll mode, when it has two keys it alternates when trying to verify.
|
// reader in key roll mode, when it has two keys it alternates when trying to verify.
|
||||||
PrintAndLogEx(INFO, "Starting iCLASS sim 4 attack (elite mode, reader in key roll mode)");
|
PrintAndLogEx(INFO, "Starting iCLASS sim 4 attack (elite mode, reader in key roll mode)");
|
||||||
PrintAndLogEx(INFO, "press Enter to cancel");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to abort");
|
||||||
PacketResponseNG resp;
|
PacketResponseNG resp;
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommandMIX(CMD_HF_ICLASS_SIMULATE, sim_type, NUM_CSNS, 1, csns, NUM_CSNS * PICOPASS_BLOCK_SIZE);
|
SendCommandMIX(CMD_HF_ICLASS_SIMULATE, sim_type, NUM_CSNS, 1, csns, NUM_CSNS * PICOPASS_BLOCK_SIZE);
|
||||||
|
@ -952,7 +952,7 @@ static int CmdHFiClassSim(const char *Cmd) {
|
||||||
case ICLASS_SIM_MODE_FULL:
|
case ICLASS_SIM_MODE_FULL:
|
||||||
default: {
|
default: {
|
||||||
PrintAndLogEx(INFO, "Starting iCLASS simulation");
|
PrintAndLogEx(INFO, "Starting iCLASS simulation");
|
||||||
PrintAndLogEx(INFO, "press " _YELLOW_("`button`") " to cancel");
|
PrintAndLogEx(INFO, "Press " _GREEN_("`pm3 button`") " to abort");
|
||||||
uint8_t numberOfCSNs = 0;
|
uint8_t numberOfCSNs = 0;
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommandMIX(CMD_HF_ICLASS_SIMULATE, sim_type, numberOfCSNs, 1, csn, 8);
|
SendCommandMIX(CMD_HF_ICLASS_SIMULATE, sim_type, numberOfCSNs, 1, csn, 8);
|
||||||
|
|
|
@ -1698,7 +1698,7 @@ int CmdEM4x05Chk(const char *Cmd) {
|
||||||
return PM3_ESOFT;
|
return PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
|
|
||||||
for (uint32_t c = 0; c < keycount; ++c) {
|
for (uint32_t c = 0; c < keycount; ++c) {
|
||||||
|
|
||||||
|
@ -1955,7 +1955,7 @@ int CmdEM4x05Unlock(const char *Cmd) {
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "----------------------------------------------------------------------------\n");
|
PrintAndLogEx(INFO, "----------------------------------------------------------------------------\n");
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>'") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>'") " to exit");
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
PrintAndLogEx(INFO, "--------------- " _CYAN_("start") " -----------------------\n");
|
PrintAndLogEx(INFO, "--------------- " _CYAN_("start") " -----------------------\n");
|
||||||
|
|
||||||
|
|
|
@ -3094,7 +3094,7 @@ static int CmdT55xxChkPwds(const char *Cmd) {
|
||||||
snprintf(filename, sizeof(filename), "t55xx_default_pwds");
|
snprintf(filename, sizeof(filename), "t55xx_default_pwds");
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
/*
|
/*
|
||||||
// block 7, page1 = false, usepwd = false, override = false, pwd = 00000000
|
// block 7, page1 = false, usepwd = false, override = false, pwd = 00000000
|
||||||
|
@ -3190,7 +3190,7 @@ static int CmdT55xxChkPwds(const char *Cmd) {
|
||||||
return PM3_ESOFT;
|
return PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
|
|
||||||
for (uint32_t c = 0; c < keycount && found == false; ++c) {
|
for (uint32_t c = 0; c < keycount && found == false; ++c) {
|
||||||
|
|
||||||
|
@ -3304,7 +3304,7 @@ static int CmdT55xxBruteForce(const char *Cmd) {
|
||||||
return PM3_EINVARG;
|
return PM3_EINVARG;
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
PrintAndLogEx(INFO, "Search password range [%08X -> %08X]", start_password, end_password);
|
PrintAndLogEx(INFO, "Search password range [%08X -> %08X]", start_password, end_password);
|
||||||
|
|
||||||
uint64_t t1 = msclock();
|
uint64_t t1 = msclock();
|
||||||
|
@ -3415,7 +3415,7 @@ static int CmdT55xxRecoverPW(const char *Cmd) {
|
||||||
else if (r3)
|
else if (r3)
|
||||||
downlink_mode = ref1of4;
|
downlink_mode = ref1of4;
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
|
|
||||||
int bit = 0;
|
int bit = 0;
|
||||||
uint32_t curr_password = 0x0;
|
uint32_t curr_password = 0x0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue