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( keyA )
56 cmd = Command:new{cmd = cmds.CMD_MIFARE_READBL, arg1 = 0,arg2 = 0,arg3 = 0, data = keyA}
57 err = core.SendCommand(cmd:getBytes())
58 if err then return oops(err) end
59 local block0, err = waitCmd()
60 if err then return oops(err) end
64 local function main(args)
67 local cset = 'hf mf csetbl'
68 local empty = '00000000000000000000000000000000'
69 local AccAndKeyB = '7F078869000000000000'
71 local toytype = 'C201'
73 -- Arguments for the script
74 for o, a in getopt.getopt(args, 'ht:') do
75 if o == "h" then return help() end
76 if o == "t" then toytype = a end
79 if #toytype ~= 4 then return oops('Wrong size in toytype. (4hex symbols)') end
82 result, err = lib14a.read1443a(false)
83 if not result then return oops(err) end
86 print((' Found tag %s'):format(result.name))
89 local akeys = pre.GetAll(result.uid)
90 local keyA = akeys:sub(1, 12 )
92 local b0 = readblock(keyA)
93 local b1 = toytype..'000000000000000000000000'
95 local calc = utils.Crc16(b0..b1)
96 local calcEndian = bor(rsh(calc,8), lsh(band(calc, 0xff), 8))
98 local cmd = ('hf mf csetbl 1 %s%04x'):format( b1, calcEndian)
102 for blockNo = 2, numBlocks-1, 1 do
103 pos = (math.floor( blockNo / 4 ) * 12)+1
104 key = akeys:sub(pos, pos + 11 )
105 if blockNo%4 ~= 3 then
106 cmd = ('%s %d %s'):format(cset,blockNo,empty)
108 cmd = ('%s %d %s%s'):format(cset,blockNo,key,AccAndKeyB)