mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2026-07-02 16:24:27 +08:00
Show more information when running card info
This commit is contained in:
@@ -102,7 +102,12 @@ QMap<QString, QString> Mifare::info(bool isRequiringOutput)
|
||||
QVariantMap config = configMap["info"].toMap();
|
||||
if(isRequiringOutput)
|
||||
{
|
||||
QString result = util->execCMDWithOutput(config["cmd"].toString(), 500);
|
||||
QString cmd = config["basic cmd"].toString();
|
||||
|
||||
// for official client
|
||||
if(cmd.isEmpty())
|
||||
cmd = config["cmd"].toString();
|
||||
QString result = util->execCMDWithOutput(cmd, 500);
|
||||
QStringList lineList = result.split("\n");
|
||||
|
||||
for(auto line = lineList.begin(); line != lineList.end(); line++)
|
||||
|
||||
Reference in New Issue
Block a user