]> git.zerfleddert.de Git - proxmark3-svn/blame - client/scripts/tnp3clone.lua
lf t5xx - icemans update
[proxmark3-svn] / client / scripts / tnp3clone.lua
CommitLineData
224ce36e 1local cmds = require('commands')
2local getopt = require('getopt')
3local lib14a = require('read14a')
4local utils = require('utils')
5local pre = require('precalc')
6
7local lsh = bit32.lshift
8local rsh = bit32.rshift
9local bor = bit32.bor
10local band = bit32.band
11
12example =[[
13 script run tnp3dump
14 script run tnp3dump -h
15 script run tnp3dump -t aa00
16
17]]
18author = "Iceman"
19usage = "script run tnp3clone -t <toytype>"
20desc =[[
21This script will try making a barebone clone of a tnp3 tag on to a magic generation1 card.
22
23Arguments:
24 -h : this help
25 -k <key> : toytype id, 4 hex symbols.
26]]
27
28
29-- This is only meant to be used when errors occur
30function oops(err)
31 print("ERROR: ",err)
32end
33-- Usage help
34function help()
35 print(desc)
36 print("Example usage")
37 print(example)
38end
39
40local function waitCmd()
41 local response = core.WaitForResponseTimeout(cmds.CMD_ACK,2000)
42 if response then
43 local count,cmd,arg0 = bin.unpack('LL',response)
44 if(arg0==1) then
45 local count,arg1,arg2,data = bin.unpack('LLH511',response,count)
46 return data:sub(1,32)
47 else
48 return nil, "Couldn't read block."
49 end
50 end
51 return nil, "No response from device"
52end
53
54local function readblock( blocknum, keyA )
55 -- Read block 0
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
61 return block0
62end
63local function readmagicblock( blocknum )
64 -- Read block 0
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
71 return block0
72end
73
74local function main(args)
75
76 local numBlocks = 64
77 local cset = 'hf mf csetbl '
78 local cget = 'hf mf cgetbl '
79 local empty = '00000000000000000000000000000000'
80 local AccAndKeyB = '7F078869000000000000'
81 -- Defaults to Gusto
82 local toytype = 'C201'
83
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
88 end
89
90 if #toytype ~= 4 then return oops('Wrong size in toytype. (4hex symbols)') end
91
92 -- find tag
93 result, err = lib14a.read1443a(false)
94 if not result then return oops(err) end
95
96 -- Show tag info
97 print((' Found tag %s'):format(result.name))
98
99 -- load keys
100 local akeys = pre.GetAll(result.uid)
101 local keyA = akeys:sub(1, 12 )
102
103 local b0 = readblock(0,keyA)
104 if not b0 then
105 print('failed reading block with factorydefault key. Trying chinese magic read.')
106 b0, err = readmagicblock(0)
107 if not b0 then
108 oops(err)
109 return oops('failed reading block with chinese magic command. quitting...')
110 end
111 end
112
113 -- wipe card.
114 local cmd = (cset..' %s 0004 08 w'):format( b0)
115 core.console(cmd)
116
117
118 local b1 = toytype..'000000000000000000000000'
119 local calc = utils.Crc16(b0..b1)
120 local calcEndian = bor(rsh(calc,8), lsh(band(calc, 0xff), 8))
121
122 local cmd = (cset..'1 %s%04x'):format( b1, calcEndian)
123 core.console(cmd)
124
125 local pos, key
126 for blockNo = 2, numBlocks-1, 1 do
127 pos = (math.floor( blockNo / 4 ) * 12)+1
128 key = akeys:sub(pos, pos + 11 )
129 if blockNo%4 == 3 then
130 cmd = ('%s %d %s%s'):format(cset,blockNo,key,AccAndKeyB)
131 core.console(cmd)
132 end
133 end
134 core.clearCommandBuffer()
135end
136main(args)
Impressum, Datenschutz