mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Add preset for 2k MIFARE Classic tags hf_mf_ultimatecard.lua when using preset configurations, update changelog
This commit is contained in:
parent
a3eb3bfbe9
commit
a11f3173cc
2 changed files with 39 additions and 14 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]
|
||||||
|
- Automatically set maximum read/write block when using predefined types in `hf_mf_ultimatecard` script, add 2k predefined types (@piotrva)
|
||||||
- Add option to set and get maximum read/write block number using `hf_mf_ultimatecard` script (@piotrva)
|
- Add option to set and get maximum read/write block number using `hf_mf_ultimatecard` script (@piotrva)
|
||||||
- Added JEDEC information for SPI flash W25Q64JV (@ANTodorov)
|
- Added JEDEC information for SPI flash W25Q64JV (@ANTodorov)
|
||||||
- Added special iclass legacy config cards in `hf iclass configcard` (@antiklesys)
|
- Added special iclass legacy config cards in `hf iclass configcard` (@antiklesys)
|
||||||
|
|
|
@ -50,20 +50,20 @@ arguments = [[
|
||||||
-c read magic configuration
|
-c read magic configuration
|
||||||
-u UID (8-20 hexsymbols), set UID on tag
|
-u UID (8-20 hexsymbols), set UID on tag
|
||||||
-t tag type to impersonate
|
-t tag type to impersonate
|
||||||
1 = Mifare Mini S20 4-byte
|
1 = Mifare Mini S20 4-byte | 15 = NTAG 210
|
||||||
2 = Mifare Mini S20 7-byte | 15 = NTAG 210
|
2 = Mifare Mini S20 7-byte | 16 = NTAG 212
|
||||||
3 = Mifare Mini S20 10-byte | 16 = NTAG 212
|
3 = Mifare Mini S20 10-byte | 17 = NTAG 213
|
||||||
4 = Mifare 1k S50 4-byte | 17 = NTAG 213
|
4 = Mifare 1k S50 4-byte | 18 = NTAG 215
|
||||||
5 = Mifare 1k S50 7-byte | 18 = NTAG 215
|
5 = Mifare 1k S50 7-byte | 19 = NTAG 216
|
||||||
6 = Mifare 1k S50 10-byte | 19 = NTAG 216
|
6 = Mifare 1k S50 10-byte | 20 = NTAG I2C 1K
|
||||||
7 = Mifare 4k S70 4-byte | 20 = NTAG I2C 1K
|
7 = Mifare 4k S70 4-byte | 21 = NTAG I2C 2K
|
||||||
8 = Mifare 4k S70 7-byte | 21 = NTAG I2C 2K
|
8 = Mifare 4k S70 7-byte | 22 = NTAG I2C 1K PLUS
|
||||||
9 = Mifare 4k S70 10-byte | 22 = NTAG I2C 1K PLUS
|
9 = Mifare 4k S70 10-byte | 23 = NTAG I2C 2K PLUS
|
||||||
*** 10 = UL - NOT WORKING FULLY | 23 = NTAG I2C 2K PLUS
|
*** 10 = UL - NOT WORKING FULLY | 24 = NTAG 213F
|
||||||
*** 11 = UL-C - NOT WORKING FULLY | 24 = NTAG 213F
|
*** 11 = UL-C - NOT WORKING FULLY | 25 = NTAG 216F
|
||||||
12 = UL EV1 48b | 25 = NTAG 216F
|
12 = UL EV1 48b | 26 = Mifare 2k S50 4-byte
|
||||||
13 = UL EV1 128b
|
13 = UL EV1 128b | 27 = Mifare 2k S50 7-byte
|
||||||
*** 14 = UL Plus - NOT WORKING YET
|
*** 14 = UL Plus - NOT WORKING YET | 28 = Mifare 2k S50 10-byte
|
||||||
|
|
||||||
-p NTAG password (8 hexsymbols), set NTAG password on tag.
|
-p NTAG password (8 hexsymbols), set NTAG password on tag.
|
||||||
-a NTAG pack ( 4 hexsymbols), set NTAG pack on tag.
|
-a NTAG pack ( 4 hexsymbols), set NTAG pack on tag.
|
||||||
|
@ -717,6 +717,30 @@ local function set_type(tagtype)
|
||||||
lib14a.disconnect()
|
lib14a.disconnect()
|
||||||
write_uid('04112233445566778899')
|
write_uid('04112233445566778899')
|
||||||
write_maxRWblk('3F')
|
write_maxRWblk('3F')
|
||||||
|
-- Setting Mifare 2k S50 4-byte
|
||||||
|
elseif tagtype == 26 then
|
||||||
|
print('Setting: Ultimate Magic card to Mifare 2k S50 4-byte')
|
||||||
|
connect()
|
||||||
|
send("CF".._key.."F000000000000002000978009102DABC19101011121314151604000800")
|
||||||
|
lib14a.disconnect()
|
||||||
|
write_uid('04112233')
|
||||||
|
write_maxRWblk('7F')
|
||||||
|
-- Setting Mifare 2k S50 7-byte
|
||||||
|
elseif tagtype == 27 then
|
||||||
|
print('Setting: Ultimate Magic card to Mifare 2k S50 7-byte')
|
||||||
|
connect()
|
||||||
|
send("CF".._key.."F000010000000002000978009102DABC19101011121314151644000800")
|
||||||
|
lib14a.disconnect()
|
||||||
|
write_uid('04112233445566')
|
||||||
|
write_maxRWblk('7F')
|
||||||
|
-- Setting Mifare 2k S50 10-byte
|
||||||
|
elseif tagtype == 28 then
|
||||||
|
print('Setting: Ultimate Magic card to Mifare 2k S50 10-byte')
|
||||||
|
connect()
|
||||||
|
send("CF".._key.."F000020000000002000978009102DABC19101011121314151684000800")
|
||||||
|
lib14a.disconnect()
|
||||||
|
write_uid('04112233445566778899')
|
||||||
|
write_maxRWblk('7F')
|
||||||
-- Setting Mifare 4k S70 4-byte
|
-- Setting Mifare 4k S70 4-byte
|
||||||
elseif tagtype == 7 then
|
elseif tagtype == 7 then
|
||||||
print('Setting: Ultimate Magic card to Mifare 4k S70 4-byte')
|
print('Setting: Ultimate Magic card to Mifare 4k S70 4-byte')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue