mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2026-07-03 00:34:28 +08:00
Unify all read and write functions
This commit is contained in:
+13
-24
@@ -17,8 +17,6 @@ MainWindow::MainWindow(QWidget *parent):
|
||||
|
||||
pm3Thread = new QThread(this);
|
||||
pm3 = new PM3Process(pm3Thread);
|
||||
// pm3->moveToThread(pm3Thread);
|
||||
// pm3->init();
|
||||
pm3Thread->start();
|
||||
pm3state = false;
|
||||
|
||||
@@ -491,13 +489,7 @@ void MainWindow::on_MF_Attack_hardnestedButton_clicked()
|
||||
void MainWindow::on_MF_RW_readSelectedButton_clicked()
|
||||
{
|
||||
setState(false);
|
||||
QList<int> selectedBlocks;
|
||||
for(int i = 0; i < mifare->cardType.block_size; i++)
|
||||
{
|
||||
if(ui->MF_dataWidget->item(i, 1)->checkState() == Qt::Checked)
|
||||
selectedBlocks.append(i);
|
||||
}
|
||||
mifare->readSelected(selectedBlocks);
|
||||
mifare->readSelected(Mifare::TARGET_MIFARE);
|
||||
setState(true);
|
||||
}
|
||||
|
||||
@@ -517,14 +509,9 @@ void MainWindow::on_MF_RW_writeBlockButton_clicked()
|
||||
|
||||
void MainWindow::on_MF_RW_writeSelectedButton_clicked()
|
||||
{
|
||||
QList<int> failedBlocks;
|
||||
setState(false);
|
||||
QList<int> selectedBlocks;
|
||||
for(int i = 0; i < mifare->cardType.block_size; i++)
|
||||
{
|
||||
if(ui->MF_dataWidget->item(i, 1)->checkState() == Qt::Checked)
|
||||
selectedBlocks.append(i);
|
||||
}
|
||||
mifare->writeSelected(selectedBlocks);
|
||||
failedBlocks = mifare->writeSelected(Mifare::TARGET_MIFARE);
|
||||
setState(true);
|
||||
}
|
||||
|
||||
@@ -538,10 +525,10 @@ void MainWindow::on_MF_RW_restoreButton_clicked()
|
||||
mifare->restore();
|
||||
}
|
||||
|
||||
void MainWindow::on_MF_UID_readAllButton_clicked()
|
||||
void MainWindow::on_MF_UID_readSelectedButton_clicked()
|
||||
{
|
||||
setState(false);
|
||||
mifare->readAllC();
|
||||
mifare->readSelected(Mifare::TARGET_UID);
|
||||
setState(true);
|
||||
}
|
||||
|
||||
@@ -552,10 +539,11 @@ void MainWindow::on_MF_UID_readBlockButton_clicked()
|
||||
setState(true);
|
||||
}
|
||||
|
||||
void MainWindow::on_MF_UID_writeAllButton_clicked()
|
||||
void MainWindow::on_MF_UID_writeSelectedButton_clicked()
|
||||
{
|
||||
QList<int> failedBlocks;
|
||||
setState(false);
|
||||
mifare->writeAllC();
|
||||
failedBlocks = mifare->writeSelected(Mifare::TARGET_UID);
|
||||
setState(true);
|
||||
}
|
||||
|
||||
@@ -604,17 +592,18 @@ void MainWindow::on_MF_UID_lockButton_clicked()
|
||||
mifare->lockC();
|
||||
}
|
||||
|
||||
void MainWindow::on_MF_Sim_loadDataButton_clicked()
|
||||
void MainWindow::on_MF_Sim_readSelectedButton_clicked()
|
||||
{
|
||||
setState(false);
|
||||
mifare->writeAllE();
|
||||
mifare->readSelected(Mifare::TARGET_EMULATOR);
|
||||
setState(true);
|
||||
}
|
||||
|
||||
void MainWindow::on_MF_Sim_writeAllButton_clicked()
|
||||
void MainWindow::on_MF_Sim_writeSelectedButton_clicked()
|
||||
{
|
||||
QList<int> failedBlocks;
|
||||
setState(false);
|
||||
mifare->readAllE();
|
||||
failedBlocks = mifare->writeSelected(Mifare::TARGET_EMULATOR);
|
||||
setState(true);
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -92,11 +92,11 @@ private slots:
|
||||
|
||||
void on_MF_RW_restoreButton_clicked();
|
||||
|
||||
void on_MF_UID_readAllButton_clicked();
|
||||
void on_MF_UID_readSelectedButton_clicked();
|
||||
|
||||
void on_MF_UID_readBlockButton_clicked();
|
||||
|
||||
void on_MF_UID_writeAllButton_clicked();
|
||||
void on_MF_UID_writeSelectedButton_clicked();
|
||||
|
||||
void on_MF_UID_writeBlockButton_clicked();
|
||||
|
||||
@@ -124,9 +124,9 @@ private slots:
|
||||
|
||||
void on_MF_UID_lockButton_clicked();
|
||||
|
||||
void on_MF_Sim_loadDataButton_clicked();
|
||||
void on_MF_Sim_readSelectedButton_clicked();
|
||||
|
||||
void on_MF_Sim_writeAllButton_clicked();
|
||||
void on_MF_Sim_writeSelectedButton_clicked();
|
||||
|
||||
void on_MF_Sim_clearButton_clicked();
|
||||
|
||||
|
||||
+194
-13
@@ -72,6 +72,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="PM3_refreshPortButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Refresh</string>
|
||||
</property>
|
||||
@@ -79,6 +85,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="PM3_connectButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Connect</string>
|
||||
</property>
|
||||
@@ -86,6 +98,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="PM3_disconnectButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Disconnect</string>
|
||||
</property>
|
||||
@@ -188,8 +206,27 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="MF_selectTrailerBox">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Select Trailer</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_data2KeyButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>KeyBlocks->Key</string>
|
||||
</property>
|
||||
@@ -197,6 +234,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_key2DataButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>KeyBlocks<-Key</string>
|
||||
</property>
|
||||
@@ -204,6 +247,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_fillKeysButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Fill Keys</string>
|
||||
</property>
|
||||
@@ -211,6 +260,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_trailerDecoderButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Trailer Decoder</string>
|
||||
</property>
|
||||
@@ -218,6 +273,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_fontButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Set Fonts</string>
|
||||
</property>
|
||||
@@ -290,6 +351,12 @@
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="MF_Type_miniButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string extracomment="320">MINI</string>
|
||||
</property>
|
||||
@@ -297,6 +364,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="MF_Type_1kButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string extracomment="1024">1K</string>
|
||||
</property>
|
||||
@@ -307,6 +380,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="MF_Type_2kButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string extracomment="2048">2K</string>
|
||||
</property>
|
||||
@@ -314,6 +393,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="MF_Type_4kButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string extracomment="4096">4K</string>
|
||||
</property>
|
||||
@@ -426,6 +511,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_Attack_infoButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Card Info</string>
|
||||
</property>
|
||||
@@ -439,6 +530,12 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Check Default</string>
|
||||
</property>
|
||||
@@ -448,7 +545,7 @@
|
||||
<widget class="QPushButton" name="MF_Attack_nestedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
@@ -459,6 +556,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_Attack_hardnestedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Hardnested</string>
|
||||
</property>
|
||||
@@ -611,6 +714,12 @@
|
||||
</property>
|
||||
<item row="2" column="0">
|
||||
<widget class="QPushButton" name="MF_RW_readBlockButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Read One</string>
|
||||
</property>
|
||||
@@ -618,6 +727,12 @@
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QPushButton" name="MF_RW_writeBlockButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Write One</string>
|
||||
</property>
|
||||
@@ -625,6 +740,12 @@
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QPushButton" name="MF_RW_readSelectedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Read Selected</string>
|
||||
</property>
|
||||
@@ -632,6 +753,12 @@
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="MF_RW_writeSelectedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Write Selected</string>
|
||||
</property>
|
||||
@@ -664,6 +791,12 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Restore</string>
|
||||
</property>
|
||||
@@ -689,6 +822,12 @@
|
||||
</property>
|
||||
<item row="0" column="2">
|
||||
<widget class="QPushButton" name="MF_UID_lockButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Lock UFUID Card</string>
|
||||
</property>
|
||||
@@ -696,6 +835,12 @@
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QPushButton" name="MF_UID_aboutUIDButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>About UID Card</string>
|
||||
</property>
|
||||
@@ -703,6 +848,12 @@
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QPushButton" name="MF_UID_readBlockButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Read One</string>
|
||||
</property>
|
||||
@@ -710,20 +861,38 @@
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QPushButton" name="MF_UID_writeBlockButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Write One</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QPushButton" name="MF_UID_readAllButton">
|
||||
<widget class="QPushButton" name="MF_UID_readSelectedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Read Selected</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="MF_UID_writeAllButton">
|
||||
<widget class="QPushButton" name="MF_UID_writeSelectedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Write Selected</string>
|
||||
</property>
|
||||
@@ -737,6 +906,12 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Set Parameter</string>
|
||||
</property>
|
||||
@@ -812,22 +987,28 @@
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_Sim_loadDataButton">
|
||||
<property name="text">
|
||||
<string>Load from data above</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_Sim_writeAllButton">
|
||||
<widget class="QPushButton" name="MF_Sim_writeSelectedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Read All</string>
|
||||
<string>Write Selected</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MF_Sim_readSelectedButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Read Selected</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
Reference in New Issue
Block a user