mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
Add Mifare Classic 4K in hf_mf_uidbruteforce script
This commit is contained in:
parent
3d0c8974bc
commit
c0b6d56968
1 changed files with 5 additions and 1 deletions
|
@ -28,8 +28,9 @@ arguments = [[
|
|||
-e 0-0xFFFFFFFF end id
|
||||
-t 0-99999, pause timeout (ms) between cards
|
||||
(use the word 'pause' to wait for user input)
|
||||
-x mfc, mfu mifare type:
|
||||
-x mfc, mfc4, mfu mifare type:
|
||||
mfc for Mifare Classic (default)
|
||||
mfc4 for Mifare Classic 4K
|
||||
mfu for Mifare Ultralight EV1
|
||||
]]
|
||||
|
||||
|
@ -107,6 +108,9 @@ local function main(args)
|
|||
if mftype == 'mfc' then
|
||||
command = 'hf 14a sim -t 1 -u ' .. uid_format
|
||||
msg('Bruteforcing Mifare Classic card numbers')
|
||||
elseif mftype == 'mfc4' then
|
||||
command = 'hf 14a sim -t 8 -u ' .. uid_format
|
||||
msg('Bruteforcing Mifare Classic 4K card numbers')
|
||||
elseif mftype == 'mfu' then
|
||||
command = 'hf 14a sim -t 2 -u ' .. uid_format
|
||||
msg('Bruteforcing Mifare Ultralight card numbers')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue