mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-04 20:50:37 -08:00
125 lines
2.9 KiB
Lua
125 lines
2.9 KiB
Lua
local getopt = require('getopt')
|
|
local ansicolors = require('ansicolors')
|
|
|
|
copyright = ''
|
|
author = 'Iceman'
|
|
version = 'v1.0.3'
|
|
desc = [[
|
|
This is a script that tries to bring back a chinese magic card (1k generation1)
|
|
from the dead when it's block 0 has been written with bad values.
|
|
or mifare Ultralight magic card which answers to chinese backdoor commands
|
|
]]
|
|
example = [[
|
|
-- target a Ultralight based card
|
|
1. script run hf_mf_magicrevive -u
|
|
|
|
]]
|
|
usage = [[
|
|
script run hf_mf_magicrevive [-h] [-u]
|
|
]]
|
|
arguments = [[
|
|
-h this help
|
|
-u try to revive a bricked magic Ultralight tag w 7 bytes UID.
|
|
]]
|
|
---
|
|
-- A debug printout-function
|
|
local function dbg(args)
|
|
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
|
|
local function oops(err)
|
|
print('ERROR:', err)
|
|
core.clearCommandBuffer()
|
|
return nil, err
|
|
end
|
|
---
|
|
-- Usage help
|
|
local function help()
|
|
print(copyright)
|
|
print(author)
|
|
print(version)
|
|
print(desc)
|
|
print(ansicolors.cyan..'Usage'..ansicolors.reset)
|
|
print(usage)
|
|
print(ansicolors.cyan..'Arguments'..ansicolors.reset)
|
|
print(arguments)
|
|
print(ansicolors.cyan..'Example usage'..ansicolors.reset)
|
|
print(example)
|
|
end
|
|
|
|
local function cmdUltralight()
|
|
return {
|
|
[0] = 'hf 14a raw -k -a -b 7 40',
|
|
[1] = 'hf 14a raw -k -a 43',
|
|
[2] = 'hf 14a raw -c -a A2005380712A',
|
|
[3] = 'hf 14a raw -k -a -b 7 40',
|
|
[4] = 'hf 14a raw -k -a 43',
|
|
[5] = 'hf 14a raw -c -a A2010200D980',
|
|
[6] = 'hf 14a raw -k -a -b 7 40',
|
|
[7] = 'hf 14a raw -k -a 43',
|
|
[8] = 'hf 14a raw -c -a A2025B480000',
|
|
[9] = 'hf 14a raw -c -a 5000',
|
|
}
|
|
end
|
|
local function cmdClassic()
|
|
return {
|
|
[0] = 'hf 14a raw -k -a -b 7 40',
|
|
[1] = 'hf 14a raw -k -a 43',
|
|
[2] = 'hf 14a raw -c -k -a A000',
|
|
[3] = 'hf 14a raw -c -k -a 01020304049802000000000000001001',
|
|
[4] = 'hf 14a raw -c -a 5000',
|
|
}
|
|
end
|
|
local function cmdRestoreST()
|
|
local arr = {}
|
|
for i = 0, 15 do
|
|
local blk = 3 + (4*i)
|
|
arr[i] = 'hf mf csetbl --blk '..blk..' -d FFFFFFFFFFFFFF078000FFFFFFFFFFFF'
|
|
end
|
|
return arr
|
|
end
|
|
local function sendCmds( cmds )
|
|
for i = 0, #cmds do
|
|
if cmds[i] then
|
|
print ( cmds[i] )
|
|
core.console( cmds[i] )
|
|
core.clearCommandBuffer()
|
|
end
|
|
end
|
|
end
|
|
---
|
|
-- The main entry point
|
|
function main(args)
|
|
|
|
local i
|
|
local cmds = {}
|
|
local isUltralight = false
|
|
|
|
-- Read the parameters
|
|
for o, a in getopt.getopt(args, 'hu') do
|
|
if o == 'h' then return help() end
|
|
if o == 'u' then isUltralight = true end
|
|
end
|
|
|
|
core.clearCommandBuffer()
|
|
|
|
if isUltralight then
|
|
sendCmds ( cmdUltralight() )
|
|
else
|
|
sendCmds( cmdClassic() )
|
|
sendCmds( cmdRestoreST() )
|
|
end
|
|
end
|
|
|
|
main(args)
|