mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 21:21:17 -07:00
Adjust LUA scripts to new ISO14A_NO_RATS option
This commit is contained in:
parent
c04a4b60ce
commit
5d8f664d7a
8 changed files with 23 additions and 11 deletions
|
@ -22,7 +22,8 @@ local ISO14A_COMMAND = {
|
||||||
ISO14A_APPEND_CRC = 0x20,
|
ISO14A_APPEND_CRC = 0x20,
|
||||||
ISO14A_SET_TIMEOUT = 0x40,
|
ISO14A_SET_TIMEOUT = 0x40,
|
||||||
ISO14A_NO_SELECT = 0x80,
|
ISO14A_NO_SELECT = 0x80,
|
||||||
ISO14A_TOPAZMODE = 0x100
|
ISO14A_TOPAZMODE = 0x100,
|
||||||
|
ISO14A_NO_RATS = 0x200
|
||||||
}
|
}
|
||||||
|
|
||||||
local ISO14443a_TYPES = {}
|
local ISO14443a_TYPES = {}
|
||||||
|
@ -92,9 +93,10 @@ end
|
||||||
|
|
||||||
-- This function does a connect and retrieves som einfo
|
-- This function does a connect and retrieves som einfo
|
||||||
-- @param dont_disconnect - if true, does not disable the field
|
-- @param dont_disconnect - if true, does not disable the field
|
||||||
|
-- @param no_rats - if true, skips ISO14443-4 select (RATS)
|
||||||
-- @return if successfull: an table containing card info
|
-- @return if successfull: an table containing card info
|
||||||
-- @return if unsuccessfull : nil, error
|
-- @return if unsuccessfull : nil, error
|
||||||
local function read14443a(dont_disconnect)
|
local function read14443a(dont_disconnect, no_rats)
|
||||||
local command, result, info, err, data
|
local command, result, info, err, data
|
||||||
|
|
||||||
command = Command:new{cmd = cmds.CMD_READER_ISO_14443a,
|
command = Command:new{cmd = cmds.CMD_READER_ISO_14443a,
|
||||||
|
@ -102,6 +104,9 @@ local function read14443a(dont_disconnect)
|
||||||
if dont_disconnect then
|
if dont_disconnect then
|
||||||
command.arg1 = command.arg1 + ISO14A_COMMAND.ISO14A_NO_DISCONNECT
|
command.arg1 = command.arg1 + ISO14A_COMMAND.ISO14A_NO_DISCONNECT
|
||||||
end
|
end
|
||||||
|
if no_rats then
|
||||||
|
command.arg1 = command.arg1 + ISO14A_COMMAND.ISO14A_NO_RATS
|
||||||
|
end
|
||||||
local result,err = sendToDevice(command)
|
local result,err = sendToDevice(command)
|
||||||
if result then
|
if result then
|
||||||
local count,cmd,arg0,arg1,arg2 = bin.unpack('LLLL',result)
|
local count,cmd,arg0,arg1,arg2 = bin.unpack('LLLL',result)
|
||||||
|
|
|
@ -17,6 +17,8 @@ Arguments:
|
||||||
-p stay connected - dont inactivate the field
|
-p stay connected - dont inactivate the field
|
||||||
-x <payload> Data to send (NO SPACES!)
|
-x <payload> Data to send (NO SPACES!)
|
||||||
-d Debug flag
|
-d Debug flag
|
||||||
|
-t Topaz mode
|
||||||
|
-3 Skip ISO14443-4 select
|
||||||
|
|
||||||
Examples :
|
Examples :
|
||||||
|
|
||||||
|
@ -70,6 +72,7 @@ function help()
|
||||||
print(example)
|
print(example)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
-- The main entry point
|
-- The main entry point
|
||||||
function main(args)
|
function main(args)
|
||||||
|
@ -83,15 +86,19 @@ function main(args)
|
||||||
local stayconnected = false
|
local stayconnected = false
|
||||||
local payload = nil
|
local payload = nil
|
||||||
local doconnect = true
|
local doconnect = true
|
||||||
|
local topaz_mode = false
|
||||||
|
local no_rats = false
|
||||||
|
|
||||||
-- Read the parameters
|
-- Read the parameters
|
||||||
for o, a in getopt.getopt(args, 'corcpx:') do
|
for o, a in getopt.getopt(args, 'corcpxt3:') do
|
||||||
if o == "o" then doconnect = false end
|
if o == "o" then doconnect = false end
|
||||||
if o == "r" then ignore_response = true end
|
if o == "r" then ignore_response = true end
|
||||||
if o == "c" then appendcrc = true end
|
if o == "c" then appendcrc = true end
|
||||||
if o == "p" then stayconnected = true end
|
if o == "p" then stayconnected = true end
|
||||||
if o == "x" then payload = a end
|
if o == "x" then payload = a end
|
||||||
if o == "d" then DEBUG = true end
|
if o == "d" then DEBUG = true end
|
||||||
|
if o == "t" then topaz_mode = true end
|
||||||
|
if o == "3" then no_rats = true end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- First of all, connect
|
-- First of all, connect
|
||||||
|
@ -99,7 +106,7 @@ function main(args)
|
||||||
dbg("doconnect")
|
dbg("doconnect")
|
||||||
-- We reuse the connect functionality from a
|
-- We reuse the connect functionality from a
|
||||||
-- common library
|
-- common library
|
||||||
info, err = lib14a.read1443a(true)
|
info, err = lib14a.read1443a(true, no_rats)
|
||||||
|
|
||||||
if err then return oops(err) end
|
if err then return oops(err) end
|
||||||
print(("Connected to card, uid = %s"):format(info.uid))
|
print(("Connected to card, uid = %s"):format(info.uid))
|
||||||
|
@ -137,11 +144,11 @@ function showdata(usbpacket)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function sendRaw(rawdata, options)
|
function sendRaw(rawdata, options)
|
||||||
print(">> ", rawdata)
|
print(">> ", rawdata)
|
||||||
|
|
||||||
local flags = lib14a.ISO14A_COMMAND.ISO14A_NO_DISCONNECT + lib14a.ISO14A_COMMAND.ISO14A_RAW
|
local flags = lib14a.ISO14A_COMMAND.ISO14A_NO_DISCONNECT + lib14a.ISO14A_COMMAND.ISO14A_RAW
|
||||||
|
if topaz_mode == true then flags = flags + lib14a.ISO14A_COMMAND.ISO14A_TOPAZMODE end
|
||||||
|
|
||||||
local command = Command:new{cmd = cmds.CMD_READER_ISO_14443a,
|
local command = Command:new{cmd = cmds.CMD_READER_ISO_14443a,
|
||||||
arg1 = flags, -- Send raw
|
arg1 = flags, -- Send raw
|
||||||
|
|
|
@ -406,7 +406,7 @@ function main(args)
|
||||||
|
|
||||||
-- GET TAG UID
|
-- GET TAG UID
|
||||||
|
|
||||||
result, err = lib14a.read1443a(false)
|
result, err = lib14a.read1443a(false, true)
|
||||||
if not result then
|
if not result then
|
||||||
return oops(err)
|
return oops(err)
|
||||||
end
|
end
|
||||||
|
|
|
@ -71,7 +71,7 @@ end
|
||||||
--
|
--
|
||||||
-- Read information from a card
|
-- Read information from a card
|
||||||
function GetCardInfo()
|
function GetCardInfo()
|
||||||
result, err = lib14a.read1443a(false)
|
result, err = lib14a.read1443a(false, true)
|
||||||
if not result then
|
if not result then
|
||||||
print(err)
|
print(err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -170,7 +170,7 @@ local function main( args)
|
||||||
|
|
||||||
print(desc);
|
print(desc);
|
||||||
|
|
||||||
result, err = reader.read1443a()
|
result, err = reader.read1443a(false, true)
|
||||||
if not result then
|
if not result then
|
||||||
print(err)
|
print(err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -56,7 +56,7 @@ end
|
||||||
-- @return if unsuccessfull : nil, error
|
-- @return if unsuccessfull : nil, error
|
||||||
function wait_for_mifare()
|
function wait_for_mifare()
|
||||||
while not core.ukbhit() do
|
while not core.ukbhit() do
|
||||||
res, err = reader.read1443a()
|
res, err = reader.read1443a(false, true)
|
||||||
if res then return res end
|
if res then return res end
|
||||||
-- err means that there was no response from card
|
-- err means that there was no response from card
|
||||||
end
|
end
|
||||||
|
|
|
@ -122,7 +122,7 @@ local function main(args)
|
||||||
|
|
||||||
|
|
||||||
-- find tag
|
-- find tag
|
||||||
result, err = lib14a.read1443a(false)
|
result, err = lib14a.read1443a(false, true)
|
||||||
if not result then return oops(err) end
|
if not result then return oops(err) end
|
||||||
|
|
||||||
-- load keys
|
-- load keys
|
||||||
|
|
|
@ -127,7 +127,7 @@ local function main(args)
|
||||||
local cmdSetDbgOff = "hf mf dbg 0"
|
local cmdSetDbgOff = "hf mf dbg 0"
|
||||||
core.console( cmdSetDbgOff)
|
core.console( cmdSetDbgOff)
|
||||||
|
|
||||||
result, err = lib14a.read1443a(false)
|
result, err = lib14a.read1443a(false, true)
|
||||||
if not result then
|
if not result then
|
||||||
return oops(err)
|
return oops(err)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue