mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2026-07-14 22:55:32 +08:00
Some slight changes
Add HighDPI support(not tested) Support Mifare darkside attack Hide unfinished function tabs
This commit is contained in:
@@ -252,6 +252,21 @@ void Mifare::hardnested()
|
||||
ui->funcTab->setCurrentIndex(1);
|
||||
}
|
||||
|
||||
void Mifare::darkside()
|
||||
{
|
||||
if(util->getClientType() == Util::CLIENTTYPE_OFFICIAL)
|
||||
{
|
||||
util->execCMD("hf mf mifare");
|
||||
ui->funcTab->setCurrentIndex(1);
|
||||
}
|
||||
else if(util->getClientType() == Util::CLIENTTYPE_ICEMAN)
|
||||
{
|
||||
util->execCMD("hf mf darkside");
|
||||
ui->funcTab->setCurrentIndex(1);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void Mifare::sniff()
|
||||
{
|
||||
util->execCMD("hf mf sniff");
|
||||
|
||||
@@ -66,6 +66,7 @@ public:
|
||||
QString info(bool isRequiringOutput = false);
|
||||
void chk();
|
||||
void nested();
|
||||
void darkside();
|
||||
void hardnested();
|
||||
void sniff();
|
||||
void snoop();
|
||||
|
||||
Reference in New Issue
Block a user