This commit is contained in:
iceman1001 2023-12-18 10:11:11 +01:00
commit f8f135a3b7
17 changed files with 240 additions and 226 deletions

View file

@ -509,6 +509,7 @@ const static vocabulary_t vocabulary[] = {
{ 0, "hf xerox dump" }, { 0, "hf xerox dump" },
{ 1, "hw help" }, { 1, "hw help" },
{ 0, "hw break" }, { 0, "hw break" },
{ 0, "hw bootloader" },
{ 1, "hw connect" }, { 1, "hw connect" },
{ 0, "hw dbg" }, { 0, "hw dbg" },
{ 0, "hw detectreader" }, { 0, "hw detectreader" },

View file

@ -2320,13 +2320,13 @@
"notes": [ "notes": [
"hf emrtd dump", "hf emrtd dump",
"hf emrtd dump --dir ../dump", "hf emrtd dump --dir ../dump",
"hf emrtd dump -n 123456789 -d 19890101 -e 20250401" "hf emrtd dump -n 123456789 -d 890101 -e 250401"
], ],
"offline": false, "offline": false,
"options": [ "options": [
"-h, --help This help", "-h, --help This help",
"-n, --documentnumber <alphanum> document number, up to 9 chars", "-n, --doc <alphanum> document number, up to 9 chars",
"-d, --dateofbirth <YYMMDD> date of birth in YYMMDD format", "-d, --date <YYMMDD> date of birth in YYMMDD format",
"-e, --expiry <YYMMDD> expiry in YYMMDD format", "-e, --expiry <YYMMDD> expiry in YYMMDD format",
"-m, --mrz <[0-9A-Z<]> 2nd line of MRZ, 44 chars", "-m, --mrz <[0-9A-Z<]> 2nd line of MRZ, 44 chars",
"--dir <str> save dump to the given dirpath" "--dir <str> save dump to the given dirpath"
@ -2339,14 +2339,14 @@
"notes": [ "notes": [
"hf emrtd info", "hf emrtd info",
"hf emrtd info --dir ../dumps", "hf emrtd info --dir ../dumps",
"hf emrtd info -n 123456789 -d 19890101 -e 20250401", "hf emrtd info -n 123456789 -d 890101 -e 250401",
"hf emrtd info -n 123456789 -d 19890101 -e 20250401 -i" "hf emrtd info -n 123456789 -d 890101 -e 250401 -i"
], ],
"offline": true, "offline": true,
"options": [ "options": [
"-h, --help This help", "-h, --help This help",
"-n, --documentnumber <alphanum> document number, up to 9 chars", "-n, --doc <alphanum> document number, up to 9 chars",
"-d, --dateofbirth <YYMMDD> date of birth in YYMMDD format", "-d, --date <YYMMDD> date of birth in YYMMDD format",
"-e, --expiry <YYMMDD> expiry in YYMMDD format", "-e, --expiry <YYMMDD> expiry in YYMMDD format",
"-m, --mrz <[0-9A-Z<]> 2nd line of MRZ, 44 chars (passports only)", "-m, --mrz <[0-9A-Z<]> 2nd line of MRZ, 44 chars (passports only)",
"--dir <str> display info from offline dump stored in dirpath", "--dir <str> display info from offline dump stored in dirpath",
@ -4712,7 +4712,7 @@
"description": "Information and check vulnerabilities in a MIFARE Classic card Some cards in order to extract information you need to specify key and/or specific keys in the copmmand line", "description": "Information and check vulnerabilities in a MIFARE Classic card Some cards in order to extract information you need to specify key and/or specific keys in the copmmand line",
"notes": [ "notes": [
"hf mf info", "hf mf info",
"hf mf info -k ffffffff -n -v" "hf mf info -k FFFFFFFFFFFF -n -v"
], ],
"offline": false, "offline": false,
"options": [ "options": [
@ -7601,6 +7601,18 @@
], ],
"usage": "hints [-h10]" "usage": "hints [-h10]"
}, },
"hw bootloader": {
"command": "hw bootloader",
"description": "Reboot Proxmark3 into bootloader mode",
"notes": [
"hw bootloader"
],
"offline": false,
"options": [
"-h, --help This help"
],
"usage": "hw bootloader [-h]"
},
"hw break": { "hw break": {
"command": "hw break", "command": "hw break",
"description": "send break loop package", "description": "send break loop package",
@ -9055,7 +9067,7 @@
"-1, --ht1 Card type Hitag 1", "-1, --ht1 Card type Hitag 1",
"-2, --ht2 Card type Hitag 2", "-2, --ht2 Card type Hitag 2",
"-s, --hts Card type Hitag S", "-s, --hts Card type Hitag S",
"-m, --htm Card type Hitag \u041e\u0458" "-m, --htm Card type Hitag \u03bc"
], ],
"usage": "lf hitag eload [-h12sm] -f <fn>" "usage": "lf hitag eload [-h12sm] -f <fn>"
}, },
@ -12146,8 +12158,8 @@
} }
}, },
"metadata": { "metadata": {
"commands_extracted": 702, "commands_extracted": 703,
"extracted_by": "PM3Help2JSON v1.00", "extracted_by": "PM3Help2JSON v1.00",
"extracted_on": "2023-12-11T23:10:13" "extracted_on": "2023-12-18T09:05:00"
} }
} }

View file

@ -784,6 +784,7 @@ Check column "offline" for their availability.
|------- |------- |----------- |------- |------- |-----------
|`hw help `|Y |`This help` |`hw help `|Y |`This help`
|`hw break `|N |`Send break loop usb command` |`hw break `|N |`Send break loop usb command`
|`hw bootloader `|N |`Reboot Proxmark3 into bootloader mode`
|`hw connect `|Y |`Connect Proxmark3 to serial port` |`hw connect `|Y |`Connect Proxmark3 to serial port`
|`hw dbg `|N |`Set Proxmark3 debug level` |`hw dbg `|N |`Set Proxmark3 debug level`
|`hw detectreader `|N |`Detect external reader field` |`hw detectreader `|N |`Detect external reader field`