mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 22:23:38 -07:00
hf mf nested added doc to <s> and <ss>
This commit is contained in:
parent
bbc10bce7d
commit
a627d94afb
5 changed files with 347 additions and 2 deletions
|
@ -580,20 +580,23 @@ int CmdHF14AMfNested(const char *Cmd)
|
||||||
|
|
||||||
if (strlen(Cmd)<3) {
|
if (strlen(Cmd)<3) {
|
||||||
PrintAndLog("Usage:");
|
PrintAndLog("Usage:");
|
||||||
PrintAndLog(" all sectors: hf mf nested <card memory> <block number> <key A/B> <key (12 hex symbols)> [t,d]");
|
PrintAndLog(" all sectors: hf mf nested <card memory> <block number> <key A/B> <key (12 hex symbols)> [t|d|s|ss]");
|
||||||
PrintAndLog(" all sectors autosearch key: hf mf nested <card memory> * [t,d]");
|
PrintAndLog(" all sectors autosearch key: hf mf nested <card memory> * [t|d|s|ss]");
|
||||||
PrintAndLog(" one sector: hf mf nested o <block number> <key A/B> <key (12 hex symbols)>");
|
PrintAndLog(" one sector: hf mf nested o <block number> <key A/B> <key (12 hex symbols)>");
|
||||||
PrintAndLog(" <target block number> <target key A/B> [t]");
|
PrintAndLog(" <target block number> <target key A/B> [t]");
|
||||||
PrintAndLog(" ");
|
PrintAndLog(" ");
|
||||||
PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");
|
PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");
|
||||||
PrintAndLog("t - transfer keys to emulator memory");
|
PrintAndLog("t - transfer keys to emulator memory");
|
||||||
PrintAndLog("d - write keys to binary file dumpkeys.bin");
|
PrintAndLog("d - write keys to binary file dumpkeys.bin");
|
||||||
|
PrintAndLog("s - Slow (1ms) check keys (required by some non standard cards)");
|
||||||
|
PrintAndLog("ss - Very slow (5ms) check keys");
|
||||||
PrintAndLog(" ");
|
PrintAndLog(" ");
|
||||||
PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF ");
|
PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF ");
|
||||||
PrintAndLog(" sample2: hf mf nested 1 0 A FFFFFFFFFFFF t ");
|
PrintAndLog(" sample2: hf mf nested 1 0 A FFFFFFFFFFFF t ");
|
||||||
PrintAndLog(" sample3: hf mf nested 1 0 A FFFFFFFFFFFF d ");
|
PrintAndLog(" sample3: hf mf nested 1 0 A FFFFFFFFFFFF d ");
|
||||||
PrintAndLog(" sample4: hf mf nested o 0 A FFFFFFFFFFFF 4 A");
|
PrintAndLog(" sample4: hf mf nested o 0 A FFFFFFFFFFFF 4 A");
|
||||||
PrintAndLog(" sample5: hf mf nested 1 * t");
|
PrintAndLog(" sample5: hf mf nested 1 * t");
|
||||||
|
PrintAndLog(" sample5: hf mf nested 1 * ss");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
proxmark3.config
Normal file
2
proxmark3.config
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
// Add predefined macros for your project here. For example:
|
||||||
|
// #define THE_ANSWER 42
|
1
proxmark3.creator
Normal file
1
proxmark3.creator
Normal file
|
@ -0,0 +1 @@
|
||||||
|
[General]
|
325
proxmark3.files
Normal file
325
proxmark3.files
Normal file
|
@ -0,0 +1,325 @@
|
||||||
|
armsrc/BigBuf.c
|
||||||
|
armsrc/BigBuf.h
|
||||||
|
armsrc/LCD.c
|
||||||
|
armsrc/LCD.h
|
||||||
|
armsrc/appmain.c
|
||||||
|
armsrc/apps.h
|
||||||
|
armsrc/epa.c
|
||||||
|
armsrc/epa.h
|
||||||
|
armsrc/fonts.c
|
||||||
|
armsrc/fonts.h
|
||||||
|
armsrc/fpgaloader.c
|
||||||
|
armsrc/fpgaloader.h
|
||||||
|
armsrc/hfsnoop.c
|
||||||
|
armsrc/hitag2.c
|
||||||
|
armsrc/hitagS.c
|
||||||
|
armsrc/iclass.c
|
||||||
|
armsrc/iso14443a.c
|
||||||
|
armsrc/iso14443a.h
|
||||||
|
armsrc/iso14443b.c
|
||||||
|
armsrc/iso14443b.h
|
||||||
|
armsrc/iso15693.c
|
||||||
|
armsrc/legicrf.c
|
||||||
|
armsrc/legicrf.h
|
||||||
|
armsrc/lfops.c
|
||||||
|
armsrc/lfsampling.c
|
||||||
|
armsrc/lfsampling.h
|
||||||
|
armsrc/mifarecmd.c
|
||||||
|
armsrc/mifarecmd.h
|
||||||
|
armsrc/mifaresniff.c
|
||||||
|
armsrc/mifaresniff.h
|
||||||
|
armsrc/mifareutil.c
|
||||||
|
armsrc/mifareutil.h
|
||||||
|
armsrc/optimized_cipher.c
|
||||||
|
armsrc/optimized_cipher.h
|
||||||
|
armsrc/pcf7931.c
|
||||||
|
armsrc/pcf7931.h
|
||||||
|
armsrc/printf.c
|
||||||
|
armsrc/printf.h
|
||||||
|
armsrc/start.c
|
||||||
|
armsrc/string.c
|
||||||
|
armsrc/string.h
|
||||||
|
armsrc/util.c
|
||||||
|
armsrc/util.h
|
||||||
|
armsrc/version.c
|
||||||
|
bootrom/bootrom.c
|
||||||
|
bootrom/version.c
|
||||||
|
client/cmdcrc.c
|
||||||
|
client/cmdcrc.h
|
||||||
|
client/cmddata.c
|
||||||
|
client/cmddata.h
|
||||||
|
client/cmdhf.c
|
||||||
|
client/cmdhf.h
|
||||||
|
client/cmdhf14a.c
|
||||||
|
client/cmdhf14a.h
|
||||||
|
client/cmdhf14b.c
|
||||||
|
client/cmdhf14b.h
|
||||||
|
client/cmdhf15.c
|
||||||
|
client/cmdhf15.h
|
||||||
|
client/cmdhfepa.c
|
||||||
|
client/cmdhfepa.h
|
||||||
|
client/cmdhficlass.c
|
||||||
|
client/cmdhficlass.h
|
||||||
|
client/cmdhflegic.c
|
||||||
|
client/cmdhflegic.h
|
||||||
|
client/cmdhfmf.c
|
||||||
|
client/cmdhfmf.h
|
||||||
|
client/cmdhfmfhard.c
|
||||||
|
client/cmdhfmfhard.h
|
||||||
|
client/cmdhfmfu.c
|
||||||
|
client/cmdhfmfu.h
|
||||||
|
client/cmdhftopaz.c
|
||||||
|
client/cmdhftopaz.h
|
||||||
|
client/cmdhw.c
|
||||||
|
client/cmdhw.h
|
||||||
|
client/cmdlf.c
|
||||||
|
client/cmdlf.h
|
||||||
|
client/cmdlfawid.c
|
||||||
|
client/cmdlfawid.h
|
||||||
|
client/cmdlfcotag.c
|
||||||
|
client/cmdlfcotag.h
|
||||||
|
client/cmdlfem4x.c
|
||||||
|
client/cmdlfem4x.h
|
||||||
|
client/cmdlffdx.c
|
||||||
|
client/cmdlffdx.h
|
||||||
|
client/cmdlfgproxii.c
|
||||||
|
client/cmdlfgproxii.h
|
||||||
|
client/cmdlfhid.c
|
||||||
|
client/cmdlfhid.h
|
||||||
|
client/cmdlfhitag.c
|
||||||
|
client/cmdlfhitag.h
|
||||||
|
client/cmdlfindala.c
|
||||||
|
client/cmdlfindala.h
|
||||||
|
client/cmdlfio.c
|
||||||
|
client/cmdlfio.h
|
||||||
|
client/cmdlfjablotron.c
|
||||||
|
client/cmdlfjablotron.h
|
||||||
|
client/cmdlfnexwatch.c
|
||||||
|
client/cmdlfnexwatch.h
|
||||||
|
client/cmdlfnoralsy.c
|
||||||
|
client/cmdlfnoralsy.h
|
||||||
|
client/cmdlfpac.c
|
||||||
|
client/cmdlfpac.h
|
||||||
|
client/cmdlfparadox.c
|
||||||
|
client/cmdlfparadox.h
|
||||||
|
client/cmdlfpcf7931.c
|
||||||
|
client/cmdlfpcf7931.h
|
||||||
|
client/cmdlfpresco.c
|
||||||
|
client/cmdlfpresco.h
|
||||||
|
client/cmdlfpyramid.c
|
||||||
|
client/cmdlfpyramid.h
|
||||||
|
client/cmdlfsecurakey.c
|
||||||
|
client/cmdlfsecurakey.h
|
||||||
|
client/cmdlft55xx.c
|
||||||
|
client/cmdlft55xx.h
|
||||||
|
client/cmdlfti.c
|
||||||
|
client/cmdlfti.h
|
||||||
|
client/cmdlfviking.c
|
||||||
|
client/cmdlfviking.h
|
||||||
|
client/cmdlfvisa2000.c
|
||||||
|
client/cmdlfvisa2000.h
|
||||||
|
client/cmdmain.c
|
||||||
|
client/cmdmain.h
|
||||||
|
client/cmdparser.c
|
||||||
|
client/cmdparser.h
|
||||||
|
client/cmdscript.c
|
||||||
|
client/cmdscript.h
|
||||||
|
client/data.c
|
||||||
|
client/data.h
|
||||||
|
client/elf.h
|
||||||
|
client/flash.c
|
||||||
|
client/flash.h
|
||||||
|
client/flasher.c
|
||||||
|
client/fpga_compress.c
|
||||||
|
client/graph.c
|
||||||
|
client/graph.h
|
||||||
|
client/guidummy.cpp
|
||||||
|
client/hardnested/hardnested_bf_core.c
|
||||||
|
client/hardnested/hardnested_bf_core.h
|
||||||
|
client/hardnested/hardnested_bitarray_core.c
|
||||||
|
client/hardnested/hardnested_bitarray_core.h
|
||||||
|
client/hardnested/hardnested_bruteforce.c
|
||||||
|
client/hardnested/hardnested_bruteforce.h
|
||||||
|
client/hardnested/hardnested_tables.c
|
||||||
|
client/hid-flasher/elf.h
|
||||||
|
client/hid-flasher/flash.c
|
||||||
|
client/hid-flasher/flash.h
|
||||||
|
client/hid-flasher/flasher.c
|
||||||
|
client/hid-flasher/proxendian.h
|
||||||
|
client/hid-flasher/proxmark3.h
|
||||||
|
client/hid-flasher/proxusb.c
|
||||||
|
client/hid-flasher/proxusb.h
|
||||||
|
client/hid-flasher/sleep.h
|
||||||
|
client/hid-flasher/usb_cmd.h
|
||||||
|
client/loclass/cipher.c
|
||||||
|
client/loclass/cipher.h
|
||||||
|
client/loclass/cipherutils.c
|
||||||
|
client/loclass/cipherutils.h
|
||||||
|
client/loclass/elite_crack.c
|
||||||
|
client/loclass/elite_crack.h
|
||||||
|
client/loclass/fileutils.c
|
||||||
|
client/loclass/fileutils.h
|
||||||
|
client/loclass/ikeys.c
|
||||||
|
client/loclass/ikeys.h
|
||||||
|
client/loclass/loclass_main.h
|
||||||
|
client/loclass/main.c
|
||||||
|
client/mfkey.c
|
||||||
|
client/mfkey.h
|
||||||
|
client/mifarehost.c
|
||||||
|
client/mifarehost.h
|
||||||
|
client/pm3_binlib.c
|
||||||
|
client/pm3_binlib.h
|
||||||
|
client/pm3_bit_limits.h
|
||||||
|
client/pm3_bitlib.c
|
||||||
|
client/pm3_bitlib.h
|
||||||
|
client/proxendian.h
|
||||||
|
client/proxgui.cpp
|
||||||
|
client/proxgui.h
|
||||||
|
client/proxguiqt.cpp
|
||||||
|
client/proxguiqt.h
|
||||||
|
client/proxguiqt.moc.cpp
|
||||||
|
client/proxmark3.c
|
||||||
|
client/proxmark3.h
|
||||||
|
client/reveng/bmpbit.c
|
||||||
|
client/reveng/cli.c
|
||||||
|
client/reveng/config.h
|
||||||
|
client/reveng/getopt.c
|
||||||
|
client/reveng/getopt.h
|
||||||
|
client/reveng/model.c
|
||||||
|
client/reveng/poly.c
|
||||||
|
client/reveng/reveng.c
|
||||||
|
client/reveng/reveng.h
|
||||||
|
client/scripting.c
|
||||||
|
client/scripting.h
|
||||||
|
client/ui.c
|
||||||
|
client/ui.h
|
||||||
|
client/ui/ui_overlays.h
|
||||||
|
client/util.c
|
||||||
|
client/util.h
|
||||||
|
client/util_posix.c
|
||||||
|
client/util_posix.h
|
||||||
|
client/whereami.c
|
||||||
|
client/whereami.h
|
||||||
|
common/cmd.c
|
||||||
|
common/cmd.h
|
||||||
|
common/crapto1/crapto1.c
|
||||||
|
common/crapto1/crapto1.h
|
||||||
|
common/crapto1/crypto1.c
|
||||||
|
common/crc.c
|
||||||
|
common/crc.h
|
||||||
|
common/crc16.c
|
||||||
|
common/crc16.h
|
||||||
|
common/crc32.c
|
||||||
|
common/crc32.h
|
||||||
|
common/crc64.c
|
||||||
|
common/crc64.h
|
||||||
|
common/default_version.c
|
||||||
|
common/iso14443crc.c
|
||||||
|
common/iso14443crc.h
|
||||||
|
common/iso15693tools.c
|
||||||
|
common/iso15693tools.h
|
||||||
|
common/legic_prng.c
|
||||||
|
common/lfdemod.c
|
||||||
|
common/lfdemod.h
|
||||||
|
common/parity.c
|
||||||
|
common/parity.h
|
||||||
|
common/polarssl/aes.c
|
||||||
|
common/polarssl/aes.h
|
||||||
|
common/polarssl/des.c
|
||||||
|
common/polarssl/des.h
|
||||||
|
common/polarssl/polarssl_config.h
|
||||||
|
common/protocols.c
|
||||||
|
common/protocols.h
|
||||||
|
common/sha1.c
|
||||||
|
common/sha1.h
|
||||||
|
common/usb_cdc.c
|
||||||
|
common/usb_cdc.h
|
||||||
|
include/at91sam7s512.h
|
||||||
|
include/common.h
|
||||||
|
include/config_gpio.h
|
||||||
|
include/hitag2.h
|
||||||
|
include/hitagS.h
|
||||||
|
include/legic_prng.h
|
||||||
|
include/mifare.h
|
||||||
|
include/proxmark3.h
|
||||||
|
include/usb_cmd.h
|
||||||
|
liblua/lapi.c
|
||||||
|
liblua/lapi.h
|
||||||
|
liblua/lauxlib.c
|
||||||
|
liblua/lauxlib.h
|
||||||
|
liblua/lbaselib.c
|
||||||
|
liblua/lbitlib.c
|
||||||
|
liblua/lcode.c
|
||||||
|
liblua/lcode.h
|
||||||
|
liblua/lcorolib.c
|
||||||
|
liblua/lctype.c
|
||||||
|
liblua/lctype.h
|
||||||
|
liblua/ldblib.c
|
||||||
|
liblua/ldebug.c
|
||||||
|
liblua/ldebug.h
|
||||||
|
liblua/ldo.c
|
||||||
|
liblua/ldo.h
|
||||||
|
liblua/ldump.c
|
||||||
|
liblua/lfunc.c
|
||||||
|
liblua/lfunc.h
|
||||||
|
liblua/lgc.c
|
||||||
|
liblua/lgc.h
|
||||||
|
liblua/linit.c
|
||||||
|
liblua/liolib.c
|
||||||
|
liblua/llex.c
|
||||||
|
liblua/llex.h
|
||||||
|
liblua/llimits.h
|
||||||
|
liblua/lmathlib.c
|
||||||
|
liblua/lmem.c
|
||||||
|
liblua/lmem.h
|
||||||
|
liblua/loadlib.c
|
||||||
|
liblua/lobject.c
|
||||||
|
liblua/lobject.h
|
||||||
|
liblua/lopcodes.c
|
||||||
|
liblua/lopcodes.h
|
||||||
|
liblua/loslib.c
|
||||||
|
liblua/lparser.c
|
||||||
|
liblua/lparser.h
|
||||||
|
liblua/lstate.c
|
||||||
|
liblua/lstate.h
|
||||||
|
liblua/lstring.c
|
||||||
|
liblua/lstring.h
|
||||||
|
liblua/lstrlib.c
|
||||||
|
liblua/ltable.c
|
||||||
|
liblua/ltable.h
|
||||||
|
liblua/ltablib.c
|
||||||
|
liblua/ltm.c
|
||||||
|
liblua/ltm.h
|
||||||
|
liblua/lua.c
|
||||||
|
liblua/lua.h
|
||||||
|
liblua/lua.hpp
|
||||||
|
liblua/luac.c
|
||||||
|
liblua/luaconf.h
|
||||||
|
liblua/lualib.h
|
||||||
|
liblua/lundump.c
|
||||||
|
liblua/lundump.h
|
||||||
|
liblua/lvm.c
|
||||||
|
liblua/lvm.h
|
||||||
|
liblua/lzio.c
|
||||||
|
liblua/lzio.h
|
||||||
|
tools/mfkey/mfkey32.c
|
||||||
|
tools/mfkey/mfkey64.c
|
||||||
|
uart/uart.h
|
||||||
|
uart/uart_posix.c
|
||||||
|
uart/uart_win32.c
|
||||||
|
zlib/adler32.c
|
||||||
|
zlib/deflate.c
|
||||||
|
zlib/deflate.h
|
||||||
|
zlib/inffast.c
|
||||||
|
zlib/inffast.h
|
||||||
|
zlib/inffixed.h
|
||||||
|
zlib/inflate.c
|
||||||
|
zlib/inflate.h
|
||||||
|
zlib/inftrees.c
|
||||||
|
zlib/inftrees.h
|
||||||
|
zlib/trees.c
|
||||||
|
zlib/trees.h
|
||||||
|
zlib/zconf.h
|
||||||
|
zlib/zlib.h
|
||||||
|
zlib/zutil.c
|
||||||
|
zlib/zutil.h
|
14
proxmark3.includes
Normal file
14
proxmark3.includes
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
armsrc
|
||||||
|
client
|
||||||
|
client/hardnested
|
||||||
|
client/hid-flasher
|
||||||
|
client/loclass
|
||||||
|
client/reveng
|
||||||
|
client/ui
|
||||||
|
common
|
||||||
|
common/crapto1
|
||||||
|
common/polarssl
|
||||||
|
include
|
||||||
|
liblua
|
||||||
|
uart
|
||||||
|
zlib
|
Loading…
Add table
Add a link
Reference in a new issue