1 local cmds = require('commands')
2 local getopt = require('getopt')
3 local lib14a = require('read14a')
4 local utils = require('utils')
5 local pre = require('precalc')
7 local lsh = bit32.lshift
8 local rsh = bit32.rshift
10 local band = bit32.band
14 script run tnp3dump -h
15 script run tnp3dump -t aa00
19 usage = "script run tnp3clone -t <toytype>"
21 This script will try making a barebone clone of a tnp3 tag on to a magic generation1 card.
25 -k <key> : toytype id, 4 hex symbols.
29 -- This is only meant to be used when errors occur
36 print("Example usage")
40 local function waitCmd()
41 local response = core.WaitForResponseTimeout(cmds.CMD_ACK,2000)
43 local count,cmd,arg0 = bin.unpack('LL',response)
45 local count,arg1,arg2,data = bin.unpack('LLH511',response,count)
48 return nil, "Couldn't read block."
51 return nil, "No response from device"
54 local function readblock( blocknum, keyA )
56 cmd = Command:new{cmd = cmds.CMD_MIFARE_READBL, arg1 = blocknum, arg2 = 0, arg3 = 0, data = keyA}
57 err = core.SendCommand(cmd:getBytes())
58 if err then return nil, err end
59 local block0, err = waitCmd()
60 if err then return nil, err end
63 local function readmagicblock( blocknum )
65 local CSETBLOCK_SINGLE_OPERATION = 0x1F
66 cmd = Command:new{cmd = cmds.CMD_MIFARE_CGETBLOCK, arg1 = CSETBLOCK_SINGLE_OPERATION, arg2 = 0, arg3 = blocknum}
67 err = core.SendCommand(cmd:getBytes())
68 if err then return nil, err end
69 local block0, err = waitCmd()
70 if err then return nil, err end
74 local function main(args)
77 local cset = 'hf mf csetbl '
78 local cget = 'hf mf cgetbl '
79 local empty = '00000000000000000000000000000000'
80 local AccAndKeyB = '7F078869000000000000'
82 local toytype = 'C201'
84 -- Arguments for the script
85 for o, a in getopt.getopt(args, 'ht:') do
86 if o == "h" then return help() end
87 if o == "t" then toytype = a end
90 if #toytype ~= 4 then return oops('Wrong size in toytype. (4hex symbols)') end
93 result, err = lib14a.read1443a(false)
94 if not result then return oops(err) end
97 print((' Found tag %s'):format(result.name))
100 local akeys = pre.GetAll(result.uid)
101 local keyA = akeys:sub(1, 12 )
103 local b0 = readblock(0,keyA)
105 print('failed reading block with factorydefault key. Trying chinese magic read.')
106 b0, err = readmagicblock(0)
109 return oops('failed reading block with chinese magic command. quitting...')
112 local b1 = toytype..'000000000000000000000000'
114 local calc = utils.Crc16(b0..b1)
115 local calcEndian = bor(rsh(calc,8), lsh(band(calc, 0xff), 8))
117 local cmd = (cset..'1 %s%04x'):format( b1, calcEndian)
121 for blockNo = 2, numBlocks-1, 1 do
122 pos = (math.floor( blockNo / 4 ) * 12)+1
123 key = akeys:sub(pos, pos + 11 )
124 if blockNo%4 ~= 3 then
125 cmd = ('%s %d %s'):format(cset,blockNo,empty)
127 cmd = ('%s %d %s%s'):format(cset,blockNo,key,AccAndKeyB)