mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
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:
parent
ab2167c47b
commit
dd015c5915
3 changed files with 26 additions and 10 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue