2015-01-08 05:00:29 +08:00
|
|
|
local cmds = require('commands')
|
|
|
|
local getopt = require('getopt')
|
|
|
|
local bin = require('bin')
|
|
|
|
local lib14a = require('read14a')
|
|
|
|
local utils = require('utils')
|
|
|
|
local md5 = require('md5')
|
|
|
|
local dumplib = require('html_dumplib')
|
2015-04-08 00:02:29 +08:00
|
|
|
local toys = require('default_toys')
|
2015-03-12 16:46:28 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
example =[[
|
2015-03-12 16:46:28 +08:00
|
|
|
script run tnp3dump
|
|
|
|
script run tnp3dump -n
|
|
|
|
script run tnp3dump -p
|
|
|
|
script run tnp3dump -k aabbccddeeff
|
|
|
|
script run tnp3dump -k aabbccddeeff -n
|
|
|
|
script run tnp3dump -o myfile
|
|
|
|
script run tnp3dump -n -o myfile
|
|
|
|
script run tnp3dump -p -o myfile
|
|
|
|
script run tnp3dump -k aabbccddeeff -n -o myfile
|
2015-01-08 05:00:29 +08:00
|
|
|
]]
|
|
|
|
author = "Iceman"
|
2015-03-12 16:46:28 +08:00
|
|
|
usage = "script run tnp3dump -k <key> -n -p -o <filename>"
|
2015-01-08 05:00:29 +08:00
|
|
|
desc =[[
|
|
|
|
This script will try to dump the contents of a Mifare TNP3xxx card.
|
|
|
|
It will need a valid KeyA in order to find the other keys and decode the card.
|
|
|
|
Arguments:
|
|
|
|
-h : this help
|
|
|
|
-k <key> : Sector 0 Key A.
|
|
|
|
-n : Use the nested cmd to find all keys
|
2015-03-12 16:46:28 +08:00
|
|
|
-p : Use the precalc to find all keys
|
2015-01-08 05:00:29 +08:00
|
|
|
-o : filename for the saved dumps
|
|
|
|
]]
|
2015-04-10 02:38:38 +08:00
|
|
|
local RANDOM = '20436F707972696768742028432920323031302041637469766973696F6E2E20416C6C205269676874732052657365727665642E20'
|
2017-03-09 17:26:01 +08:00
|
|
|
local TIMEOUT = 2500 -- Shouldn't take longer than 2 seconds
|
2015-01-08 05:00:29 +08:00
|
|
|
local DEBUG = false -- the debug flag
|
|
|
|
local numBlocks = 64
|
|
|
|
local numSectors = 16
|
|
|
|
---
|
|
|
|
-- A debug printout-function
|
|
|
|
function dbg(args)
|
2015-10-20 04:39:08 +08:00
|
|
|
if not DEBUG then return end
|
2015-01-08 05:00:29 +08:00
|
|
|
|
|
|
|
if type(args) == "table" then
|
|
|
|
local i = 1
|
|
|
|
while result[i] do
|
|
|
|
dbg(result[i])
|
|
|
|
i = i+1
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print("###", args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
---
|
|
|
|
-- This is only meant to be used when errors occur
|
|
|
|
function oops(err)
|
|
|
|
print("ERROR: ",err)
|
2015-10-20 04:39:08 +08:00
|
|
|
return nil,err
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
|
|
|
---
|
|
|
|
-- Usage help
|
|
|
|
function help()
|
|
|
|
print(desc)
|
|
|
|
print("Example usage")
|
|
|
|
print(example)
|
|
|
|
end
|
|
|
|
--
|
|
|
|
-- Exit message
|
|
|
|
function ExitMsg(msg)
|
|
|
|
print( string.rep('--',20) )
|
|
|
|
print( string.rep('--',20) )
|
|
|
|
print(msg)
|
|
|
|
print()
|
|
|
|
end
|
|
|
|
|
|
|
|
local function readdumpkeys(infile)
|
|
|
|
t = infile:read("*all")
|
|
|
|
len = string.len(t)
|
|
|
|
local len,hex = bin.unpack(("H%d"):format(len),t)
|
|
|
|
return hex
|
|
|
|
end
|
|
|
|
|
|
|
|
local function waitCmd()
|
2017-03-09 17:26:01 +08:00
|
|
|
local response = core.WaitForResponseTimeout(cmds.CMD_ACK, TIMEOUT)
|
2015-01-08 05:00:29 +08:00
|
|
|
if response then
|
2017-03-09 17:26:01 +08:00
|
|
|
local count, cmd, arg0 = bin.unpack('LL',response)
|
2015-01-08 05:00:29 +08:00
|
|
|
if(arg0==1) then
|
|
|
|
local count,arg1,arg2,data = bin.unpack('LLH511',response,count)
|
|
|
|
return data:sub(1,32)
|
|
|
|
else
|
2017-03-09 17:26:01 +08:00
|
|
|
return nil, "Couldn't read block.. ["..arg0.."]"
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
|
|
|
end
|
2017-03-09 17:26:01 +08:00
|
|
|
return nil, 'No response from device'
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
local function main(args)
|
|
|
|
|
|
|
|
print( string.rep('--',20) )
|
|
|
|
print( string.rep('--',20) )
|
|
|
|
|
|
|
|
local keyA
|
|
|
|
local cmd
|
|
|
|
local err
|
|
|
|
local useNested = false
|
2015-03-12 16:46:28 +08:00
|
|
|
local usePreCalc = false
|
2015-01-08 05:00:29 +08:00
|
|
|
local cmdReadBlockString = 'hf mf rdbl %d A %s'
|
|
|
|
local input = "dumpkeys.bin"
|
|
|
|
local outputTemplate = os.date("toydump_%Y-%m-%d_%H%M%S");
|
|
|
|
|
|
|
|
-- Arguments for the script
|
2015-03-12 16:46:28 +08:00
|
|
|
for o, a in getopt.getopt(args, 'hk:npo:') do
|
2015-01-08 05:00:29 +08:00
|
|
|
if o == "h" then return help() end
|
|
|
|
if o == "k" then keyA = a end
|
|
|
|
if o == "n" then useNested = true end
|
2015-03-12 16:46:28 +08:00
|
|
|
if o == "p" then usePreCalc = true end
|
2015-01-08 05:00:29 +08:00
|
|
|
if o == "o" then outputTemplate = a end
|
|
|
|
end
|
2015-04-07 00:47:53 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
-- validate input args.
|
|
|
|
keyA = keyA or '4b0b20107ccb'
|
|
|
|
if #(keyA) ~= 12 then
|
|
|
|
return oops( string.format('Wrong length of write key (was %d) expected 12', #keyA))
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Turn off Debug
|
|
|
|
local cmdSetDbgOff = "hf mf dbg 0"
|
|
|
|
core.console( cmdSetDbgOff)
|
|
|
|
|
|
|
|
result, err = lib14a.read1443a(false)
|
|
|
|
if not result then
|
|
|
|
return oops(err)
|
|
|
|
end
|
|
|
|
|
|
|
|
core.clearCommandBuffer()
|
|
|
|
|
|
|
|
-- Show tag info
|
2015-03-12 16:46:28 +08:00
|
|
|
print((' Found tag %s'):format(result.name))
|
|
|
|
|
|
|
|
dbg(('Using keyA : %s'):format(keyA))
|
2015-01-08 05:00:29 +08:00
|
|
|
|
|
|
|
--Trying to find the other keys
|
|
|
|
if useNested then
|
|
|
|
core.console( ('hf mf nested 1 0 A %s d'):format(keyA) )
|
|
|
|
end
|
2015-03-12 16:46:28 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
core.clearCommandBuffer()
|
|
|
|
|
2015-03-12 16:46:28 +08:00
|
|
|
local akeys = ''
|
|
|
|
if usePreCalc then
|
|
|
|
local pre = require('precalc')
|
|
|
|
akeys = pre.GetAll(result.uid)
|
2017-03-09 17:26:01 +08:00
|
|
|
dbg(akeys)
|
2015-03-12 16:46:28 +08:00
|
|
|
else
|
|
|
|
print('Loading dumpkeys.bin')
|
|
|
|
local hex, err = utils.ReadDumpFile(input)
|
|
|
|
if not hex then
|
|
|
|
return oops(err)
|
|
|
|
end
|
|
|
|
akeys = hex:sub(0,12*16)
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
2015-03-12 16:46:28 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
-- Read block 0
|
2017-03-09 17:26:01 +08:00
|
|
|
dbg('Reading block 0')
|
|
|
|
cmd = Command:new{cmd = cmds.CMD_MIFARE_READBL, arg1 = 0, arg2 = 0, arg3 = 0, data = keyA}
|
2015-01-08 05:00:29 +08:00
|
|
|
err = core.SendCommand(cmd:getBytes())
|
|
|
|
if err then return oops(err) end
|
|
|
|
local block0, err = waitCmd()
|
|
|
|
if err then return oops(err) end
|
|
|
|
|
2015-10-20 04:39:08 +08:00
|
|
|
core.clearCommandBuffer()
|
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
-- Read block 1
|
2017-03-09 17:26:01 +08:00
|
|
|
dbg('Reading block 1')
|
|
|
|
cmd = Command:new{cmd = cmds.CMD_MIFARE_READBL, arg1 = 1, arg2 = 0, arg3 = 0, data = keyA}
|
2015-01-08 05:00:29 +08:00
|
|
|
err = core.SendCommand(cmd:getBytes())
|
|
|
|
if err then return oops(err) end
|
|
|
|
local block1, err = waitCmd()
|
|
|
|
if err then return oops(err) end
|
|
|
|
|
2015-10-20 04:39:08 +08:00
|
|
|
core.clearCommandBuffer()
|
|
|
|
|
2015-04-10 02:38:38 +08:00
|
|
|
local tmpHash = block0..block1..'%02x'..RANDOM
|
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
local key
|
|
|
|
local pos = 0
|
|
|
|
local blockNo
|
|
|
|
local blocks = {}
|
2015-10-20 04:39:08 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
-- main loop
|
2015-03-12 16:46:28 +08:00
|
|
|
io.write('Reading blocks > ')
|
2015-01-08 05:00:29 +08:00
|
|
|
for blockNo = 0, numBlocks-1, 1 do
|
|
|
|
|
2017-03-09 17:26:01 +08:00
|
|
|
io.flush()
|
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
if core.ukbhit() then
|
|
|
|
print("aborted by user")
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
2015-10-20 04:39:08 +08:00
|
|
|
core.clearCommandBuffer()
|
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
pos = (math.floor( blockNo / 4 ) * 12)+1
|
|
|
|
key = akeys:sub(pos, pos + 11 )
|
|
|
|
cmd = Command:new{cmd = cmds.CMD_MIFARE_READBL, arg1 = blockNo ,arg2 = 0,arg3 = 0, data = key}
|
|
|
|
local err = core.SendCommand(cmd:getBytes())
|
|
|
|
if err then return oops(err) end
|
|
|
|
local blockdata, err = waitCmd()
|
|
|
|
if err then return oops(err) end
|
|
|
|
|
2015-03-30 22:15:53 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
if blockNo%4 ~= 3 then
|
2015-03-30 22:15:53 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
if blockNo < 8 then
|
|
|
|
-- Block 0-7 not encrypted
|
2015-04-25 00:36:11 +08:00
|
|
|
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,blockdata)
|
2015-01-08 05:00:29 +08:00
|
|
|
else
|
|
|
|
-- blocks with zero not encrypted.
|
|
|
|
if string.find(blockdata, '^0+$') then
|
2015-04-25 00:36:11 +08:00
|
|
|
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,blockdata)
|
2015-01-08 05:00:29 +08:00
|
|
|
else
|
2015-04-10 02:38:38 +08:00
|
|
|
local baseStr = utils.ConvertHexToAscii(tmpHash:format(blockNo))
|
|
|
|
local key = md5.sumhexa(baseStr)
|
|
|
|
local aestest = core.aes128_decrypt(key, blockdata)
|
2016-01-16 04:47:32 +08:00
|
|
|
local hex = utils.ConvertAsciiToHex(aestest)
|
2015-10-20 04:39:08 +08:00
|
|
|
|
2015-04-25 00:36:11 +08:00
|
|
|
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,hex)
|
|
|
|
io.write(blockNo..',')
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
-- Sectorblocks, not encrypted
|
|
|
|
blocks[blockNo+1] = ('%02d :: %s%s'):format(blockNo,key,blockdata:sub(13,32))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
io.write('\n')
|
|
|
|
|
|
|
|
core.clearCommandBuffer()
|
|
|
|
|
|
|
|
-- Print results
|
|
|
|
local bindata = {}
|
|
|
|
local emldata = ''
|
|
|
|
|
|
|
|
for _,s in pairs(blocks) do
|
|
|
|
local slice = s:sub(8,#s)
|
2015-10-20 04:39:08 +08:00
|
|
|
local str = utils.ConvertHexToAscii(slice)
|
2015-01-08 05:00:29 +08:00
|
|
|
emldata = emldata..slice..'\n'
|
|
|
|
for c in (str):gmatch('.') do
|
|
|
|
bindata[#bindata+1] = c
|
2015-04-10 02:38:38 +08:00
|
|
|
end
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
2015-04-07 00:47:53 +08:00
|
|
|
|
|
|
|
print( string.rep('--',20) )
|
2015-01-08 05:00:29 +08:00
|
|
|
|
2015-01-20 16:32:53 +08:00
|
|
|
local uid = block0:sub(1,8)
|
2015-04-07 00:47:53 +08:00
|
|
|
local toytype = block1:sub(1,4)
|
2015-03-12 16:46:28 +08:00
|
|
|
local cardidLsw = block1:sub(9,16)
|
|
|
|
local cardidMsw = block1:sub(16,24)
|
2015-01-20 16:32:53 +08:00
|
|
|
local cardid = block1:sub(9,24)
|
2015-04-07 00:47:53 +08:00
|
|
|
local subtype = block1:sub(25,28)
|
2015-01-20 16:32:53 +08:00
|
|
|
|
2015-01-08 05:00:29 +08:00
|
|
|
-- Write dump to files
|
|
|
|
if not DEBUG then
|
2015-04-10 02:38:38 +08:00
|
|
|
local foo = dumplib.SaveAsBinary(bindata, outputTemplate..'-'..uid..'.bin')
|
2015-03-12 16:46:28 +08:00
|
|
|
print(("Wrote a BIN dump to: %s"):format(foo))
|
2015-04-10 02:38:38 +08:00
|
|
|
local bar = dumplib.SaveAsText(emldata, outputTemplate..'-'..uid..'.eml')
|
2015-03-12 16:46:28 +08:00
|
|
|
print(("Wrote a EML dump to: %s"):format(bar))
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
2015-04-10 02:38:38 +08:00
|
|
|
|
|
|
|
print( string.rep('--',20) )
|
|
|
|
-- Show info
|
2015-01-08 05:00:29 +08:00
|
|
|
|
2015-04-07 00:47:53 +08:00
|
|
|
local item = toys.Find(toytype, subtype)
|
|
|
|
if item then
|
2015-04-10 02:38:38 +08:00
|
|
|
print((' ITEM TYPE : %s - %s (%s)'):format(item[6],item[5], item[4]) )
|
2015-04-07 00:47:53 +08:00
|
|
|
else
|
|
|
|
print((' ITEM TYPE : 0x%s 0x%s'):format(toytype, subtype))
|
2015-03-12 16:46:28 +08:00
|
|
|
end
|
2015-04-10 02:38:38 +08:00
|
|
|
|
2015-02-04 18:40:49 +08:00
|
|
|
print( (' UID : 0x%s'):format(uid) )
|
|
|
|
print( (' CARDID : 0x%s'):format(cardid ) )
|
2015-01-08 05:00:29 +08:00
|
|
|
print( string.rep('--',20) )
|
2015-04-25 00:36:11 +08:00
|
|
|
|
|
|
|
core.clearCommandBuffer()
|
2015-01-08 05:00:29 +08:00
|
|
|
end
|
|
|
|
main(args)
|