|
|
|
|
#ifndef MIFARE_H
|
|
|
|
|
#define MIFARE_H
|
|
|
|
|
|
|
|
|
|
#include "common/util.h"
|
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
|
#include "ui/mf_attack_hardnesteddialog.h"
|
|
|
|
|
#include "ui/mf_uid_parameterdialog.h"
|
|
|
|
|
#include "ui/mf_sim_simdialog.h"
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QRegularExpression>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
class Mifare : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit Mifare(Ui::MainWindow *ui, Util *addr, QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
|
|
QString info(bool isRequiringOutput = false);
|
|
|
|
|
void chk();
|
|
|
|
|
void nested();
|
|
|
|
|
void hardnested();
|
|
|
|
|
void sniff();
|
|
|
|
|
void snoop();
|
|
|
|
|
void list();
|
|
|
|
|
void read();
|
|
|
|
|
void readSelected(const QList<int>& selectedBlocks);
|
|
|
|
|
void write();
|
|
|
|
|
void writeAll();
|
|
|
|
|
void dump();
|
|
|
|
|
void restore();
|
|
|
|
|
|
|
|
|
|
enum KeyType
|
|
|
|
|
{
|
|
|
|
|
KEY_A = 'A',
|
|
|
|
|
KEY_B = 'B',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum DataType
|
|
|
|
|
{
|
|
|
|
|
DATA_INVALID,
|
|
|
|
|
DATA_WITHSPACE,
|
|
|
|
|
DATA_NOSPACE,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct CardType
|
|
|
|
|
{
|
|
|
|
|
int type;
|
|
|
|
|
int sector_size;
|
|
|
|
|
int block_size;
|
|
|
|
|
int blk[40];
|
|
|
|
|
int blks[40];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum AccessType
|
|
|
|
|
{
|
|
|
|
|
ACC_NEVER = 0,
|
|
|
|
|
ACC_KEY_A = 1,
|
|
|
|
|
ACC_KEY_B = 2,
|
|
|
|
|
ACC_KEY_AB = 3,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const CardType card_mini;
|
|
|
|
|
static const CardType card_1k;
|
|
|
|
|
static const CardType card_2k;
|
|
|
|
|
static const CardType card_4k;
|
|
|
|
|
|
|
|
|
|
static const AccessType dataCondition[8][4];
|
|
|
|
|
static const AccessType trailerReadCondition[8][3];
|
|
|
|
|
static const AccessType trailerWriteCondition[8][3];
|
|
|
|
|
|
|
|
|
|
void data_clearData();
|
|
|
|
|
void data_clearKey();
|
|
|
|
|
static bool data_isKeyValid(const QString& key);
|
|
|
|
|
static Mifare::DataType data_isDataValid(const QString& data);
|
|
|
|
|
void data_syncWithDataWidget(bool syncAll = true, int block = 0);
|
|
|
|
|
void data_syncWithKeyWidget(bool syncAll = true, int sector = 0, KeyType keyType = KEY_A);
|
|
|
|
|
|
|
|
|
|
CardType cardType;
|
|
|
|
|
Mifare::CardType getCardType();
|
|
|
|
|
void setCardType(int type);
|
|
|
|
|
void writeAllC();
|
|
|
|
|
void writeC();
|
|
|
|
|
void readAllC();
|
|
|
|
|
void readC();
|
|
|
|
|
void wipeC();
|
|
|
|
|
void setParameterC();
|
|
|
|
|
|
|
|
|
|
bool data_loadDataFile(const QString& filename);
|
|
|
|
|
bool data_loadKeyFile(const QString& filename);
|
|
|
|
|
bool data_saveDataFile(const QString& filename, bool isBin);
|
|
|
|
|
bool data_saveKeyFile(const QString& filename, bool isBin);
|
|
|
|
|
void data_key2Data();
|
|
|
|
|
void data_data2Key();
|
|
|
|
|
|
|
|
|
|
void data_setData(int block, const QString& data);
|
|
|
|
|
void data_setKey(int sector, KeyType keyType, const QString& key);
|
|
|
|
|
void lockC();
|
|
|
|
|
void writeAllE();
|
|
|
|
|
void readAllE();
|
|
|
|
|
void wipeE();
|
|
|
|
|
void simulate();
|
|
|
|
|
void loadSniff(const QString& file);
|
|
|
|
|
void saveSniff(const QString& file);
|
|
|
|
|
void data_fillKeys();
|
|
|
|
|
|
|
|
|
|
static QList<quint8> data_getACBits(const QString &text);
|
|
|
|
|
public slots:
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QWidget* parent;
|
|
|
|
|
Ui::MainWindow *ui;
|
|
|
|
|
Util* util;
|
|
|
|
|
|
|
|
|
|
QStringList* keyAList;
|
|
|
|
|
QStringList* keyBList;
|
|
|
|
|
QStringList* dataList;
|
|
|
|
|
QRegularExpression* dataPattern;
|
|
|
|
|
QRegularExpression* keyPattern_res;
|
|
|
|
|
QRegularExpression* keyPattern;
|
|
|
|
|
QString bin2text(const QByteArray& buff, int start, int length);
|
|
|
|
|
|
|
|
|
|
QString _readblk(int blockId, KeyType keyType, const QString &key, int waitTime = 300);
|
|
|
|
|
QStringList _readsec(int sectorId, KeyType keyType, const QString &key, int waitTime = 300);
|
|
|
|
|
bool _writeblk(int blockId, KeyType keyType, const QString &key, const QString &data, int waitTime = 300);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // MIFARE_H
|