mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-03 10:59:56 +08:00
Merge pull request #310 from ViRb3/rework-help
Rework hitag2 read/write help
This commit is contained in:
commit
ceda9f9f4b
2 changed files with 14 additions and 10 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]
|
||||||
|
- Rework hitag2 read/write help (@ViRb3)
|
||||||
- Add 'lf nedap' - encoding / decoding (anon)
|
- Add 'lf nedap' - encoding / decoding (anon)
|
||||||
- Add client option `-i` to stay in interactive mode after a script or command (@DidierStevens/@doegox)
|
- Add client option `-i` to stay in interactive mode after a script or command (@DidierStevens/@doegox)
|
||||||
- Add VSCode tasks (@ViRb3)
|
- Add VSCode tasks (@ViRb3)
|
||||||
|
|
|
@ -84,13 +84,14 @@ static int usage_hitag_reader(void) {
|
||||||
PrintAndLogEx(NORMAL, "Options:");
|
PrintAndLogEx(NORMAL, "Options:");
|
||||||
PrintAndLogEx(NORMAL, " h This help");
|
PrintAndLogEx(NORMAL, " h This help");
|
||||||
PrintAndLogEx(NORMAL, " HitagS (0*)");
|
PrintAndLogEx(NORMAL, " HitagS (0*)");
|
||||||
PrintAndLogEx(NORMAL, " 01 <nr> <ar> Challenge, read all pages from a Hitag S tag");
|
PrintAndLogEx(NORMAL, " 01 <nr> <ar> Read all pages, challenge mode");
|
||||||
PrintAndLogEx(NORMAL, " 02 <key> Set to 0 if no authentication is needed. Read all pages from a Hitag S tag");
|
PrintAndLogEx(NORMAL, " 02 <key> Read all pages, crypto mode. Set key=0 for no auth");
|
||||||
PrintAndLogEx(NORMAL, " Hitag1 (1*)");
|
PrintAndLogEx(NORMAL, " Hitag1 (1*)");
|
||||||
|
PrintAndLogEx(NORMAL, " Not implemented");
|
||||||
PrintAndLogEx(NORMAL, " Hitag2 (2*)");
|
PrintAndLogEx(NORMAL, " Hitag2 (2*)");
|
||||||
PrintAndLogEx(NORMAL, " 21 <password> Password mode");
|
PrintAndLogEx(NORMAL, " 21 <password> Read all pages, password mode. Default: 4D494B52 (\"MIKR\")");
|
||||||
PrintAndLogEx(NORMAL, " 22 <nr> <ar> Authentication");
|
PrintAndLogEx(NORMAL, " 22 <nr> <ar> Read all pages, challenge mode");
|
||||||
PrintAndLogEx(NORMAL, " 23 <key> Authentication, key is in format: ISK high + ISK low");
|
PrintAndLogEx(NORMAL, " 23 <key> Read all pages, crypto mode. Key format: ISK high + ISK low. Default: 4F4E4D494B52 (\"ONMIKR\")");
|
||||||
PrintAndLogEx(NORMAL, " 25 Test recorded authentications");
|
PrintAndLogEx(NORMAL, " 25 Test recorded authentications");
|
||||||
PrintAndLogEx(NORMAL, " 26 Just read UID");
|
PrintAndLogEx(NORMAL, " 26 Just read UID");
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -99,14 +100,16 @@ static int usage_hitag_writer(void) {
|
||||||
PrintAndLogEx(NORMAL, "Hitag writer functions");
|
PrintAndLogEx(NORMAL, "Hitag writer functions");
|
||||||
PrintAndLogEx(NORMAL, "Usage: lf hitag write [h] <reader function #>");
|
PrintAndLogEx(NORMAL, "Usage: lf hitag write [h] <reader function #>");
|
||||||
PrintAndLogEx(NORMAL, "Options:");
|
PrintAndLogEx(NORMAL, "Options:");
|
||||||
PrintAndLogEx(NORMAL, " h This help");
|
PrintAndLogEx(NORMAL, " h This help");
|
||||||
PrintAndLogEx(NORMAL, " HitagS (0*)");
|
PrintAndLogEx(NORMAL, " HitagS (0*)");
|
||||||
PrintAndLogEx(NORMAL, " 03 <nr,ar> (Challenge) <page> <byte0...byte3> write page on a Hitag S tag");
|
PrintAndLogEx(NORMAL, " 03 <nr,ar> <page> <byte0...byte3> Write page, challenge mode");
|
||||||
PrintAndLogEx(NORMAL, " 04 <key> (set to 0 if no authentication is needed) <page> <byte0...byte3> write page on a Hitag S tag");
|
PrintAndLogEx(NORMAL, " 04 <key> <page> <byte0...byte3> Write page, crypto mode. Set key=0 for no auth");
|
||||||
PrintAndLogEx(NORMAL, " Hitag1 (1*)");
|
PrintAndLogEx(NORMAL, " Hitag1 (1*)");
|
||||||
|
PrintAndLogEx(NORMAL, " Not implemented");
|
||||||
PrintAndLogEx(NORMAL, " Hitag2 (2*)");
|
PrintAndLogEx(NORMAL, " Hitag2 (2*)");
|
||||||
PrintAndLogEx(NORMAL, " 24 <key> (set to 0 if no authentication is needed) <page> <byte0...byte3> write page on a Hitag2 tag");
|
PrintAndLogEx(NORMAL, " 24 <key> <page> <byte0...byte3> Write page, crypto mode. Key format: ISK high + ISK low.");
|
||||||
PrintAndLogEx(NORMAL, " 27 <password> <page> <byte0...byte3> write page on a Hitag2 tag");
|
PrintAndLogEx(NORMAL, " Default: 4F4E4D494B52 (\"ONMIKR\"). Set key=0 for no auth");
|
||||||
|
PrintAndLogEx(NORMAL, " 27 <password> <page> <byte0...byte3> Write page, password mode. Default: 4D494B52 (\"MIKR\")");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
static int usage_hitag_checkchallenges(void) {
|
static int usage_hitag_checkchallenges(void) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue