2012-08-29 05:39:50 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2012 Frederik Möllers
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Commands related to the German electronic Identification Card
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "util.h"
|
2013-02-28 23:11:52 +08:00
|
|
|
//#include "proxusb.h"
|
2012-12-05 07:39:18 +08:00
|
|
|
#include "proxmark3.h"
|
2012-08-29 05:39:50 +08:00
|
|
|
#include "ui.h"
|
|
|
|
#include "cmdparser.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "cmdmain.h"
|
2012-12-07 06:17:27 +08:00
|
|
|
#include "sleep.h"
|
2012-08-29 05:39:50 +08:00
|
|
|
|
|
|
|
#include "cmdhfepa.h"
|
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
|
|
|
// Perform (part of) the PACE protocol
|
|
|
|
int CmdHFEPACollectPACENonces(const char *Cmd)
|
|
|
|
{
|
|
|
|
// requested nonce size
|
|
|
|
uint8_t m = 0;
|
|
|
|
// requested number of Nonces
|
|
|
|
unsigned int n = 0;
|
2012-08-29 06:45:34 +08:00
|
|
|
// delay between requests
|
|
|
|
unsigned int d = 0;
|
2012-08-29 05:39:50 +08:00
|
|
|
|
2013-03-01 06:33:31 +08:00
|
|
|
sscanf(Cmd, "%"hhu" %u %u", &m, &n, &d);
|
2012-08-29 05:39:50 +08:00
|
|
|
|
|
|
|
// values are expected to be > 0
|
|
|
|
m = m > 0 ? m : 1;
|
|
|
|
n = n > 0 ? n : 1;
|
|
|
|
|
2013-03-01 06:33:31 +08:00
|
|
|
PrintAndLog("Collecting %u %"hhu"-byte nonces", n, m);
|
2012-08-29 05:39:50 +08:00
|
|
|
PrintAndLog("Start: %u", time(NULL));
|
|
|
|
// repeat n times
|
|
|
|
for (unsigned int i = 0; i < n; i++) {
|
|
|
|
// execute PACE
|
|
|
|
UsbCommand c = {CMD_EPA_PACE_COLLECT_NONCE, {(int)m, 0, 0}};
|
|
|
|
SendCommand(&c);
|
2012-12-05 07:39:18 +08:00
|
|
|
UsbCommand resp;
|
|
|
|
|
|
|
|
WaitForResponse(CMD_ACK,&resp);
|
2012-08-29 05:39:50 +08:00
|
|
|
|
|
|
|
// check if command failed
|
2012-12-05 07:39:18 +08:00
|
|
|
if (resp.arg[0] != 0) {
|
|
|
|
PrintAndLog("Error in step %d, Return code: %d",resp.arg[0],(int)resp.arg[1]);
|
2012-08-29 05:39:50 +08:00
|
|
|
} else {
|
2012-12-05 07:39:18 +08:00
|
|
|
size_t nonce_length = resp.arg[1];
|
2012-08-29 05:39:50 +08:00
|
|
|
char *nonce = (char *) malloc(2 * nonce_length + 1);
|
|
|
|
for(int j = 0; j < nonce_length; j++) {
|
2012-12-05 07:39:18 +08:00
|
|
|
snprintf(nonce + (2 * j), 3, "%02X", resp.d.asBytes[j]);
|
2012-08-29 05:39:50 +08:00
|
|
|
}
|
|
|
|
// print nonce
|
2012-12-05 07:39:18 +08:00
|
|
|
PrintAndLog("Length: %d, Nonce: %s",resp.arg[1], nonce);
|
2012-08-29 05:39:50 +08:00
|
|
|
}
|
2012-08-29 06:45:34 +08:00
|
|
|
if (i < n - 1) {
|
|
|
|
sleep(d);
|
|
|
|
}
|
2012-08-29 05:39:50 +08:00
|
|
|
}
|
|
|
|
PrintAndLog("End: %u", time(NULL));
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// UI-related stuff
|
|
|
|
|
|
|
|
static const command_t CommandTable[] =
|
|
|
|
{
|
|
|
|
{"help", CmdHelp, 1, "This help"},
|
2012-08-29 06:45:34 +08:00
|
|
|
{"cnonces", CmdHFEPACollectPACENonces, 0,
|
|
|
|
"<m> <n> <d> Acquire n>0 encrypted PACE nonces of size m>0 with d sec pauses"},
|
2012-08-29 05:39:50 +08:00
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
int CmdHelp(const char *Cmd)
|
|
|
|
{
|
|
|
|
CmdsHelp(CommandTable);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CmdHFEPA(const char *Cmd)
|
|
|
|
{
|
|
|
|
// flush
|
2012-12-08 06:37:22 +08:00
|
|
|
WaitForResponseTimeout(CMD_ACK,NULL,100);
|
2012-08-29 05:39:50 +08:00
|
|
|
|
|
|
|
// parse
|
|
|
|
CmdsParse(CommandTable, Cmd);
|
|
|
|
return 0;
|
|
|
|
}
|