Add ntag_clean.lua via upload

Script that zeros NTAG pages

Signed-off-by: Trigat <trigat@protonmail.com>
This commit is contained in:
Trigat 2025-08-24 12:41:07 -05:00 committed by GitHub
parent 01a7c888b4
commit 34e85935b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,117 @@
copyright = "Trigat"
author = "Trigat"
desc = "Zero-fill NTAG pages within a range"
local function help()
print([[
NTAG_CLEAN - Zero-fill NTAG pages/blocks
Options:
-h : this help
-s <start> : start block (default 4)
-e <end> : end block (default 39)
-d <hex> : data to write (8 hex chars, e.g. 00000000)
If 2 hex chars given (e.g. "FF"), it repeats to 8 ("FFFFFFFF").
Running with no options will zero out pages 4-39.
]])
end
local function normalize_hex(h)
if not h then return nil end
h = h:gsub("%s+", "")
if not h:match("^[0-9a-fA-F]+$") then return nil end
if #h == 2 then
h = h:rep(4) -- "FF" converted to "FFFFFFFF"
end
if #h ~= 8 then
return nil
end
return h:upper()
end
local function parse_args(argv)
local opts = {}
local i = 1
while i <= #argv do
local a = argv[i]
if a == "-h" then
opts.h = true
elseif a == "-s" then
opts.s = tonumber(argv[i+1]); i = i + 1
elseif a == "-e" then
opts.e = tonumber(argv[i+1]); i = i + 1
elseif a == "-d" then
opts.d = argv[i+1]; i = i + 1
end
i = i + 1
end
return opts
end
-- check if card exists
local function card_present()
local reader = require("read14a")
local tag, err = reader.read()
if not tag then
print("No card detected. Aborting.")
return false
end
print("Card detected:", tag.uid, tag.name)
return true
end
-- convert global args string into table
local function split_args(argstr)
local t = {}
if not argstr then return t end
for word in argstr:gmatch("%S+") do
table.insert(t, word)
end
return t
end
local function main(args)
local start_block = 4
local end_block = 39 -- CHANGE HERE
local data = "00000000"
local argv = split_args(args)
local opts = parse_args(argv)
if opts.h then return help() end
if opts.s then start_block = opts.s end
if opts.e then end_block = opts.e end
if opts.d then
local norm = normalize_hex(opts.d)
if not norm then
print("Invalid -d <hex>. Use 8 hex chars (e.g. 00000000) or 2 chars (e.g. FF).")
return
end
data = norm
end
if start_block < 4 then
print("Cannot clean page 0-3. Those are UID and Config pages.")
return
end
if end_block < start_block then
print("End block must be greater than or equal to start page.")
return
end
-- check if card is present on reader
if not card_present() then
return
end
print(string.format("Zero-fill (%s) to pages %d..%d", data, start_block, end_block))
for b = start_block, end_block do
core.console(string.format("hf mfu wrbl -b %d -d %s", b, data))
end
print("Done.")
end
main(args)