ADD: 'script runt remagic' - the Mifare Classic s50 (1k) magic tag restores now also all sector trailers. Default A/B keys is 0xFFFFFFFFFFFF.

This commit is contained in:
iceman1001 2017-02-14 15:54:10 +01:00
commit dd015c5915
3 changed files with 26 additions and 10 deletions

View file

@ -59,6 +59,22 @@ local function cmdClassic()
[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.." 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] )
end
end
end
---
-- The main entry point
function main(args)
@ -76,16 +92,10 @@ function main(args)
core.clearCommandBuffer()
if isUltralight then
cmds = cmdUltralight()
sendCmds ( cmdUltralight() )
else
cmds = cmdClassic()
end
for i = 0, #cmds do
if cmds[i] then
print ( cmds[i] )
core.console( cmds[i] )
end
sendCmds( cmdClassic() )
sendCmds( cmdRestoreST() )
end
end