mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
added 4x50_sread
This commit is contained in:
parent
8376b67ea0
commit
871fa6b733
1 changed files with 159 additions and 34 deletions
|
@ -15,33 +15,6 @@
|
||||||
#include "commonutil.h"
|
#include "commonutil.h"
|
||||||
#include "em4x50.h"
|
#include "em4x50.h"
|
||||||
|
|
||||||
#define EM4X50_NO_WORDS 34
|
|
||||||
|
|
||||||
// special words
|
|
||||||
#define EM4X50_DEVICE_PASSWORD 0
|
|
||||||
#define EM4X50_PROTECTION 1
|
|
||||||
#define EM4X50_CONTROL 2
|
|
||||||
#define EM4X50_DEVICE_SERIAL 32
|
|
||||||
#define EM4X50_DEVICE_ID 33
|
|
||||||
|
|
||||||
// control word (word = 4 bytes)
|
|
||||||
#define FIRST_WORD_READ 0 // first byte
|
|
||||||
#define LAST_WORD_READ 1 // second byte
|
|
||||||
#define CONFIG_BLOCK 2 // third byte
|
|
||||||
#define PASSWORD_CHECK 0x80 // first bit in third byte
|
|
||||||
#define READ_AFTER_WRITE 0x40 // second bit in third byte
|
|
||||||
|
|
||||||
// protection word
|
|
||||||
#define FIRST_WORD_READ_PROTECTED 0 // first byte
|
|
||||||
#define LAST_WORD_READ_PROTECTED 1 // second byte
|
|
||||||
#define FIRST_WORD_WRITE_INHIBITED 2 // third byte
|
|
||||||
#define LAST_WORD_WRITE_INHIBITED 3 // fourth byte
|
|
||||||
|
|
||||||
// misc
|
|
||||||
#define STATUS_SUCCESS 0x2
|
|
||||||
#define STATUS_LOGIN 0x1
|
|
||||||
#define NO_CHARS_MAX 400
|
|
||||||
|
|
||||||
int usage_lf_em4x50_info(void) {
|
int usage_lf_em4x50_info(void) {
|
||||||
PrintAndLogEx(NORMAL, "Read all information of EM4x50. Tag nust be on antenna.");
|
PrintAndLogEx(NORMAL, "Read all information of EM4x50. Tag nust be on antenna.");
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
@ -81,6 +54,19 @@ int usage_lf_em4x50_write_password(void) {
|
||||||
PrintAndLogEx(NORMAL, " lf em 4x50_write_password p 11223344 n 01020304");
|
PrintAndLogEx(NORMAL, " lf em 4x50_write_password p 11223344 n 01020304");
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
}
|
}
|
||||||
|
int usage_lf_em4x50_sread(void) {
|
||||||
|
PrintAndLogEx(NORMAL, "Read EM4x50 word(s). Tag must be on antenna. ");
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
PrintAndLogEx(NORMAL, "Usage: lf em 4x50_sread [h] a <address> p <pwd>");
|
||||||
|
PrintAndLogEx(NORMAL, "Options:");
|
||||||
|
PrintAndLogEx(NORMAL, " h - this help");
|
||||||
|
PrintAndLogEx(NORMAL, " a <addr> - memory address to read (dec) (optional)");
|
||||||
|
PrintAndLogEx(NORMAL, " p <pwd> - password (hex) (optional)");
|
||||||
|
PrintAndLogEx(NORMAL, "Examples:");
|
||||||
|
PrintAndLogEx(NORMAL, " lf em 4x50_sread");
|
||||||
|
PrintAndLogEx(NORMAL, " lf em 4x50_sread a 2 p 00000000");
|
||||||
|
return PM3_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
static void prepare_result(const uint8_t *byte, int fwr, int lwr, em4x50_word_t *words) {
|
static void prepare_result(const uint8_t *byte, int fwr, int lwr, em4x50_word_t *words) {
|
||||||
|
|
||||||
|
@ -251,7 +237,7 @@ static void print_info_result(PacketResponseNG *resp, const em4x50_data_t *etd,
|
||||||
char pstring[NO_CHARS_MAX] = {0}, string[NO_CHARS_MAX] = {0};
|
char pstring[NO_CHARS_MAX] = {0}, string[NO_CHARS_MAX] = {0};
|
||||||
|
|
||||||
bool bpwd_given = etd->pwd_given;
|
bool bpwd_given = etd->pwd_given;
|
||||||
bool bsuccess = resp->status & STATUS_SUCCESS;
|
bool bsuccess = (resp->status & STATUS_SUCCESS) >> 1;
|
||||||
bool blogin = resp->status & STATUS_LOGIN;
|
bool blogin = resp->status & STATUS_LOGIN;
|
||||||
|
|
||||||
prepare_result(data, 0, EM4X50_NO_WORDS - 1, words);
|
prepare_result(data, 0, EM4X50_NO_WORDS - 1, words);
|
||||||
|
@ -455,7 +441,7 @@ int CmdEM4x50Info(const char *Cmd) {
|
||||||
// print result
|
// print result
|
||||||
print_info_result(&resp, &etd, verbose);
|
print_info_result(&resp, &etd, verbose);
|
||||||
|
|
||||||
success = resp.status & STATUS_SUCCESS;
|
success = (resp.status & STATUS_SUCCESS) >> 1;
|
||||||
return (success) ? PM3_SUCCESS : PM3_ESOFT;
|
return (success) ? PM3_SUCCESS : PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -464,7 +450,7 @@ static void print_write_result(PacketResponseNG *resp, const em4x50_data_t *etd)
|
||||||
// display result of writing operation in structured format
|
// display result of writing operation in structured format
|
||||||
|
|
||||||
bool pwd_given = etd->pwd_given;
|
bool pwd_given = etd->pwd_given;
|
||||||
bool success = resp->status & STATUS_SUCCESS;
|
bool success = (resp->status & STATUS_SUCCESS) >> 1;
|
||||||
bool login = resp->status & STATUS_LOGIN;
|
bool login = resp->status & STATUS_LOGIN;
|
||||||
uint8_t *data = resp->data.asBytes;
|
uint8_t *data = resp->data.asBytes;
|
||||||
char string[NO_CHARS_MAX] = {0}, pstring[NO_CHARS_MAX] = {0};
|
char string[NO_CHARS_MAX] = {0}, pstring[NO_CHARS_MAX] = {0};
|
||||||
|
@ -574,7 +560,7 @@ int CmdEM4x50Write(const char *Cmd) {
|
||||||
// get, prepare and print response
|
// get, prepare and print response
|
||||||
print_write_result(&resp, &etd);
|
print_write_result(&resp, &etd);
|
||||||
|
|
||||||
success = resp.status & STATUS_SUCCESS;
|
success = (resp.status & STATUS_SUCCESS) >> 1;
|
||||||
return (success) ? PM3_SUCCESS : PM3_ESOFT;
|
return (success) ? PM3_SUCCESS : PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -661,3 +647,142 @@ int CmdEM4x50WritePassword(const char *Cmd) {
|
||||||
|
|
||||||
return ((bool)resp.status) ? PM3_SUCCESS : PM3_ESOFT;
|
return ((bool)resp.status) ? PM3_SUCCESS : PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void print_sread_result(PacketResponseNG *resp, const em4x50_data_t *etd) {
|
||||||
|
|
||||||
|
// display result of writing operation in structured format
|
||||||
|
|
||||||
|
bool addr_given = etd->addr_given;
|
||||||
|
bool pwd_given = etd->pwd_given;
|
||||||
|
bool login = resp->status & STATUS_LOGIN;
|
||||||
|
bool success = (resp->status & STATUS_SUCCESS) >> 1;
|
||||||
|
int now = (resp->status & STATUS_NO_WORDS) >> 2;
|
||||||
|
char string[NO_CHARS_MAX] = {0}, pstring[NO_CHARS_MAX] = {0};
|
||||||
|
uint8_t *data = resp->data.asBytes;
|
||||||
|
em4x50_word_t word;
|
||||||
|
|
||||||
|
if (!success) {
|
||||||
|
|
||||||
|
sprintf(pstring, "\n reading " _RED_("failed"));
|
||||||
|
strcat(string, pstring);
|
||||||
|
|
||||||
|
PrintAndLogEx(NORMAL,"%s\n", string);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
if (addr_given) {
|
||||||
|
|
||||||
|
// selective read mode
|
||||||
|
|
||||||
|
prepare_result(data, etd->address, etd->address, &word);
|
||||||
|
print_result(&word, etd->address, etd->address);
|
||||||
|
|
||||||
|
sprintf(pstring, "\n reading " _GREEN_("ok "));
|
||||||
|
strcat(string, pstring);
|
||||||
|
|
||||||
|
if (pwd_given) {
|
||||||
|
if (login) {
|
||||||
|
sprintf(pstring, "(login with password 0x%02x%02x%02x%02x)",
|
||||||
|
etd->password[0], etd->password[1],
|
||||||
|
etd->password[2], etd->password[3]);
|
||||||
|
strcat(string, pstring);
|
||||||
|
} else {
|
||||||
|
sprintf(pstring, "(login failed)");
|
||||||
|
strcat(string, pstring);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
sprintf(pstring, "(no login)");
|
||||||
|
strcat(string, pstring);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
//standard read mode
|
||||||
|
|
||||||
|
prepare_result(data, 0, now - 1, &word);
|
||||||
|
print_result(&word, 0, now - 1);
|
||||||
|
|
||||||
|
sprintf(pstring, "\n reading " _GREEN_("ok "));
|
||||||
|
strcat(string, pstring);
|
||||||
|
|
||||||
|
if (pwd_given) {
|
||||||
|
sprintf(pstring, "(standard read mode, password ignored)");
|
||||||
|
strcat(string, pstring);
|
||||||
|
} else {
|
||||||
|
sprintf(pstring, "(standard read mode)");
|
||||||
|
strcat(string, pstring);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
PrintAndLogEx(NORMAL,"%s\n", string);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdEM4x50SRead(const char *Cmd) {
|
||||||
|
|
||||||
|
// envoke reading
|
||||||
|
// - without option -> standard read mode
|
||||||
|
// - with given address (option a) and optional password if address is
|
||||||
|
// read protected -> selective read mode
|
||||||
|
|
||||||
|
bool errors = false, success = false;
|
||||||
|
uint8_t cmdp = 0;
|
||||||
|
em4x50_data_t etd;
|
||||||
|
PacketResponseNG resp;
|
||||||
|
|
||||||
|
// init
|
||||||
|
etd.pwd_given = false;
|
||||||
|
etd.addr_given = false;
|
||||||
|
|
||||||
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
||||||
|
|
||||||
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
||||||
|
case 'h':
|
||||||
|
return usage_lf_em4x50_sread();
|
||||||
|
|
||||||
|
case 'p':
|
||||||
|
if (param_gethex(Cmd, cmdp + 1, etd.password, 8)) {
|
||||||
|
PrintAndLogEx(FAILED, "\n password has to be 8 hex symbols\n");
|
||||||
|
return PM3_EINVARG;
|
||||||
|
}
|
||||||
|
etd.pwd_given = true;
|
||||||
|
cmdp += 2;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'a':
|
||||||
|
param_getdec(Cmd, cmdp + 1, &etd.address);
|
||||||
|
|
||||||
|
// validation
|
||||||
|
if (etd.address <= 0 || etd.address >= EM4X50_NO_WORDS) {
|
||||||
|
PrintAndLogEx(FAILED, "\n error, address has to be in range [1-33]\n");
|
||||||
|
return PM3_EINVARG;
|
||||||
|
}
|
||||||
|
etd.addr_given = true;
|
||||||
|
cmdp += 2;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
PrintAndLogEx(WARNING, "\n Unknown parameter '%c'\n", param_getchar(Cmd, cmdp));
|
||||||
|
errors = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (errors)
|
||||||
|
return usage_lf_em4x50_sread();
|
||||||
|
|
||||||
|
clearCommandBuffer();
|
||||||
|
SendCommandNG(CMD_LF_EM4X50_SREAD, (uint8_t *)&etd, sizeof(etd));
|
||||||
|
|
||||||
|
|
||||||
|
if (!WaitForResponse(CMD_ACK, &resp)) {
|
||||||
|
PrintAndLogEx(WARNING, "\n timeout while waiting for reply.\n");
|
||||||
|
return PM3_ETIMEOUT;
|
||||||
|
}
|
||||||
|
|
||||||
|
// get, prepare and print response
|
||||||
|
print_sread_result(&resp, &etd);
|
||||||
|
|
||||||
|
success = (resp.status & STATUS_SUCCESS) >> 1;
|
||||||
|
return (success) ? PM3_SUCCESS : PM3_ESOFT;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue