mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
make style
This commit is contained in:
parent
8b2edf398a
commit
c2092ee2ed
3 changed files with 8 additions and 9 deletions
|
@ -70,7 +70,7 @@ extern "C" void RepaintGraphWindow(void) {
|
||||||
extern "C" void ShowPictureWindow(char *fn) {
|
extern "C" void ShowPictureWindow(char *fn) {
|
||||||
// No support for jpeg2000 in Qt Image since a while...
|
// No support for jpeg2000 in Qt Image since a while...
|
||||||
// https://doc.qt.io/qt-5/qtimageformats-index.html
|
// https://doc.qt.io/qt-5/qtimageformats-index.html
|
||||||
if(strlen(fn) > 4 && !strcmp(fn + strlen(fn) - 4, ".jp2"))
|
if (strlen(fn) > 4 && !strcmp(fn + strlen(fn) - 4, ".jp2"))
|
||||||
return;
|
return;
|
||||||
if (!gui) {
|
if (!gui) {
|
||||||
// Show a notice if X11/XQuartz isn't available
|
// Show a notice if X11/XQuartz isn't available
|
||||||
|
|
|
@ -3659,13 +3659,13 @@
|
||||||
"hf mf chk --4k -k ffffffffffff -> check all sectors, all keys against mifare 4k",
|
"hf mf chk --4k -k ffffffffffff -> check all sectors, all keys against mifare 4k",
|
||||||
"hf mf chk --1k --emu -> check all sectors, all keys, 1k, and write to emulator memory",
|
"hf mf chk --1k --emu -> check all sectors, all keys, 1k, and write to emulator memory",
|
||||||
"hf mf chk --1k --dump -> check all sectors, all keys, 1k, and write to file",
|
"hf mf chk --1k --dump -> check all sectors, all keys, 1k, and write to file",
|
||||||
"hf mf chk -a --blk 0 -f mfc_default_keys.dic -> check dictionary against block 0, key a"
|
"hf mf chk -a --tblk 0 -f mfc_default_keys.dic -> check dictionary against block 0, key a"
|
||||||
],
|
],
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
"-h, --help this help",
|
"-h, --help this help",
|
||||||
"-k, --key <hex> key specified as 12 hex symbols",
|
"-k, --key <hex> key specified as 12 hex symbols",
|
||||||
"--blk <dec> input block number",
|
"--tblk <dec> target block number",
|
||||||
"-a target key a",
|
"-a target key a",
|
||||||
"-b target key b",
|
"-b target key b",
|
||||||
"-*, --all target both key a & b (default)",
|
"-*, --all target both key a & b (default)",
|
||||||
|
@ -3677,7 +3677,7 @@
|
||||||
"--dump dump found keys to binary file",
|
"--dump dump found keys to binary file",
|
||||||
"-f, --file <fn> filename of dictionary"
|
"-f, --file <fn> filename of dictionary"
|
||||||
],
|
],
|
||||||
"usage": "hf mf chk [-hab*] [-k <hex>]... [--blk <dec>] [--mini] [--1k] [--2k] [--4k] [--emu] [--dump] [-f <fn>]"
|
"usage": "hf mf chk [-hab*] [-k <hex>]... [--tblk <dec>] [--mini] [--1k] [--2k] [--4k] [--emu] [--dump] [-f <fn>]"
|
||||||
},
|
},
|
||||||
"hf mf cload": {
|
"hf mf cload": {
|
||||||
"command": "hf mf cload",
|
"command": "hf mf cload",
|
||||||
|
@ -4182,7 +4182,7 @@
|
||||||
"command": "hf mf nested",
|
"command": "hf mf nested",
|
||||||
"description": "execute nested attack against mifare classic card for key recovery",
|
"description": "execute nested attack against mifare classic card for key recovery",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf mf nested --single --blk 0 -a ffffffffffff --tblk 4 --ta -> single sector key recovery. use block 0 key a to find block 4 key a",
|
"hf mf nested --blk 0 -a -k ffffffffffff --tblk 4 --ta -> use block 0 key a to find block 4 key a (single sector key recovery)",
|
||||||
"hf mf nested --mini --blk 0 -a -k ffffffffffff -> key recovery against mifare mini",
|
"hf mf nested --mini --blk 0 -a -k ffffffffffff -> key recovery against mifare mini",
|
||||||
"hf mf nested --1k --blk 0 -a -k ffffffffffff -> key recovery against mifare classic 1k",
|
"hf mf nested --1k --blk 0 -a -k ffffffffffff -> key recovery against mifare classic 1k",
|
||||||
"hf mf nested --2k --blk 0 -a -k ffffffffffff -> key recovery against mifare 2k",
|
"hf mf nested --2k --blk 0 -a -k ffffffffffff -> key recovery against mifare 2k",
|
||||||
|
@ -4204,10 +4204,9 @@
|
||||||
"--tb target b key",
|
"--tb target b key",
|
||||||
"--emu fill simulator keys from found keys",
|
"--emu fill simulator keys from found keys",
|
||||||
"--dump dump found keys to file",
|
"--dump dump found keys to file",
|
||||||
"--single single sector (defaults to all)",
|
|
||||||
"--mem use dictionary from flashmemory"
|
"--mem use dictionary from flashmemory"
|
||||||
],
|
],
|
||||||
"usage": "hf mf nested [-hab] [-k <hex>] [--mini] [--1k] [--2k] [--4k] [--blk <dec>] [--tblk <dec>] [--ta] [--tb] [--emu] [--dump] [--single] [--mem]"
|
"usage": "hf mf nested [-hab] [-k <hex>] [--mini] [--1k] [--2k] [--4k] [--blk <dec>] [--tblk <dec>] [--ta] [--tb] [--emu] [--dump] [--mem]"
|
||||||
},
|
},
|
||||||
"hf mf personalize": {
|
"hf mf personalize": {
|
||||||
"command": "hf mf personalize",
|
"command": "hf mf personalize",
|
||||||
|
@ -10890,6 +10889,6 @@
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"commands_extracted": 687,
|
"commands_extracted": 687,
|
||||||
"extracted_by": "PM3Help2JSON v1.00",
|
"extracted_by": "PM3Help2JSON v1.00",
|
||||||
"extracted_on": "2022-02-16T13:50:08"
|
"extracted_on": "2022-02-17T00:41:11"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue