mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
missing input parameter causing client to crash
This commit is contained in:
parent
9910a5fee6
commit
ce115598b6
2 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
|||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||
|
||||
## [unreleased][unreleased]
|
||||
- Fixed `hf mf gload` - missing parameter (@iceman1001)
|
||||
- Changed `hf mf gload` - now handles 1k ev1 sized dumps (@iceman1001)
|
||||
- Changed wiegand format unpack functions to clear struct later (@iceman1001)
|
||||
- Changed `wiegand decode` - now accepts new padding format (@iceman1001)
|
||||
|
|
|
@ -8260,6 +8260,7 @@ static int CmdHF14AGen4Load(const char *cmd) {
|
|||
arg_param_begin,
|
||||
arg_lit0(NULL, "mini", "MIFARE Classic Mini / S20"),
|
||||
arg_lit0(NULL, "1k", "MIFARE Classic 1k / S50 (def)"),
|
||||
arg_lit0(NULL, "1k+", "MIFARE Classic Ev1 1k / S50"),
|
||||
arg_lit0(NULL, "2k", "MIFARE Classic/Plus 2k"),
|
||||
arg_lit0(NULL, "4k", "MIFARE Classic 4k / S70"),
|
||||
arg_str0("p", "pwd", "<hex>", "password 4bytes"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue