mirror of https://github.com/wh201906/Proxmark3GUI
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
689 lines
21 KiB
C++
689 lines
21 KiB
C++
#include "mifare.h"
|
|
|
|
Mifare::Mifare(Ui::MainWindow *ui, Util *addr, QWidget *parent) : QObject(parent)
|
|
{
|
|
this->parent = parent;
|
|
util = addr;
|
|
this->ui = ui;
|
|
cardType = card_1k;
|
|
keyAList = new QStringList();
|
|
keyBList = new QStringList();
|
|
dataList = new QStringList();
|
|
data_clearKey(); // fill with blank Qstring
|
|
data_clearData(); // fill with blank Qstring
|
|
dataPattern = new QRegExp("([0-9a-fA-F]{2} ){15}[0-9a-fA-F]{2}");
|
|
chkKeyPattern = new QRegExp("\\|\\d{3}\\|.+\\|.+\\|");
|
|
nestedKeyPattern = new QRegExp("\\|\\d{3}\\|.+\\|.+\\|.+\\|.+\\|");
|
|
}
|
|
|
|
|
|
|
|
void Mifare::info()
|
|
{
|
|
util->execCMD("hf 14a info");
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::chk()
|
|
{
|
|
QString result = util->execCMDWithOutput("hf mf chk *" + QString::number(cardType.type) + " ?", 1000 + cardType.type * 1000);
|
|
qDebug() << result;
|
|
|
|
int offset = 0;
|
|
QString tmp, tmp2;
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
offset = result.indexOf(*chkKeyPattern, offset);
|
|
tmp = result.mid(offset, 39).toUpper();
|
|
offset += 39;
|
|
qDebug() << tmp << offset;
|
|
tmp2 = tmp.mid(7, 12).trimmed();
|
|
if(tmp2 != "?")
|
|
keyAList->replace(i, tmp2);
|
|
tmp2 = tmp.mid(24, 12).trimmed();
|
|
if(tmp2 != "?")
|
|
keyBList->replace(i, tmp2);
|
|
}
|
|
data_syncWithKeyWidget();
|
|
}
|
|
|
|
void Mifare::nested()
|
|
{
|
|
QString result = util->execCMDWithOutput("hf mf nested " + QString::number(cardType.type) + " *");
|
|
|
|
int offset = 0;
|
|
QString tmp;
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
offset = result.indexOf(*nestedKeyPattern, offset);
|
|
tmp = result.mid(offset, 47).toUpper();
|
|
offset += 47;
|
|
if(tmp.at(23) == '1')
|
|
keyAList->replace(i, tmp.mid(7, 12).trimmed());
|
|
if(tmp.at(44) == '1')
|
|
keyBList->replace(i, tmp.mid(28, 12).trimmed());
|
|
}
|
|
data_syncWithKeyWidget();
|
|
}
|
|
|
|
void Mifare::hardnested()
|
|
{
|
|
MF_Attack_hardnestedDialog dialog(cardType.blocks);
|
|
connect(&dialog, &MF_Attack_hardnestedDialog::sendCMD, util, &Util::execCMD);
|
|
if(dialog.exec() == QDialog::Accepted)
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::sniff()
|
|
{
|
|
util->execCMD("hf mf sniff");
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::list()
|
|
{
|
|
util->execCMD("hf list mf");
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::read()
|
|
{
|
|
int waitTime = 300;
|
|
int currblk = ui->MF_RW_blockBox->currentText().toInt();
|
|
QString result = util->execCMDWithOutput("hf mf rdbl "
|
|
+ QString::number(currblk)
|
|
+ " "
|
|
+ ui->MF_RW_keyTypeBox->currentText()
|
|
+ " "
|
|
+ ui->MF_RW_keyEdit->text(), waitTime);
|
|
if(result.indexOf("isOk:01") != -1)
|
|
{
|
|
result = result.mid(result.indexOf(*dataPattern, 0), 47).toUpper();
|
|
if((currblk < 128 && ((currblk + 1) % 4 == 0)) || ((currblk + 1) % 8 == 0)) // process key block
|
|
{
|
|
if(ui->MF_RW_keyTypeBox->currentText() == "A")
|
|
{
|
|
for(int i = 0; i < 6; i++)
|
|
{
|
|
result = result.replace(i * 3, 2, ui->MF_RW_keyEdit->text().mid(i * 2, 2));
|
|
}
|
|
ui->MF_RW_dataEdit->setText(result);
|
|
QString tmpKey = result.right(18).replace(" ", "");
|
|
result = util->execCMDWithOutput("hf mf rdbl "
|
|
+ ui->MF_RW_keyTypeBox->currentText()
|
|
+ " B "
|
|
+ tmpKey, waitTime);
|
|
if(result.indexOf("isOk:01") == -1)
|
|
{
|
|
result = ui->MF_RW_dataEdit->text();
|
|
result = result.replace(30, 17, "?? ?? ?? ?? ?? ??");
|
|
ui->MF_RW_dataEdit->setText(result);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for(int i = 0; i < 6; i++)
|
|
{
|
|
result = result.replace(30 + i * 3, 2, ui->MF_RW_keyEdit->text().mid(i * 2, 2));
|
|
}
|
|
result = result.replace(0, 18, "?? ?? ?? ?? ?? ?? ");
|
|
ui->MF_RW_dataEdit->setText(result);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ui->MF_RW_dataEdit->setText(result);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Mifare::readAll()
|
|
{
|
|
QString result;
|
|
bool isKeyAValid;
|
|
bool isKeyBValid;
|
|
const int waitTime = 150;
|
|
|
|
QString tmp;
|
|
int offset = 0;
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
result = "";
|
|
isKeyAValid = false;
|
|
isKeyBValid = false;
|
|
|
|
// check keys and read the first block of each sector
|
|
if(data_isKeyValid(keyAList->at(i)))
|
|
{
|
|
result = util->execCMDWithOutput("hf mf rdsc "
|
|
+ QString::number(i)
|
|
+ " A "
|
|
+ keyAList->at(i), waitTime);
|
|
qDebug() << result;
|
|
offset = result.indexOf("isOk:01");
|
|
if(offset != -1)
|
|
{
|
|
isKeyAValid = true;
|
|
for(int j = 0; j < cardType.blk[i]; j++)
|
|
{
|
|
offset = result.indexOf(*dataPattern, offset);
|
|
tmp = result.mid(offset, 47).toUpper();
|
|
offset += 47;
|
|
qDebug() << tmp;
|
|
tmp.replace(" ", "");
|
|
dataList->replace(cardType.blks[i] + j, tmp);
|
|
data_syncWithDataWidget(false, cardType.blks[i] + j);
|
|
}
|
|
}
|
|
}
|
|
if(data_isKeyValid(keyBList->at(i)))
|
|
{
|
|
result = util->execCMDWithOutput("hf mf rdsc "
|
|
+ QString::number(i)
|
|
+ " B "
|
|
+ keyBList->at(i), waitTime);
|
|
qDebug() << result;
|
|
offset = result.indexOf("isOk:01");
|
|
if(offset != -1)
|
|
{
|
|
isKeyBValid = true;
|
|
for(int j = 0; j < cardType.blk[i]; j++)
|
|
{
|
|
offset = result.indexOf(*dataPattern, offset);
|
|
tmp = result.mid(offset, 47).toUpper();
|
|
offset += 47;
|
|
qDebug() << tmp;
|
|
tmp.replace(" ", "");
|
|
dataList->replace(cardType.blks[i] + j, tmp);
|
|
data_syncWithDataWidget(false, cardType.blks[i] + j);
|
|
}
|
|
}
|
|
}
|
|
|
|
if(isKeyAValid || isKeyBValid)
|
|
{
|
|
|
|
// fill the MF_dataWidget with the known valid key
|
|
//
|
|
// check whether the MF_dataWidget contains the valid key,
|
|
// and fill MF_keyWidget(when you only have KeyA but the ReadBlock output contains the KeyB)
|
|
//
|
|
// the structure is not symmetric, since you cannot get KeyA from output
|
|
// this program will only process the provided KeyA(in MF_keyWidget)
|
|
result = dataList->at(cardType.blks[i] + cardType.blk[i] - 1);
|
|
if(isKeyAValid)
|
|
{
|
|
result.replace(0, 12, keyAList->at(i));
|
|
}
|
|
else
|
|
{
|
|
result = result.replace(0, 12, "????????????");
|
|
}
|
|
dataList->replace(cardType.blks[i] + cardType.blk[i] - 1, result);
|
|
|
|
if(isKeyBValid)
|
|
{
|
|
result.replace(20, 12, keyBList->at(i));
|
|
dataList->replace(cardType.blks[i] + cardType.blk[i] - 1, result);
|
|
data_syncWithDataWidget(false, cardType.blks[i] + cardType.blk[i] - 1);
|
|
}
|
|
else // now isKeyAValid == true, the output might contains the KeyB
|
|
{
|
|
QString tmpKey = dataList->at(cardType.blks[i] + cardType.blk[i] - 1).right(12);
|
|
result = util->execCMDWithOutput("hf mf rdbl "
|
|
+ QString::number(cardType.blks[i] + cardType.blk[i] - 1)
|
|
+ " B "
|
|
+ tmpKey, waitTime);
|
|
if(result.indexOf("isOk:01") != -1)
|
|
{
|
|
keyBList->replace(i, tmpKey);
|
|
data_syncWithKeyWidget(false, i, false);
|
|
}
|
|
else
|
|
{
|
|
result = dataList->at(cardType.blks[i] + cardType.blk[i] - 1);
|
|
result = result.replace(20, 12, "????????????");
|
|
dataList->replace(cardType.blks[i] + cardType.blk[i] - 1, result);
|
|
|
|
}
|
|
}
|
|
data_syncWithDataWidget(false, cardType.blks[i] + cardType.blk[i] - 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Mifare::write()
|
|
{
|
|
int waitTime = 300;
|
|
QString result = util->execCMDWithOutput("hf mf wrbl "
|
|
+ ui->MF_RW_blockBox->currentText()
|
|
+ " "
|
|
+ ui->MF_RW_keyTypeBox->currentText()
|
|
+ " "
|
|
+ ui->MF_RW_keyEdit->text()
|
|
+ " "
|
|
+ ui->MF_RW_dataEdit->text().replace(" ", ""), waitTime);
|
|
if(result.indexOf("isOk:01") != -1)
|
|
{
|
|
QMessageBox::information(parent, tr("Info"), tr("Success!"));
|
|
}
|
|
else
|
|
{
|
|
QMessageBox::information(parent, tr("Info"), tr("Failed!"));
|
|
}
|
|
}
|
|
|
|
void Mifare::writeAll()
|
|
{
|
|
const int waitTime = 300;
|
|
QString result;
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
for(int j = 0; j < cardType.blk[i]; j++)
|
|
{
|
|
result = ""; // if the KeyA is invalid and the result is not empty, the KeyB will not be tested.
|
|
if(data_isDataValid(dataList->at(cardType.blks[i] + j)) != DATA_NOSPACE || dataList->at(cardType.blks[i] + j).contains('?'))
|
|
continue;
|
|
if(data_isKeyValid(keyAList->at(i)))
|
|
{
|
|
result = util->execCMDWithOutput("hf mf wrbl "
|
|
+ QString::number(cardType.blks[i] + j)
|
|
+ " A "
|
|
+ keyAList->at(i)
|
|
+ " "
|
|
+ dataList->at(cardType.blks[i] + j), waitTime);
|
|
}
|
|
qDebug() << i << j << result.indexOf("isOk:01") << data_isKeyValid(keyBList->at(i));
|
|
if(result.indexOf("isOk:01") == -1 && data_isKeyValid(keyBList->at(i)))
|
|
{
|
|
result = util->execCMDWithOutput("hf mf wrbl "
|
|
+ QString::number(cardType.blks[i] + j)
|
|
+ " B "
|
|
+ keyBList->at(i)
|
|
+ " "
|
|
+ dataList->at(cardType.blks[i] + j), waitTime);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void Mifare::readC()
|
|
{
|
|
int waitTime = 300;
|
|
int currblk = ui->MF_RW_blockBox->currentText().toInt();
|
|
QString result = util->execCMDWithOutput("hf mf cgetblk "
|
|
+ QString::number(currblk), waitTime);
|
|
if(result.indexOf("No chinese") == -1)
|
|
{
|
|
result = result.mid(result.indexOf(*dataPattern, 0), 47).toUpper();
|
|
ui->MF_RW_dataEdit->setText(result);
|
|
}
|
|
}
|
|
|
|
void Mifare::readAllC()
|
|
{
|
|
QString result;
|
|
const int waitTime = 150;
|
|
|
|
QString tmp;
|
|
int offset = 0;
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
result = util->execCMDWithOutput("hf mf cgetsc "
|
|
+ QString::number(i), waitTime);
|
|
qDebug() << result;
|
|
if(result.indexOf("No chinese") == -1)
|
|
{
|
|
offset = 0;
|
|
for(int j = 0; j < cardType.blk[i]; j++)
|
|
{
|
|
offset = result.indexOf(*dataPattern, offset);
|
|
tmp = result.mid(offset, 47).toUpper();
|
|
offset += 47;
|
|
qDebug() << tmp;
|
|
tmp.replace(" ", "");
|
|
dataList->replace(cardType.blks[i] + j, tmp);
|
|
data_syncWithDataWidget(false, cardType.blks[i] + j);
|
|
}
|
|
keyAList->replace(i, dataList->at(cardType.blks[i] + cardType.blk[i] - 1).left(12));
|
|
keyBList->replace(i, dataList->at(cardType.blks[i] + cardType.blk[i] - 1).right(12));
|
|
data_syncWithKeyWidget(false, i, true);
|
|
data_syncWithKeyWidget(false, i, false);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Mifare::writeC()
|
|
{
|
|
int waitTime = 150;
|
|
QString result = util->execCMDWithOutput("hf mf csetblk "
|
|
+ ui->MF_RW_blockBox->currentText()
|
|
+ " "
|
|
+ ui->MF_RW_dataEdit->text().replace(" ", ""), waitTime);
|
|
if(result.indexOf("No chinese") == -1)
|
|
{
|
|
QMessageBox::information(parent, tr("Info"), tr("Success!"));
|
|
}
|
|
else
|
|
{
|
|
QMessageBox::information(parent, tr("Info"), tr("Failed!"));
|
|
}
|
|
}
|
|
|
|
void Mifare::writeAllC()
|
|
{
|
|
const int waitTime = 150;
|
|
QString result;
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
for(int j = 0; j < cardType.blk[i]; j++)
|
|
{
|
|
result = ""; // if the KeyA is invalid and the result is not empty, the KeyB will not be tested.
|
|
if(data_isDataValid(dataList->at(cardType.blks[i] + j)) != DATA_NOSPACE || dataList->at(cardType.blks[i] + j).contains('?'))
|
|
continue;
|
|
result = util->execCMDWithOutput("hf mf csetblk "
|
|
+ QString::number(cardType.blks[i] + j)
|
|
+ " "
|
|
+ dataList->at(cardType.blks[i] + j), waitTime);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Mifare::wipeC()
|
|
{
|
|
util->execCMD("hf mf cwipe "
|
|
+ QString::number(cardType.type)
|
|
+ " f");
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::setParameterC()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void Mifare::dump()
|
|
{
|
|
util->execCMD("hf mf dump");
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::restore()
|
|
{
|
|
util->execCMD("hf mf restore");
|
|
ui->funcTab->setCurrentIndex(1);
|
|
}
|
|
|
|
void Mifare::data_syncWithDataWidget(bool syncAll, int block)
|
|
{
|
|
QString tmp = "";
|
|
if(syncAll)
|
|
{
|
|
for(int i = 0; i < cardType.blocks; i++)
|
|
{
|
|
tmp = "";
|
|
tmp += dataList->at(i).mid(0, 2);
|
|
for(int j = 1; j < 16; j++)
|
|
{
|
|
tmp += " ";
|
|
tmp += dataList->at(i).mid(j * 2, 2);
|
|
}
|
|
ui->MF_dataWidget->item(i, 2)->setText(tmp);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
tmp += dataList->at(block).mid(0, 2);
|
|
for(int j = 1; j < 16; j++)
|
|
{
|
|
tmp += " ";
|
|
tmp += dataList->at(block).mid(j * 2, 2);
|
|
}
|
|
ui->MF_dataWidget->item(block, 2)->setText(tmp);
|
|
}
|
|
}
|
|
|
|
void Mifare::data_syncWithKeyWidget(bool syncAll, int sector, bool isKeyA)
|
|
{
|
|
if(syncAll)
|
|
{
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
ui->MF_keyWidget->item(i, 1)->setText(keyAList->at(i));
|
|
ui->MF_keyWidget->item(i, 2)->setText(keyBList->at(i));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(isKeyA)
|
|
ui->MF_keyWidget->item(sector, 1)->setText(keyAList->at(sector));
|
|
else
|
|
ui->MF_keyWidget->item(sector, 2)->setText(keyBList->at(sector));
|
|
}
|
|
}
|
|
|
|
void Mifare::data_clearData()
|
|
{
|
|
dataList->clear();
|
|
for(int i = 0; i < cardType.blocks; i++)
|
|
dataList->append("");
|
|
}
|
|
|
|
void Mifare::data_clearKey()
|
|
{
|
|
keyAList->clear();
|
|
keyBList->clear();
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
keyAList->append("");
|
|
keyBList->append("");
|
|
}
|
|
}
|
|
|
|
bool Mifare::data_isKeyValid(const QString& key)
|
|
{
|
|
if(key.length() != 12)
|
|
return false;
|
|
for(int i = 0; i < 12; i++)
|
|
{
|
|
if(!((key[i] >= '0' && key[i] <= '9') || (key[i] >= 'A' && key[i] <= 'F')))
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
Mifare::DataType Mifare::data_isDataValid(QString data) // "?" will not been processd there
|
|
{
|
|
if(data.length() == 47)
|
|
{
|
|
for(int i = 0; i < 47; i++)
|
|
{
|
|
if(i % 3 != 0)
|
|
{
|
|
if(!((data[i] >= '0' && data[i] <= '9') || (data[i] >= 'A' && data[i] <= 'F') || data[i] == '?'))
|
|
return DATA_INVALID;
|
|
}
|
|
else
|
|
{
|
|
if(data[i] != ' ')
|
|
return DATA_INVALID;
|
|
}
|
|
return DATA_WITHSPACE;
|
|
}
|
|
}
|
|
else if(data.length() == 32)
|
|
{
|
|
for(int i = 0; i < 32; i++)
|
|
{
|
|
if(!((data[i] >= '0' && data[i] <= '9') || (data[i] >= 'A' && data[i] <= 'F') || data[i] == '?'))
|
|
return DATA_INVALID;
|
|
}
|
|
return DATA_NOSPACE;
|
|
}
|
|
else
|
|
return DATA_INVALID;
|
|
}
|
|
|
|
Mifare::CardType Mifare::getCardType()
|
|
{
|
|
return cardType;
|
|
}
|
|
|
|
void Mifare::setCardType(int type)
|
|
{
|
|
if(type == 0 || type == 1 || type == 2 || type == 4)
|
|
{
|
|
if(type == 0)
|
|
cardType = card_mini;
|
|
else if(type == 1)
|
|
cardType = card_1k;
|
|
else if(type == 2)
|
|
cardType = card_2k;
|
|
else if(type == 4)
|
|
cardType = card_4k;
|
|
data_clearKey();
|
|
data_clearData();
|
|
}
|
|
}
|
|
|
|
bool Mifare::data_loadDataFile(const QString& filename)
|
|
{
|
|
QFile file(filename, this);
|
|
if(file.open(QIODevice::ReadOnly))
|
|
{
|
|
QByteArray buff;
|
|
buff = file.read(8192);
|
|
bool isBin = false;
|
|
for(int i = 0; i < cardType.blocks * 16; i++) // Detect the file type
|
|
{
|
|
// qDebug() << (unsigned char)buff[i];
|
|
if(!((buff[i] >= 'A' && buff[i] <= 'F') ||
|
|
(buff[i] >= 'a' && buff[i] <= 'f') ||
|
|
(buff[i] >= '0' && buff[i] <= '9') ||
|
|
buff[i] == '\n' ||
|
|
buff[i] == '\r'))
|
|
{
|
|
isBin = true;
|
|
break;
|
|
}
|
|
}
|
|
if(isBin)
|
|
{
|
|
char LByte, RByte;
|
|
char map[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
|
|
for(int i = 0; i < cardType.blocks; i++)
|
|
{
|
|
QString tmp = "";
|
|
for(int j = 0; j < 16; j++)
|
|
{
|
|
LByte = map[(unsigned char)buff[i * 16 + j] >> 4];
|
|
RByte = map[(unsigned char)buff[i * 16 + j] & 0xF];
|
|
tmp += LByte;
|
|
tmp += RByte;
|
|
}
|
|
qDebug() << tmp;
|
|
dataList->replace(i, tmp.toUpper());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
QString tmp = buff.left(cardType.blocks * 34);
|
|
QStringList tmpList = tmp.split("\r\n");
|
|
for(int i = 0; i < cardType.blocks; i++)
|
|
{
|
|
dataList->replace(i, tmpList[i].toUpper());
|
|
qDebug() << tmpList[i];
|
|
}
|
|
}
|
|
file.close();
|
|
data_syncWithDataWidget();
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool Mifare::data_loadKeyFile(const QString& filename)
|
|
{
|
|
QFile file(filename, this);
|
|
if(file.open(QIODevice::ReadOnly))
|
|
{
|
|
QByteArray buff;
|
|
buff = file.read(960);
|
|
bool isBin = true;
|
|
if(isBin)
|
|
{
|
|
char LByte, RByte;
|
|
char map[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
QString tmp = "";
|
|
for(int j = 0; j < 12; j++)
|
|
{
|
|
LByte = map[(unsigned char)buff[i * 12 + j] >> 4];
|
|
RByte = map[(unsigned char)buff[i * 12 + j] & 0xF];
|
|
tmp += LByte;
|
|
tmp += RByte;
|
|
}
|
|
qDebug() << tmp;
|
|
keyAList->replace(i, tmp.left(12).toUpper());
|
|
keyBList->replace(i, tmp.right(12).toUpper());
|
|
}
|
|
}
|
|
file.close();
|
|
data_syncWithKeyWidget();
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void Mifare::data_key2Data()
|
|
{
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
QString tmp = "";
|
|
dataList->replace(cardType.blks[i] + cardType.blk[i] - 1, "????????????FF078069????????????");
|
|
if(data_isKeyValid(keyAList->at(i)))
|
|
tmp += keyAList->at(i);
|
|
else
|
|
tmp += "????????????";
|
|
|
|
if(dataList->at(cardType.blks[i] + cardType.blk[i] - 1) == "")
|
|
tmp += "FF078069"; // default control bytes
|
|
else
|
|
tmp += dataList->at(cardType.blks[i] + cardType.blk[i] - 1).mid(12, 8);
|
|
|
|
if(data_isKeyValid(keyBList->at(i)))
|
|
tmp += keyBList->at(i);
|
|
else
|
|
tmp += "????????????";
|
|
|
|
dataList->replace(cardType.blks[i] + cardType.blk[i] - 1, tmp);
|
|
data_syncWithDataWidget();
|
|
}
|
|
}
|
|
|
|
void Mifare::data_data2Key()
|
|
{
|
|
for(int i = 0; i < cardType.sectors; i++)
|
|
{
|
|
if(dataList->at(cardType.blks[i] + cardType.blk[i] - 1) == "")
|
|
{
|
|
keyAList->replace(i, "????????????");
|
|
keyBList->replace(i, "????????????");
|
|
}
|
|
else
|
|
{
|
|
keyAList->replace(i, dataList->at(cardType.blks[i] + cardType.blk[i] - 1).left(12));
|
|
keyBList->replace(i, dataList->at(cardType.blks[i] + cardType.blk[i] - 1).right(12));
|
|
}
|
|
data_syncWithKeyWidget();
|
|
}
|
|
}
|