mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
Make Style
This commit is contained in:
parent
ef74541b28
commit
4dc8d5316a
16 changed files with 154 additions and 126 deletions
|
@ -360,7 +360,8 @@ const static vocabulory_t vocabulory[] = {
|
||||||
{ 0, "hf mf gsave" },
|
{ 0, "hf mf gsave" },
|
||||||
{ 0, "hf mf gsetblk" },
|
{ 0, "hf mf gsetblk" },
|
||||||
{ 0, "hf mf gview" },
|
{ 0, "hf mf gview" },
|
||||||
{ 0, "hf mf gdmconfig" },
|
{ 0, "hf mf gdmcfg" },
|
||||||
|
{ 0, "hf mf gdmsetcfg" },
|
||||||
{ 0, "hf mf gdmsetblk" },
|
{ 0, "hf mf gdmsetblk" },
|
||||||
{ 0, "hf mf ndefformat" },
|
{ 0, "hf mf ndefformat" },
|
||||||
{ 0, "hf mf ndefread" },
|
{ 0, "hf mf ndefread" },
|
||||||
|
|
|
@ -1354,9 +1354,10 @@
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
"-h, --help This help",
|
"-h, --help This help",
|
||||||
"-f, --file <fn> (optional) filename, if no <name> UID will be used as filename"
|
"-f, --file <fn> (optional) filename, if no <name> UID will be used as filename",
|
||||||
|
"--ns no save to file"
|
||||||
],
|
],
|
||||||
"usage": "hf 14b dump [-h] [-f <fn>]"
|
"usage": "hf 14b dump [-h] [-f <fn>] [--ns]"
|
||||||
},
|
},
|
||||||
"hf 14b help": {
|
"hf 14b help": {
|
||||||
"command": "hf 14b help",
|
"command": "hf 14b help",
|
||||||
|
@ -4218,9 +4219,10 @@
|
||||||
"--mini MIFARE Classic Mini / S20",
|
"--mini MIFARE Classic Mini / S20",
|
||||||
"--1k MIFARE Classic 1k / S50 (def)",
|
"--1k MIFARE Classic 1k / S50 (def)",
|
||||||
"--2k MIFARE Classic/Plus 2k",
|
"--2k MIFARE Classic/Plus 2k",
|
||||||
"--4k MIFARE Classic 4k / S70"
|
"--4k MIFARE Classic 4k / S70",
|
||||||
|
"--ns no save to file"
|
||||||
],
|
],
|
||||||
"usage": "hf mf dump [-h] [-f <fn>] [-k <fn>] [--mini] [--1k] [--2k] [--4k]"
|
"usage": "hf mf dump [-h] [-f <fn>] [-k <fn>] [--mini] [--1k] [--2k] [--4k] [--ns]"
|
||||||
},
|
},
|
||||||
"hf mf ecfill": {
|
"hf mf ecfill": {
|
||||||
"command": "hf mf ecfill",
|
"command": "hf mf ecfill",
|
||||||
|
@ -4400,18 +4402,18 @@
|
||||||
],
|
],
|
||||||
"usage": "hf mf fchk [-h] [-k <hex>]... [--mini] [--1k] [--2k] [--4k] [--emu] [--dump] [--mem] [-f <fn>]"
|
"usage": "hf mf fchk [-h] [-k <hex>]... [--mini] [--1k] [--2k] [--4k] [--emu] [--dump] [--mem] [-f <fn>]"
|
||||||
},
|
},
|
||||||
"hf mf gdmconfig": {
|
"hf mf gdmcfg": {
|
||||||
"command": "hf mf gdmconfig",
|
"command": "hf mf gdmcfg",
|
||||||
"description": "Get configuration data from magic gen4 GDM card.",
|
"description": "Get configuration data from magic gen4 GDM card.",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf mf gdmconfig"
|
"hf mf gdmcfg"
|
||||||
],
|
],
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
"-h, --help This help",
|
"-h, --help This help",
|
||||||
"-k, --key <hex> key 6 bytes"
|
"-k, --key <hex> key 6 bytes"
|
||||||
],
|
],
|
||||||
"usage": "hf mf gdmconfig [-h] [-k <hex>]"
|
"usage": "hf mf gdmcfg [-h] [-k <hex>]"
|
||||||
},
|
},
|
||||||
"hf mf gdmsetblk": {
|
"hf mf gdmsetblk": {
|
||||||
"command": "hf mf gdmsetblk",
|
"command": "hf mf gdmsetblk",
|
||||||
|
@ -4431,6 +4433,19 @@
|
||||||
],
|
],
|
||||||
"usage": "hf mf gdmsetblk [-hab] --blk <dec> [-d <hex>] [-k <hex>] [--force]"
|
"usage": "hf mf gdmsetblk [-hab] --blk <dec> [-d <hex>] [-k <hex>] [--force]"
|
||||||
},
|
},
|
||||||
|
"hf mf gdmsetcfg": {
|
||||||
|
"command": "hf mf gdmsetcfg",
|
||||||
|
"description": "Set configuration data on a magic gen4 GDM card",
|
||||||
|
"notes": [
|
||||||
|
"hf mf gdmsetcfg -d 850000000000000000005A5A00000008"
|
||||||
|
],
|
||||||
|
"offline": false,
|
||||||
|
"options": [
|
||||||
|
"-h, --help This help",
|
||||||
|
"-d, --data <hex> bytes to write, 16 hex bytes"
|
||||||
|
],
|
||||||
|
"usage": "hf mf gdmsetcfg [-h] -d <hex>"
|
||||||
|
},
|
||||||
"hf mf gen3blk": {
|
"hf mf gen3blk": {
|
||||||
"command": "hf mf gen3blk",
|
"command": "hf mf gen3blk",
|
||||||
"description": "Overwrite full manufacturer block for magic Gen3 card - You can specify part of manufacturer block as 4/7-bytes for UID change only",
|
"description": "Overwrite full manufacturer block for magic Gen3 card - You can specify part of manufacturer block as 4/7-bytes for UID change only",
|
||||||
|
@ -4902,6 +4917,7 @@
|
||||||
"hf mf value --blk 16 -k FFFFFFFFFFFF --inc 10",
|
"hf mf value --blk 16 -k FFFFFFFFFFFF --inc 10",
|
||||||
"hf mf value --blk 16 -k FFFFFFFFFFFF -b --dec 10",
|
"hf mf value --blk 16 -k FFFFFFFFFFFF -b --dec 10",
|
||||||
"hf mf value --blk 16 -k FFFFFFFFFFFF -b --get",
|
"hf mf value --blk 16 -k FFFFFFFFFFFF -b --get",
|
||||||
|
"hf mf value --blk 16 -k FFFFFFFFFFFF --res --transfer 30 --tk FFFFFFFFFFFF -> transfer block 16 value to block 30 (even if block can't be incremented by ACL)",
|
||||||
"hf mf value --get -d 87D612007829EDFF87D6120011EE11EE"
|
"hf mf value --get -d 87D612007829EDFF87D6120011EE11EE"
|
||||||
],
|
],
|
||||||
"offline": true,
|
"offline": true,
|
||||||
|
@ -4910,14 +4926,19 @@
|
||||||
"-k, --key <hex> key, 6 hex bytes",
|
"-k, --key <hex> key, 6 hex bytes",
|
||||||
"-a input key type is key A (def)",
|
"-a input key type is key A (def)",
|
||||||
"-b input key type is key B",
|
"-b input key type is key B",
|
||||||
"--inc <dec> Incremenet value by X (0 - 2147483647)",
|
"--inc <dec> Increment value by X (0 - 2147483647)",
|
||||||
"--dec <dec> Dcrement value by X (0 - 2147483647)",
|
"--dec <dec> Decrement value by X (0 - 2147483647)",
|
||||||
"--set <dec> Set value to X (-2147483647 - 2147483647)",
|
"--set <dec> Set value to X (-2147483647 - 2147483647)",
|
||||||
|
"--transfer <dec> Transfer value to other block (after inc/dec/restore)",
|
||||||
|
"--tkey <hex> transfer key, 6 hex bytes (if transfer is preformed to other sector)",
|
||||||
|
"--ta transfer key type is key A (def)",
|
||||||
|
"--tb transfer key type is key B",
|
||||||
"--get Get value from block",
|
"--get Get value from block",
|
||||||
|
"--res Restore (copy value to card buffer, should be used with --transfer)",
|
||||||
"--blk <dec> block number",
|
"--blk <dec> block number",
|
||||||
"-d, --data <hex> block data to extract values from (16 hex bytes)"
|
"-d, --data <hex> block data to extract values from (16 hex bytes)"
|
||||||
],
|
],
|
||||||
"usage": "hf mf value [-hab] [-k <hex>] [--inc <dec>] [--dec <dec>] [--set <dec>] [--get] [--blk <dec>] [-d <hex>]"
|
"usage": "hf mf value [-hab] [-k <hex>] [--inc <dec>] [--dec <dec>] [--set <dec>] [--transfer <dec>] [--tkey <hex>] [--ta] [--tb] [--get] [--res] [--blk <dec>] [-d <hex>]"
|
||||||
},
|
},
|
||||||
"hf mf view": {
|
"hf mf view": {
|
||||||
"command": "hf mf view",
|
"command": "hf mf view",
|
||||||
|
@ -6146,7 +6167,7 @@
|
||||||
},
|
},
|
||||||
"hf mfp commitp": {
|
"hf mfp commitp": {
|
||||||
"command": "hf mfp commitp",
|
"command": "hf mfp commitp",
|
||||||
"description": "Executes Commit Perso command. Can be used in SL0 mode only.",
|
"description": "Executes Commit Perso command. Can be used in SL0 mode only. OBS! This command will not be executed if CardConfigKey, CardMasterKey and L3SwitchKey AES keys are not written.",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf mfp commitp"
|
"hf mfp commitp"
|
||||||
],
|
],
|
||||||
|
@ -6246,9 +6267,9 @@
|
||||||
"-b, --keyb Use key B (def: keyA)",
|
"-b, --keyb Use key B (def: keyA)",
|
||||||
"-p, --plain Plain communication mode between reader and card",
|
"-p, --plain Plain communication mode between reader and card",
|
||||||
"--blk <0..255> Block number",
|
"--blk <0..255> Block number",
|
||||||
"--key <hex> Key, 16 hex bytes"
|
"-k, --key <hex> Key, 16 hex bytes"
|
||||||
],
|
],
|
||||||
"usage": "hf mfp rdbl [-hvbp] [-n <dec>] --blk <0..255> [--key <hex>]"
|
"usage": "hf mfp rdbl [-hvbp] [-n <dec>] --blk <0..255> [-k <hex>]"
|
||||||
},
|
},
|
||||||
"hf mfp rdsc": {
|
"hf mfp rdsc": {
|
||||||
"command": "hf mfp rdsc",
|
"command": "hf mfp rdsc",
|
||||||
|
@ -6335,9 +6356,10 @@
|
||||||
"-k, --key <hex> Key for authentication (UL-C 16 bytes, EV1/NTAG 4 bytes)",
|
"-k, --key <hex> Key for authentication (UL-C 16 bytes, EV1/NTAG 4 bytes)",
|
||||||
"-l Swap entered key's endianness",
|
"-l Swap entered key's endianness",
|
||||||
"-p, --page <dec> Manually set start page number to start from",
|
"-p, --page <dec> Manually set start page number to start from",
|
||||||
"-q, --qty <dec> Manually set number of pages to dump"
|
"-q, --qty <dec> Manually set number of pages to dump",
|
||||||
|
"--ns no save to file"
|
||||||
],
|
],
|
||||||
"usage": "hf mfu dump [-hl] [-f <fn>] [-k <hex>] [-p <dec>] [-q <dec>]"
|
"usage": "hf mfu dump [-hl] [-f <fn>] [-k <hex>] [-p <dec>] [-q <dec>] [--ns]"
|
||||||
},
|
},
|
||||||
"hf mfu eload": {
|
"hf mfu eload": {
|
||||||
"command": "hf mfu eload",
|
"command": "hf mfu eload",
|
||||||
|
@ -6565,7 +6587,7 @@
|
||||||
},
|
},
|
||||||
"hf mfu tamper": {
|
"hf mfu tamper": {
|
||||||
"command": "hf mfu tamper",
|
"command": "hf mfu tamper",
|
||||||
"description": "Set the congiguration of the NTAG 213TT tamper feature Supports: NTAG 213TT",
|
"description": "Set the configuration of the NTAG 213TT tamper feature Supports: NTAG 213TT",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf mfu tamper -e -> enable tamper feature",
|
"hf mfu tamper -e -> enable tamper feature",
|
||||||
"hf mfu tamper -d -> disable tamper feature",
|
"hf mfu tamper -d -> disable tamper feature",
|
||||||
|
@ -9610,7 +9632,7 @@
|
||||||
"command": "lf paradox clone",
|
"command": "lf paradox clone",
|
||||||
"description": "clone a paradox tag to a T55x7, Q5/T5555 or EM4305/4469 tag.",
|
"description": "clone a paradox tag to a T55x7, Q5/T5555 or EM4305/4469 tag.",
|
||||||
"notes": [
|
"notes": [
|
||||||
"lf paradox clone --fc 96 --cn 40426 -> encode for T55x7 tag with fc and cn",
|
"lf paradox clone --fc 96 --cn 40426 [--q5|--em] -> encode for T55x7 tag with fc and cn",
|
||||||
"lf paradox clone --raw 0f55555695596a6a9999a59a -> encode for T55x7 tag",
|
"lf paradox clone --raw 0f55555695596a6a9999a59a -> encode for T55x7 tag",
|
||||||
"lf paradox clone --raw 0f55555695596a6a9999a59a --q5 -> encode for Q5/T5555 tag",
|
"lf paradox clone --raw 0f55555695596a6a9999a59a --q5 -> encode for Q5/T5555 tag",
|
||||||
"lf paradox clone --raw 0f55555695596a6a9999a59a --em -> encode for EM4305/4469"
|
"lf paradox clone --raw 0f55555695596a6a9999a59a --em -> encode for EM4305/4469"
|
||||||
|
@ -9663,14 +9685,17 @@
|
||||||
"command": "lf paradox sim",
|
"command": "lf paradox sim",
|
||||||
"description": "Enables simulation of paradox card with specified card number. Simulation runs until the button is pressed or another USB command is issued.",
|
"description": "Enables simulation of paradox card with specified card number. Simulation runs until the button is pressed or another USB command is issued.",
|
||||||
"notes": [
|
"notes": [
|
||||||
"lf paradox sim --raw 0f55555695596a6a9999a59a"
|
"lf paradox sim --raw 0f55555695596a6a9999a59a -> simulate tag",
|
||||||
|
"lf paradox clone --fc 96 --cn 40426 -> simulate tag with fc and cn"
|
||||||
],
|
],
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
"-h, --help This help",
|
"-h, --help This help",
|
||||||
"-r, --raw <hex> raw hex data. 12 bytes"
|
"-r, --raw <hex> raw hex data. 12 bytes",
|
||||||
|
"--fc <dec> facility code",
|
||||||
|
"--cn <dec> card number"
|
||||||
],
|
],
|
||||||
"usage": "lf paradox sim [-h] [-r <hex>]"
|
"usage": "lf paradox sim [-h] [-r <hex>] [--fc <dec>] [--cn <dec>]"
|
||||||
},
|
},
|
||||||
"lf pcf7931 config": {
|
"lf pcf7931 config": {
|
||||||
"command": "lf pcf7931 config",
|
"command": "lf pcf7931 config",
|
||||||
|
@ -10199,12 +10224,13 @@
|
||||||
"-f, --file <fn> filename (default is generated on blk 0)",
|
"-f, --file <fn> filename (default is generated on blk 0)",
|
||||||
"-o, --override override, force pwd read despite danger to card",
|
"-o, --override override, force pwd read despite danger to card",
|
||||||
"-p, --pwd <hex> password (4 hex bytes)",
|
"-p, --pwd <hex> password (4 hex bytes)",
|
||||||
|
"--ns no save",
|
||||||
"--r0 downlink - fixed bit length",
|
"--r0 downlink - fixed bit length",
|
||||||
"--r1 downlink - long leading reference",
|
"--r1 downlink - long leading reference",
|
||||||
"--r2 downlink - leading zero",
|
"--r2 downlink - leading zero",
|
||||||
"--r3 downlink - 1 of 4 coding reference"
|
"--r3 downlink - 1 of 4 coding reference"
|
||||||
],
|
],
|
||||||
"usage": "lf t55xx dump [-ho] [-f <fn>] [-p <hex>] [--r0] [--r1] [--r2] [--r3]"
|
"usage": "lf t55xx dump [-ho] [-f <fn>] [-p <hex>] [--ns] [--r0] [--r1] [--r2] [--r3]"
|
||||||
},
|
},
|
||||||
"lf t55xx help": {
|
"lf t55xx help": {
|
||||||
"command": "lf t55xx help",
|
"command": "lf t55xx help",
|
||||||
|
@ -11987,8 +12013,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"commands_extracted": 754,
|
"commands_extracted": 755,
|
||||||
"extracted_by": "PM3Help2JSON v1.00",
|
"extracted_by": "PM3Help2JSON v1.00",
|
||||||
"extracted_on": "2023-03-26T15:04:49"
|
"extracted_on": "2023-05-25T01:54:13"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -523,7 +523,8 @@ Check column "offline" for their availability.
|
||||||
|`hf mf gsave `|N |`Save dump from card into file or emulator`
|
|`hf mf gsave `|N |`Save dump from card into file or emulator`
|
||||||
|`hf mf gsetblk `|N |`Write block to card`
|
|`hf mf gsetblk `|N |`Write block to card`
|
||||||
|`hf mf gview `|N |`View card`
|
|`hf mf gview `|N |`View card`
|
||||||
|`hf mf gdmconfig `|N |`Read config block from card`
|
|`hf mf gdmcfg `|N |`Read config block from card`
|
||||||
|
|`hf mf gdmsetcfg `|N |`Write config block to card`
|
||||||
|`hf mf gdmsetblk `|N |`Write block to card`
|
|`hf mf gdmsetblk `|N |`Write block to card`
|
||||||
|`hf mf ndefformat `|N |`Format MIFARE Classic Tag as NFC Tag`
|
|`hf mf ndefformat `|N |`Format MIFARE Classic Tag as NFC Tag`
|
||||||
|`hf mf ndefread `|N |`Read and print NDEF records from card`
|
|`hf mf ndefread `|N |`Read and print NDEF records from card`
|
||||||
|
@ -568,7 +569,7 @@ Check column "offline" for their availability.
|
||||||
|`hf mfu restore `|N |`Restore a dump onto a MFU MAGIC tag`
|
|`hf mfu restore `|N |`Restore a dump onto a MFU MAGIC tag`
|
||||||
|`hf mfu view `|Y |`Display content from tag dump file`
|
|`hf mfu view `|Y |`Display content from tag dump file`
|
||||||
|`hf mfu wrbl `|N |`Write block`
|
|`hf mfu wrbl `|N |`Write block`
|
||||||
|`hf mfu tamper `|N |`Cofigure the tamper feature on an NTAG 213TT`
|
|`hf mfu tamper `|N |`Configure the tamper feature on an NTAG 213TT`
|
||||||
|`hf mfu eload `|N |`Load Ultralight dump file into emulator memory`
|
|`hf mfu eload `|N |`Load Ultralight dump file into emulator memory`
|
||||||
|`hf mfu esave `|N |`Save Ultralight dump file from emulator memory`
|
|`hf mfu esave `|N |`Save Ultralight dump file from emulator memory`
|
||||||
|`hf mfu eview `|N |`View emulator memory`
|
|`hf mfu eview `|N |`View emulator memory`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue