mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-17 18:50:32 +08:00
textual
This commit is contained in:
parent
fb5ba83569
commit
8a95a62b00
3 changed files with 3 additions and 3 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...
|
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]
|
||||||
|
- Fixed `hf 14a apdu` - now don't skip first P2 iteration (@iceman1001)
|
||||||
- Added `hf ntag424` - skeleton with SDM (@iceman1001)
|
- Added `hf ntag424` - skeleton with SDM (@iceman1001)
|
||||||
- Updated hf_14a_i2crevive.lua - fixed broken apdus (@Equipter)
|
- Updated hf_14a_i2crevive.lua - fixed broken apdus (@Equipter)
|
||||||
- Use 128 bit slices whenever ARM NEON is available to speed up hardnested (@Doridian)
|
- Use 128 bit slices whenever ARM NEON is available to speed up hardnested (@Doridian)
|
||||||
|
|
|
@ -2403,7 +2403,7 @@ static int CmdHf14AFindapdu(const char *Cmd) {
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
PrintAndLogEx(SUCCESS, "Starting the APDU finder [ CLA " _GREEN_("%02X") " INS " _GREEN_("%02X") " P1 " _GREEN_("%02X") " P2 " _GREEN_("%02X") " ]", cla, ins, p1, p2);
|
PrintAndLogEx(SUCCESS, "Starting the APDU finder [ CLA " _GREEN_("%02X") " INS " _GREEN_("%02X") " P1 " _GREEN_("%02X") " P2 " _GREEN_("%02X") " ]", cla, ins, p1, p2);
|
||||||
|
|
||||||
bool inc_p1 = true;
|
bool inc_p1 = false;
|
||||||
bool skip_ins = false;
|
bool skip_ins = false;
|
||||||
uint64_t all_sw[256][256] = { { 0 } };
|
uint64_t all_sw[256][256] = { { 0 } };
|
||||||
uint64_t sw_occurrences = 0;
|
uint64_t sw_occurrences = 0;
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
#include "cmdhfmf.h"
|
#include "cmdhfmf.h"
|
||||||
#include "cmdhf14a.h"
|
#include "cmdhf14a.h"
|
||||||
#include "comms.h"
|
#include "comms.h"
|
||||||
#include "fileutils.h"
|
|
||||||
#include "protocols.h"
|
#include "protocols.h"
|
||||||
#include "generator.h"
|
#include "generator.h"
|
||||||
#include "nfc/ndef.h"
|
#include "nfc/ndef.h"
|
||||||
|
@ -4200,7 +4199,7 @@ static int CmdHF14AMfuView(const char *Cmd) {
|
||||||
res = loadFileEML_safe(filename, (void **)&dump, &bytes_read);
|
res = loadFileEML_safe(filename, (void **)&dump, &bytes_read);
|
||||||
break;
|
break;
|
||||||
case DICTIONARY: {
|
case DICTIONARY: {
|
||||||
PrintAndLogEx(ERR, "Error: Only BIN/JSON formats allowed");
|
PrintAndLogEx(ERR, "Error: Only BIN/EML/JSON formats allowed");
|
||||||
free(dump);
|
free(dump);
|
||||||
return PM3_EINVARG;
|
return PM3_EINVARG;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue