mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-16 10:03:04 -07:00
style
This commit is contained in:
parent
b24d7736c5
commit
568e35ca84
4 changed files with 25 additions and 21 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -3,6 +3,13 @@ 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...
|
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]
|
## [unreleased][unreleased]
|
||||||
|
|
||||||
|
## [Nitride][2023-01-29]
|
||||||
|
- Changed `build_all_firmwares.sh` to fit GENERIC 256kb firmware images (@doegox)
|
||||||
|
- Fixed some coverity fixes (@iceman1001)
|
||||||
|
- Fixed `make accessrights` on Fedora (@mooey5775)
|
||||||
|
- Fixed `hf mfu info` - can now identify the 50 pF version of NTAG 210u(micro) (@mjacksn)
|
||||||
|
- Added `hf 15` sub-commands for controlling EAS, AFI, privacy mode, and the setting of passwords on SLIX tags (@mjacksn)
|
||||||
- Added new magic gen4 cards command in docs (@McEloff)
|
- Added new magic gen4 cards command in docs (@McEloff)
|
||||||
- Added `hf tesla info` - intital information command to read TESLA cards (@iceman1001)
|
- Added `hf tesla info` - intital information command to read TESLA cards (@iceman1001)
|
||||||
- Changed `hf emrtd info` - looking for lower case .bin extensions (@iceman1001)
|
- Changed `hf emrtd info` - looking for lower case .bin extensions (@iceman1001)
|
||||||
|
@ -41,9 +48,6 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
||||||
- Fixed `pm3` shell script now automatically detects WSL2 with USBIPD serial ports (@iceman1001)
|
- Fixed `pm3` shell script now automatically detects WSL2 with USBIPD serial ports (@iceman1001)
|
||||||
- Fixed `trace list -c` - annotation of CRC bytes now is colored or squared if no ansi colors is supported (@iceman1001)
|
- Fixed `trace list -c` - annotation of CRC bytes now is colored or squared if no ansi colors is supported (@iceman1001)
|
||||||
- Fixed `trace list -t mf` - now also finds UID if anticollision is partial captured, to be used for mfkey (@iceman1001)
|
- Fixed `trace list -t mf` - now also finds UID if anticollision is partial captured, to be used for mfkey (@iceman1001)
|
||||||
- Fixed `make accessrights` on Fedora (@mooey5775)
|
|
||||||
- Fixed `hf mfu info` - can now identify the 50 pF version of NTAG 210u(micro) (@mjacksn)
|
|
||||||
- Added `hf 15` sub-commands for controlling EAS, AFI, privacy mode, and the setting of passwords on SLIX tags (@mjacksn)
|
|
||||||
|
|
||||||
|
|
||||||
## [Radium.4.15864][2022-10-29]
|
## [Radium.4.15864][2022-10-29]
|
||||||
|
@ -1373,4 +1377,4 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
||||||
- iClass functionality: full simulation of iclass tags, so tags can be simulated with data (not only CSN). Not yet support for write/update, but readers do not seem to enforce update. (@holiman).
|
- iClass functionality: full simulation of iclass tags, so tags can be simulated with data (not only CSN). Not yet support for write/update, but readers do not seem to enforce update. (@holiman).
|
||||||
- iClass decryption. Proxmark can now decrypt data on an iclass tag, but requires you to have the HID decryption key locally on your computer, as this is not bundled with the sourcecode.
|
- iClass decryption. Proxmark can now decrypt data on an iclass tag, but requires you to have the HID decryption key locally on your computer, as this is not bundled with the sourcecode.
|
||||||
- `hf 15 info` can detect NTAG 5 tags
|
- `hf 15 info` can detect NTAG 5 tags
|
||||||
- `hf 15 info` include an EAS status check on more of the icode tags which support EAS (SLI, SLIX, SLIX-L, and SLIX-S)
|
- `hf 15 info` include an EAS status check on more of the icode tags which support EAS (SLI, SLIX, SLIX-L, and SLIX-S)
|
||||||
|
|
|
@ -1462,7 +1462,7 @@ static int CmdHF14AChaining(const char *Cmd) {
|
||||||
"Enable/Disable ISO14443a input chaining. Maximum input length goes from ATS.",
|
"Enable/Disable ISO14443a input chaining. Maximum input length goes from ATS.",
|
||||||
"hf 14a chaining -> show chaining enable/disable state\n"
|
"hf 14a chaining -> show chaining enable/disable state\n"
|
||||||
"hf 14a chaining --off -> disable chaining\n"
|
"hf 14a chaining --off -> disable chaining\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
|
|
|
@ -2769,9 +2769,9 @@ static int CmdHF15EASPassProtect(const char *Cmd) {
|
||||||
|
|
||||||
CLIParserContext *ctx;
|
CLIParserContext *ctx;
|
||||||
CLIParserInit(&ctx, "hf 15 passprotecteas",
|
CLIParserInit(&ctx, "hf 15 passprotecteas",
|
||||||
"This command enables the password protect of EAS.\n"
|
"This command enables the password protect of EAS.\n"
|
||||||
"*** OBS! This action can not be undone! ***",
|
"*** OBS! This action can not be undone! ***",
|
||||||
"hf 15 passprotecteas -p 00000000 --force");
|
"hf 15 passprotecteas -p 00000000 --force");
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
|
|
|
@ -1101,8 +1101,8 @@
|
||||||
"command": "hf 14a chaining",
|
"command": "hf 14a chaining",
|
||||||
"description": "Enable/Disable ISO14443a input chaining. Maximum input length goes from ATS.",
|
"description": "Enable/Disable ISO14443a input chaining. Maximum input length goes from ATS.",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf 14a chaining --off -> disable chaining",
|
"hf 14a chaining -> show chaining enable/disable state",
|
||||||
"hf 14a chaining -> show chaining enable/disable state"
|
"hf 14a chaining --off -> disable chaining"
|
||||||
],
|
],
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
|
@ -1658,31 +1658,31 @@
|
||||||
},
|
},
|
||||||
"hf 15 passprotectafi": {
|
"hf 15 passprotectafi": {
|
||||||
"command": "hf 15 passprotectafi",
|
"command": "hf 15 passprotectafi",
|
||||||
"description": "Password protect AFI. Cannot be undone.",
|
"description": "This command enables the password protect of AFI. *** OBS! This action can not be undone! ***",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf 15 passprotectafi -p 00000000 -c"
|
"hf 15 passprotectafi -p 00000000 --force"
|
||||||
],
|
],
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
"-h, --help This help",
|
"-h, --help This help",
|
||||||
"-p, --password <hex> EAS/AFI password, 8 hex bytes",
|
"-p, --pwd <hex> EAS/AFI password, 8 hex bytes",
|
||||||
"-c, --confirm confirm the execution of this irreversible command"
|
"--force Force execution of command (irreversible)"
|
||||||
],
|
],
|
||||||
"usage": "hf 15 passprotectafi [-hc] -p <hex>"
|
"usage": "hf 15 passprotectafi [-h] -p <hex> [--force]"
|
||||||
},
|
},
|
||||||
"hf 15 passprotecteas": {
|
"hf 15 passprotecteas": {
|
||||||
"command": "hf 15 passprotecteas",
|
"command": "hf 15 passprotecteas",
|
||||||
"description": "Password protect EAS. Cannot be undone.",
|
"description": "This command enables the password protect of EAS. *** OBS! This action can not be undone! ***",
|
||||||
"notes": [
|
"notes": [
|
||||||
"hf 15 passprotecteas -p 00000000 -c"
|
"hf 15 passprotecteas -p 00000000 --force"
|
||||||
],
|
],
|
||||||
"offline": false,
|
"offline": false,
|
||||||
"options": [
|
"options": [
|
||||||
"-h, --help This help",
|
"-h, --help This help",
|
||||||
"-p, --password <hex> EAS/AFI password, 8 hex bytes",
|
"-p, --pwd <hex> EAS/AFI password, 8 hex bytes",
|
||||||
"-c, --confirm confirm the execution of this irreversible command"
|
"--force Force execution of command (irreversible)"
|
||||||
],
|
],
|
||||||
"usage": "hf 15 passprotecteas [-hc] -p <hex>"
|
"usage": "hf 15 passprotecteas [-h] -p <hex> [--force]"
|
||||||
},
|
},
|
||||||
"hf 15 raw": {
|
"hf 15 raw": {
|
||||||
"command": "hf 15 raw",
|
"command": "hf 15 raw",
|
||||||
|
@ -11884,6 +11884,6 @@
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"commands_extracted": 748,
|
"commands_extracted": 748,
|
||||||
"extracted_by": "PM3Help2JSON v1.00",
|
"extracted_by": "PM3Help2JSON v1.00",
|
||||||
"extracted_on": "2023-01-29T03:58:53"
|
"extracted_on": "2023-01-29T17:29:14"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue