mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-04 20:50:37 -08:00
132 lines
3.7 KiB
Lua
132 lines
3.7 KiB
Lua
local getopt = require('getopt')
|
|
local ansicolors = require('ansicolors')
|
|
local cmds = require('commands')
|
|
|
|
copyright = ''
|
|
author = "TheChamop669"
|
|
version = 'v1.0.1'
|
|
desc = [[
|
|
Perform bulk enrollment of 26 bit H10301 style RFID Tags
|
|
For more info, check the comments in the code
|
|
]]
|
|
example = [[
|
|
--
|
|
script run lf_hid_bulkclone_v2.lua -f 1 -b 1000
|
|
]]
|
|
usage = [[
|
|
script run lf_hid_bulkclone_v2.lua -f facility -b base_id_num
|
|
]]
|
|
arguments = [[
|
|
-h : this help
|
|
-f : facility id
|
|
-b : starting card id
|
|
]]
|
|
local DEBUG = true
|
|
---
|
|
-- A debug printout-function
|
|
local function dbg(args)
|
|
if not DEBUG then return end
|
|
if type(args) == 'table' then
|
|
local i = 1
|
|
while args[i] do
|
|
dbg(args[i])
|
|
i = i+1
|
|
end
|
|
else
|
|
print('###', args)
|
|
end
|
|
end
|
|
---
|
|
-- This is only meant to be used when errors occur
|
|
local function oops(err)
|
|
print('ERROR:', err)
|
|
core.clearCommandBuffer()
|
|
return nil, errr
|
|
end
|
|
---
|
|
-- Usage help
|
|
local function help()
|
|
print(copyright)
|
|
print(author)
|
|
print(version)
|
|
print(desc)
|
|
print(ansicolors.cyan..'Usage'..ansicolors.reset)
|
|
print(usage)
|
|
print(ansicolors.cyan..'Arguments'..ansicolors.reset)
|
|
print(arguments)
|
|
print(ansicolors.cyan..'Example usage'..ansicolors.reset)
|
|
print(example)
|
|
end
|
|
---
|
|
-- Exit message
|
|
local function exitMsg(msg)
|
|
print( string.rep('--',20) )
|
|
print( string.rep('--',20) )
|
|
print(msg)
|
|
print()
|
|
end
|
|
|
|
local function main(args)
|
|
|
|
print( string.rep('--',20) )
|
|
print( string.rep('--',20) )
|
|
print()
|
|
|
|
if #args == 0 then return help() end
|
|
|
|
for o, a in getopt.getopt(args, 'f:b:h') do
|
|
if o == 'h' then return help() end
|
|
if o == 'f' then
|
|
if isempty(a) then
|
|
print('You did not supply a facility code, using 0')
|
|
fc = 10
|
|
else
|
|
fc = a
|
|
end
|
|
end
|
|
if o == 'b' then
|
|
if isempty(a) then
|
|
print('You did not supply a starting card number, using 1000')
|
|
cn = 1000
|
|
else
|
|
cn = a
|
|
end
|
|
end
|
|
end
|
|
|
|
local successful_writes = {}
|
|
local timestamp = os.date('%Y-%m-%d %H:%M:%S', os.time())
|
|
|
|
while true do
|
|
print(string.format("Writing Facility Code: %d, Card Number: %d", fc, cn))
|
|
|
|
local command = string.format("lf hid clone -w H10301 --fc %d --cn %d", fc, cn)
|
|
core.console(command)
|
|
|
|
table.insert(successful_writes, string.format("%d,%d", fc, cn))
|
|
|
|
print("Press Enter to write the next card, type 'r' and press Enter to retry, or type 'q' and press Enter to quit.")
|
|
local user_input = io.read()
|
|
|
|
if user_input:lower() == 'q' then
|
|
print("Timestamp: ", timestamp)
|
|
print("Successful Writes:")
|
|
for _, v in ipairs(successful_writes) do print(v) end
|
|
break
|
|
elseif user_input:lower() ~= 'r' then
|
|
cn = cn + 1
|
|
end
|
|
end
|
|
end
|
|
|
|
main(args)
|
|
|
|
--[[
|
|
Notes:
|
|
1. The `lf hid clone` command is used to write HID formatted data to T5577 cards, using the H10301 format.
|
|
2. The script prompts the user for the initial facility code and card number at the start of the session.
|
|
3. Users can continue to write to the next card, retry the current write, or quit the session by responding to the prompts.
|
|
4. Upon quitting, the script prints all successful writes along with a timestamp.
|
|
5. Password-related features have been removed in this version of the script as they are not supported by the `lf hid clone` command.
|
|
]]
|