diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a8cd8220..0e86025fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac ## [Frostbit.4.14831] [2022-01-11] - Changed Wiegand format lookup - now case-insensitive (@iceman1001) - Added new standalone mode `hf_15SNIFF` - Same as `hf_14ASNIFF` standalone mode for RDV4 - flashmem (@startrk1995) + - Added `hf gallagher` commands for read/writing DESFire cards (@DarkMatterMatt) - Added support for MIFARE DESFire application creation without authentication (@joswr1ght) - Changed drastically Hitag S ARM code to remove state machines and ease way to build new commands (@doegox) - Fixed Hitag S crypto mode with key or NrAr, fixed `lf hitag cc`, fixed pwd dump in hitagS dump with LKP (@doegox) @@ -64,7 +65,6 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac - Fixed `SimulateTagLowFrequencyEx` ignoring the `ledcontrol` argument (@zabszk) - Added ledcontrol argument to LF operations (@zabszk) - Added new standalone mode `dankarmulti` - select and run multiple standalone modes (@dankar) - - Added `hf gallagher` commands for read/writing DESFire cards (@DarkMatterMatt) ## [crimson.4.14434][2021-09-18] - Fixed `hf mf staticnested` - flashmem / non loop now works (@horrordash) diff --git a/client/src/cmdhfgallagher.c b/client/src/cmdhfgallagher.c index 511fb47cb..7d46953ef 100644 --- a/client/src/cmdhfgallagher.c +++ b/client/src/cmdhfgallagher.c @@ -941,12 +941,12 @@ static int CmdGallagherClone(const char *cmd) { arg_param_begin, arg_int0("n", "keynum", "", "PICC key number [default = 0]"), arg_str0("t", "algo", "", "PICC crypt algo: DES, 2TDEA, 3TDEA, AES"), - arg_str0("k", "key", "", "Key for authentication to the PICC to create applications (HEX 8(DES), 16(2TDEA or AES) or 24(3TDEA) bytes)"), + arg_str0("k", "key", "", "Key for authentication to the PICC to create applications"), arg_u64_1(NULL, "rc", "", "Region code. 4 bits max"), arg_u64_1(NULL, "fc", "", "Facility code. 2 bytes max"), arg_u64_1(NULL, "cn", "", "Card number. 3 bytes max"), arg_u64_1(NULL, "il", "", "Issue level. 4 bits max"), - arg_str0(NULL, "aid", "", "Application ID to write (3 bytes) [default automatically chooses an AID]"), + arg_str0(NULL, "aid", "", "Application ID to write (3 bytes) [default automatically chooses]"), arg_str0(NULL, "sitekey", "", "Site key to compute diversified keys (16 bytes)"), arg_str0(NULL, "cadkey", "", "Custom AES key 0 to modify the Card Application Directory (16 bytes)"), arg_lit0(NULL, "nocadupdate", "Don't modify the Card Application Directory (only creates the app)"), diff --git a/doc/commands.json b/doc/commands.json index 56e392eaf..ad96cf2ea 100644 --- a/doc/commands.json +++ b/doc/commands.json @@ -2318,12 +2318,12 @@ "-h, --help this help", "-n, --keynum picc key number [default = 0]", "-t, --algo picc crypt algo: des, 2tdea, 3tdea, aes", - "-k, --key key for authentication to the picc to create applications (hex 8(des), 16(2tdea or aes) or 24(3tdea) bytes)", + "-k, --key key for authentication to the picc to create applications", "--rc region code. 4 bits max", "--fc facility code. 2 bytes max", "--cn card number. 3 bytes max", "--il issue level. 4 bits max", - "--aid application id to write (3 bytes) [default automatically chooses an aid]", + "--aid application id to write (3 bytes) [default automatically chooses]", "--sitekey site key to compute diversified keys (16 bytes)", "--cadkey custom aes key 0 to modify the card application directory (16 bytes)", "--nocadupdate don't modify the card application directory (only creates the app)", @@ -10205,6 +10205,6 @@ "metadata": { "commands_extracted": 598, "extracted_by": "PM3Help2JSON v1.00", - "extracted_on": "2022-01-15T01:07:16" + "extracted_on": "2022-01-17T10:37:00" } } \ No newline at end of file