mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
add switch to force MAD decode
This commit is contained in:
parent
fcca67bf89
commit
6aadc2ec10
1 changed files with 2 additions and 1 deletions
|
@ -166,7 +166,7 @@ globals:
|
||||||
# Currently dumpAcl is hardcoded for RF08S
|
# Currently dumpAcl is hardcoded for RF08S
|
||||||
dumpAcl(data)
|
dumpAcl(data)
|
||||||
|
|
||||||
if mad is True:
|
if (mad is True) or (args.mad is True):
|
||||||
dumpMad(dump18)
|
dumpMad(dump18)
|
||||||
|
|
||||||
if (args.bambu is True) or (detectBambu(data) is True):
|
if (args.bambu is True) or (detectBambu(data) is True):
|
||||||
|
@ -207,6 +207,7 @@ def parseCli():
|
||||||
parser.add_argument('-r', '--recover', action='store_true', help='run key recovery script if required')
|
parser.add_argument('-r', '--recover', action='store_true', help='run key recovery script if required')
|
||||||
parser.add_argument('-f', '--force', action='store_true', help='force recovery of keys')
|
parser.add_argument('-f', '--force', action='store_true', help='force recovery of keys')
|
||||||
parser.add_argument('-b', '--bambu', action='store_true', help='force Bambu tag decode')
|
parser.add_argument('-b', '--bambu', action='store_true', help='force Bambu tag decode')
|
||||||
|
parser.add_argument('-m', '--mad', action='store_true', help='force M.A.D. decode')
|
||||||
parser.add_argument('-v', '--validate', action='store_true', help='check Fudan signature (requires internet)')
|
parser.add_argument('-v', '--validate', action='store_true', help='check Fudan signature (requires internet)')
|
||||||
parser.add_argument('--fast', action='store_true', help='use ecfill for faster card transactions')
|
parser.add_argument('--fast', action='store_true', help='use ecfill for faster card transactions')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue