proxmark3/client/luascripts/dumptoemul.lua

143 lines
3.5 KiB
Lua
Raw Normal View History

-- The getopt-functionality is loaded from pm3/getopt.lua
-- Have a look there for further details
getopt = require('getopt')
bin = require('bin')
2019-05-08 05:34:05 +08:00
copyright = ''
author = 'Martin Holst Swende'
version = 'v1.0.1'
desc = [[
This script takes a dumpfile from 'hf mf dump' and converts it to a format that can be used
by the emulator
2019-05-08 05:34:05 +08:00
]]
example = [[
script run dumptoemul -i dumpdata-foobar.bin
]]
usage = [[
_script run dumptoemul [-i <file>] [-o <file>]
Arguments:
2019-03-09 17:34:43 +08:00
-h This help
-i <file> Specifies the dump-file (input). If omitted, 'dumpdata.bin' is used
-o <filename> Specifies the output file. If omitted, <uid>.eml is used.
]]
2019-05-08 05:34:05 +08:00
2017-12-03 22:24:24 +08:00
local DEBUG = false
-------------------------------
2019-03-09 17:34:43 +08:00
-- Some utilities
-------------------------------
2019-03-09 17:34:43 +08:00
---
-- A debug printout-function
2017-12-03 22:24:24 +08:00
local function dbg(args)
2019-03-09 17:34:43 +08:00
if not DEBUG then return end
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
2017-12-03 22:24:24 +08:00
local function oops(err)
2019-05-08 05:34:05 +08:00
print('ERROR:', err)
core.clearCommandBuffer()
return nil, err
end
2019-03-09 17:34:43 +08:00
---
-- Usage help
function help()
2019-05-08 05:34:05 +08:00
print(copyright)
2019-03-09 17:34:43 +08:00
print(author)
2019-05-08 05:34:05 +08:00
print(version)
print(desc)
print('Example usage')
2019-03-09 17:34:43 +08:00
print(example)
2019-05-08 05:34:05 +08:00
print(usage)
end
local function convert_to_ascii(hexdata)
2019-03-09 17:34:43 +08:00
if string.len(hexdata) % 32 ~= 0 then
2019-05-08 05:34:05 +08:00
return oops(('Bad data, length should be a multiple of 32 (was %d)'):format(string.len(hexdata)))
2019-03-09 17:34:43 +08:00
end
2019-05-08 05:34:05 +08:00
local js,i = '[';
2019-03-09 17:34:43 +08:00
for i = 1, string.len(hexdata),32 do
js = js .."'" ..string.sub(hexdata,i,i+31).."',\n"
end
2019-05-08 05:34:05 +08:00
js = js .. ']'
2019-03-09 17:34:43 +08:00
return js
end
local function readdump(infile)
2019-05-08 05:34:05 +08:00
t = infile:read('*all')
2019-03-09 17:34:43 +08:00
len = string.len(t)
2019-05-08 05:34:05 +08:00
local len,hex = bin.unpack(('H%d'):format(len),t)
2019-03-09 17:34:43 +08:00
return hex
end
local function convert_to_emulform(hexdata)
2019-03-09 17:34:43 +08:00
if string.len(hexdata) % 32 ~= 0 then
2019-05-08 05:34:05 +08:00
return oops(('Bad data, length should be a multiple of 32 (was %d)'):format(string.len(hexdata)))
2019-03-09 17:34:43 +08:00
end
2019-05-08 05:34:05 +08:00
local ascii,i = '';
2019-03-09 17:34:43 +08:00
for i = 1, string.len(hexdata),32 do
2019-05-08 05:34:05 +08:00
ascii = ascii..string.sub(hexdata,i,i+31)..'\n'
2019-03-09 17:34:43 +08:00
end
return string.sub(ascii, 1, -2)
end
local function main(args)
2019-05-08 05:34:05 +08:00
local input = 'dumpdata.bin'
2019-03-09 17:34:43 +08:00
local output
for o, a in getopt.getopt(args, 'i:o:h') do
2019-05-08 05:34:05 +08:00
if o == 'h' then return help() end
if o == 'i' then input = a end
if o == 'o' then output = a end
2019-03-09 17:34:43 +08:00
end
-- Validate the parameters
2019-05-08 05:34:05 +08:00
local infile = io.open(input, 'rb')
2019-03-09 17:34:43 +08:00
if infile == nil then
2019-05-08 05:34:05 +08:00
return oops('Could not read file ', input)
2019-03-09 17:34:43 +08:00
end
2019-08-12 05:53:45 +08:00
local dumpdata = readdump(infile)
2019-03-09 17:34:43 +08:00
-- The hex-data is now in ascii-format,
if dumpdata == NIL then return oops('Dumpfle not loaded') end
2019-03-09 17:34:43 +08:00
-- But first, check the uid
2019-05-08 05:34:05 +08:00
local uid = string.sub(dumpdata, 1, 8)
output = output or (uid .. '.eml')
2019-03-09 17:34:43 +08:00
-- Format some linebreaks
dumpdata = convert_to_emulform(dumpdata)
if dumpdata == NIL then return oops('Dumpfle not loaded') end
2019-03-09 17:34:43 +08:00
2019-05-08 05:34:05 +08:00
local outfile = io.open(output, 'w')
2019-03-09 17:34:43 +08:00
if outfile == nil then
2019-05-08 05:34:05 +08:00
return oops('Could not write to file ', output)
2019-03-09 17:34:43 +08:00
end
outfile:write(dumpdata:lower())
io.close(outfile)
2019-05-08 05:34:05 +08:00
print(('Wrote an emulator-dump to the file %s'):format(output))
end
--[[
2019-03-09 17:34:43 +08:00
In the future, we may implement so that scripts are invoked directly
into a 'main' function, instead of being executed blindly. For future
2019-03-09 17:34:43 +08:00
compatibility, I have done so, but I invoke my main from here.
--]]
main(args)