mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
textual
This commit is contained in:
parent
6cb6f8739e
commit
75325aef86
1 changed files with 9 additions and 7 deletions
|
@ -33,21 +33,22 @@ local bxor = bit32.bxor
|
||||||
-- A debug printout-function
|
-- A debug printout-function
|
||||||
local function dbg(args)
|
local function dbg(args)
|
||||||
if not DEBUG then return end
|
if not DEBUG then return end
|
||||||
if type(args) == "table" then
|
if type(args) == 'table' then
|
||||||
local i = 1
|
local i = 1
|
||||||
while args[i] do
|
while args[i] do
|
||||||
dbg(args[i])
|
dbg(args[i])
|
||||||
i = i+1
|
i = i+1
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
print("###", args)
|
print('###', args)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
---
|
---
|
||||||
-- This is only meant to be used when errors occur
|
-- This is only meant to be used when errors occur
|
||||||
local function oops(err)
|
local function oops(err)
|
||||||
print("ERROR: ",err)
|
print('ERROR: ', err)
|
||||||
return nil,err
|
core.clearCommandBuffer()
|
||||||
|
return nil, err
|
||||||
end
|
end
|
||||||
---
|
---
|
||||||
-- Usage help
|
-- Usage help
|
||||||
|
@ -58,6 +59,7 @@ local function help()
|
||||||
print(desc)
|
print(desc)
|
||||||
print('Example usage')
|
print('Example usage')
|
||||||
print(example)
|
print(example)
|
||||||
|
print(usage)
|
||||||
end
|
end
|
||||||
---
|
---
|
||||||
-- Exit message
|
-- Exit message
|
||||||
|
@ -142,8 +144,8 @@ local function main(args)
|
||||||
|
|
||||||
-- Arguments for the script
|
-- Arguments for the script
|
||||||
for o, a in getopt.getopt(args, 'hu:') do
|
for o, a in getopt.getopt(args, 'hu:') do
|
||||||
if o == "h" then return help() end
|
if o == 'h' then return help() end
|
||||||
if o == "u" then uid = a; useUID = true end
|
if o == 'u' then uid = a; useUID = true end
|
||||||
end
|
end
|
||||||
|
|
||||||
if useUID then
|
if useUID then
|
||||||
|
@ -160,7 +162,7 @@ local function main(args)
|
||||||
-- simple tag check
|
-- simple tag check
|
||||||
if 0x09 ~= tag.sak then
|
if 0x09 ~= tag.sak then
|
||||||
if 0x4400 ~= tag.atqa then
|
if 0x4400 ~= tag.atqa then
|
||||||
return oops(('[fail] found tag %s :: looking for Mifare Mini 0.3k'):format(tag.name))
|
return oops(('[!] found tag %s :: looking for Mifare Mini 0.3k'):format(tag.name))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
uid = tag.uid
|
uid = tag.uid
|
||||||
|
|
Loading…
Reference in a new issue