mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
chg: formatMifare.lua helptext output
This commit is contained in:
parent
5dbfb627fc
commit
9512f60227
1 changed files with 8 additions and 3 deletions
|
@ -4,7 +4,7 @@ local bin = require('bin')
|
|||
local lib14a = require('read14a')
|
||||
local utils = require('utils')
|
||||
|
||||
example =[[
|
||||
example = [[
|
||||
-- generate commands
|
||||
1. script run formatMifare
|
||||
|
||||
|
@ -14,11 +14,13 @@ example =[[
|
|||
-- generate commands and excute them against card.
|
||||
3. script run formatMifare -x
|
||||
]]
|
||||
author = "Iceman"
|
||||
copyright = ''
|
||||
version = ''
|
||||
author = 'Iceman'
|
||||
usage = [[
|
||||
script run formatMifare -k <key> -n <key> -a <access> -x
|
||||
]]
|
||||
desc =[[
|
||||
desc = [[
|
||||
This script will generate 'hf mf wrbl' commands for each block to format a Mifare card.
|
||||
|
||||
Alla datablocks gets 0x00
|
||||
|
@ -66,6 +68,9 @@ end
|
|||
---
|
||||
-- Usage help
|
||||
function help()
|
||||
print(copyright)
|
||||
print(author)
|
||||
print(version)
|
||||
print(desc)
|
||||
print("Example usage")
|
||||
print(example)
|
||||
|
|
Loading…
Reference in a new issue