mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
style
This commit is contained in:
parent
bd38d68bd4
commit
795cc1bc62
1 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
-- Run me like this: proxmark3 /dev/rfcomm0 -l ./hf_bruteforce.lua
|
||||
-- Run me like this: proxmark3 /dev/rfcomm0 -l ./hf_bruteforce.lua
|
||||
|
||||
local getopt = require('getopt')
|
||||
|
||||
|
@ -19,7 +19,7 @@ script run hf_bruteforce -s start_id -e end_id -t timeout -d direction
|
|||
|
||||
Arguments:
|
||||
-h this help
|
||||
-s 0-0xFFFFFFFF start id
|
||||
-s 0-0xFFFFFFFF start id
|
||||
-e 0-0xFFFFFFFF end id
|
||||
-t 0-99999, pause timeout (ms) between cards (use the word 'pause' to wait for user input)
|
||||
]]
|
||||
|
@ -77,21 +77,21 @@ local function main(args)
|
|||
local timeout = 0
|
||||
local start_id = 0
|
||||
local end_id = 0xFFFFFFFF
|
||||
|
||||
for o, a in getopt.getopt(args, 'e:s:t:h') do
|
||||
|
||||
for o, a in getopt.getopt(args, 'e:s:t:h') do
|
||||
if o == 's' then start_id = a end
|
||||
if o == 'e' then end_id = a end
|
||||
if o == 't' then timeout = a end
|
||||
if o == 'h' then return print(usage) end
|
||||
end
|
||||
|
||||
|
||||
-- template
|
||||
local command = 'hf 14a sim t 1 u %08X'
|
||||
|
||||
|
||||
print(' Bruteforcing MFC card numbers from 00000000 to FFFFFFFF using delay: '..timeout)
|
||||
print('')
|
||||
print( string.rep('--',20) )
|
||||
|
||||
|
||||
for n = start_id, end_id do
|
||||
local c = string.format( command, n )
|
||||
print(' Running: "'..c..'"')
|
||||
|
|
Loading…
Reference in a new issue