mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
Merge pull request #3118 from kormax/felica-universal-node-discovery
Add universal node discovery for FeliCa
This commit is contained in:
@@ -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]
|
||||
- Added `hf felica discnodes` command (@kormax)
|
||||
- Added `hf mfp dump` command (@apply-science)
|
||||
- Added `hf felica seacinfo` command (@kormax)
|
||||
- Added `hf mfdes bruteisofid` and `hf mfdes selectisofid` commands (@kormax)
|
||||
|
||||
+1210
-258
File diff suppressed because it is too large
Load Diff
@@ -2037,6 +2037,12 @@ void annotateFelica(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
|
||||
case FELICA_WRTSEC_ACK:
|
||||
snprintf(exp, size, "WRITE ACK");
|
||||
break;
|
||||
case FELICA_GET_NODE_LIST_REQ:
|
||||
snprintf(exp, size, "REQUEST CODE LIST");
|
||||
break;
|
||||
case FELICA_GET_NODE_LIST_ACK:
|
||||
snprintf(exp, size, "REQUEST CODE LIST ACK");
|
||||
break;
|
||||
case FELICA_REQSRV2_REQ:
|
||||
snprintf(exp, size, "REQUEST SERVICE v2");
|
||||
break;
|
||||
|
||||
@@ -849,6 +849,9 @@ ISO 7816-4 Basic interindustry commands. For command APDU's.
|
||||
#define FELICA_WRTSEC_REQ 0x16
|
||||
#define FELICA_WRTSEC_ACK 0x17
|
||||
|
||||
#define FELICA_GET_NODE_LIST_REQ 0x1a
|
||||
#define FELICA_GET_NODE_LIST_ACK 0x1b
|
||||
|
||||
#define FELICA_GET_CONTAINER_ISSUE_INFO_REQ 0x22
|
||||
#define FELICA_GET_CONTAINER_ISSUE_INFO_ACK 0x23
|
||||
|
||||
|
||||
Reference in New Issue
Block a user