proxmark3/client/luascripts/hf_bruteforce.lua

123 lines
3.3 KiB
Lua
Raw Normal View History

-- Run me like this (connected via USB): ./pm3 -l hf_bruteforce.lua
-- Run me like this (connected via Blueshark addon): ./client/proxmark3 /dev/rfcomm0 -l ./hf_bruteforce.lua
2019-12-24 16:52:11 +08:00
local getopt = require('getopt')
2020-04-05 18:28:49 +08:00
local ansicolors = require('ansicolors')
2019-12-24 16:52:11 +08:00
copyright = ''
author = 'Daniel Underhay (updated), Keld Norman(original)'
2020-04-05 18:28:49 +08:00
version = 'v2.0.1'
desc =[[
This script bruteforces 4 or 7 byte UID Mifare classic card numbers.
]]
example =[[
Bruteforce a 4 byte UID Mifare classic card number, starting at 11223344, ending at 11223346.
2020-04-16 15:01:14 +08:00
2020-04-05 18:28:49 +08:00
script run hf_bruteforce -s 0x11223344 -e 0x11223346 -t 1000 -x mfc
2019-12-24 16:52:11 +08:00
2020-04-05 18:28:49 +08:00
Bruteforce a 7 byte UID Mifare Ultralight card number, starting at 11223344556677, ending at 11223344556679.
2019-12-24 16:52:11 +08:00
2020-04-05 18:28:49 +08:00
script run hf_bruteforce -s 0x11223344556677 -e 0x11223344556679 -t 1000 -x mfu
]]
usage = [[
script run hf_bruteforce [-s <start_id>] [-e <end_id>] [-t <timeout>] [-x <mifare_card_type>]
]]
arguments = [[
2019-12-24 16:52:11 +08:00
-h this help
2020-01-01 04:41:36 +08:00
-s 0-0xFFFFFFFF start id
2019-12-24 16:52:11 +08:00
-e 0-0xFFFFFFFF end id
2020-04-16 15:01:14 +08:00
-t 0-99999, pause timeout (ms) between cards
2020-04-05 18:28:49 +08:00
(use the word 'pause' to wait for user input)
2020-04-16 15:01:14 +08:00
-x mfc, mfu mifare type:
2020-04-05 18:28:49 +08:00
mfc for Mifare Classic (default)
mfu for Mifare Ultralight EV1
2019-12-24 16:52:11 +08:00
]]
local DEBUG = true
---
-- Debug print function
local function dbg(args)
if not DEBUG then return end
if type(args) == 'table' then
local i = 1
while result[i] do
dbg(result[i])
i = i+1
end
else
print('###', args)
end
end
---
-- When errors occur
local function oops(err)
print('ERROR:', err)
core.clearCommandBuffer()
return nil, err
end
---
-- Usage help
local function help()
print(copyright)
print(author)
print(version)
print(desc)
2020-04-05 18:28:49 +08:00
print(ansicolors.cyan..'Usage'..ansicolors.reset)
2019-12-24 16:52:11 +08:00
print(usage)
2020-04-05 18:28:49 +08:00
print(ansicolors.cyan..'Arguments'..ansicolors.reset)
print(arguments)
print(ansicolors.cyan..'Example usage'..ansicolors.reset)
print(example)
2019-12-24 16:52:11 +08:00
end
---
--- Print user message
local function msg(msg)
2019-12-24 16:52:11 +08:00
print( string.rep('--',20) )
print('')
2019-12-24 16:52:11 +08:00
print(msg)
print('')
2019-12-24 16:52:11 +08:00
print( string.rep('--',20) )
end
---
-- Start
local function main(args)
local timeout = 0
local start_id = 0
local end_id = 0xFFFFFFFFFFFFFF
local mftype = 'mfc'
2020-01-01 04:41:36 +08:00
for o, a in getopt.getopt(args, 'e:s:t:x:h') do
2019-12-24 16:52:11 +08:00
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 == 'x' then mftype = a end
2019-12-24 16:52:11 +08:00
if o == 'h' then return print(usage) end
end
2020-01-01 04:41:36 +08:00
2019-12-24 16:52:11 +08:00
-- template
local command = ''
if mftype == 'mfc' then
command = 'hf 14a sim t 1 u %014x'
msg('Bruteforcing Mifare Classic card numbers')
elseif mftype == 'mfu' then
command = 'hf 14a sim t 2 u %014x'
msg('Bruteforcing Mifare Ultralight card numbers')
else
return print(usage)
end
2020-01-01 04:41:36 +08:00
if command == '' then return print(usage) end
2020-01-01 04:41:36 +08:00
2019-12-24 16:52:11 +08:00
for n = start_id, end_id do
local c = string.format( command, n )
print('Running: "'..c..'"')
2019-12-24 16:52:11 +08:00
core.console(c)
core.console('msleep '..timeout);
core.console('hw ping')
end
end
main(args)