X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e772353f72729f0dfc80a4d93c3a7bd2ac5ea775..e1778858ddc53a6a82e8ee24f02e6b673687f69a:/client/cmdhfmf.h diff --git a/client/cmdhfmf.h b/client/cmdhfmf.h index 16dcccfb..72924cae 100644 --- a/client/cmdhfmf.h +++ b/client/cmdhfmf.h @@ -18,26 +18,32 @@ #include "proxmark3.h" #include "iso14443crc.h" #include "data.h" -//#include "proxusb.h" #include "ui.h" #include "cmdparser.h" #include "common.h" #include "util.h" -#include "mifarehost.h" +#include "mifare.h" // nonces_t struct +#include "cmdhfmfhard.h" +#include "nonce2key/nonce2key.h" int CmdHFMF(const char *Cmd); int CmdHF14AMfDbg(const char* cmd); int CmdHF14AMfRdBl(const char* cmd); +int CmdHF14AMfURdBl(const char* cmd); int CmdHF14AMfRdSc(const char* cmd); +int CmdHF14SMfURdCard(const char* cmd); int CmdHF14AMfDump(const char* cmd); int CmdHF14AMfRestore(const char* cmd); int CmdHF14AMfWrBl(const char* cmd); +int CmdHF14AMfUWrBl(const char* cmd); int CmdHF14AMfChk(const char* cmd); int CmdHF14AMifare(const char* cmd); int CmdHF14AMfNested(const char* cmd); +int CmdHF14AMfNestedHard(const char *Cmd); int CmdHF14AMfSniff(const char* cmd); int CmdHF14AMf1kSim(const char* cmd); +int CmdHF14AMfKeyBrute(const char *Cmd); int CmdHF14AMfEClear(const char* cmd); int CmdHF14AMfEGet(const char* cmd); int CmdHF14AMfESet(const char* cmd); @@ -51,5 +57,10 @@ int CmdHF14AMfCGetBlk(const char* cmd); int CmdHF14AMfCGetSc(const char* cmd); int CmdHF14AMfCLoad(const char* cmd); int CmdHF14AMfCSave(const char* cmd); +int CmdHf14MfDecryptBytes(const char *Cmd); +int CmdHf14AMfSetMod(const char *Cmd); +void showSectorTable(void); +void readerAttack(nonces_t data, bool setEmulatorMem, bool verbose); +void printKeyTable( uint8_t sectorscnt, sector_t *e_sector ); #endif