2019-03-09 15:49:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2019-03-09 15:49:41 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2019-03-09 15:49:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// High frequency MIFARE commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDHFMF_H__
|
|
|
|
#define CMDHFMF_H__
|
|
|
|
|
|
|
|
#include "common.h"
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "mifare/mfkey.h"
|
|
|
|
#include "mifare/mifarehost.h" // struct
|
2019-03-09 15:49:41 +08:00
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
int CmdHFMF(const char *Cmd);
|
2019-04-13 00:41:14 +08:00
|
|
|
int CmdHF14AMfELoad(const char *Cmd); // used by cmd hf mfu eload
|
|
|
|
int CmdHF14AMfDbg(const char *Cmd); // used by cmd hf mfu dbg
|
2021-05-29 04:35:42 +08:00
|
|
|
int CmdHFMFNDEFRead(const char *Cmd);
|
2019-03-09 15:49:41 +08:00
|
|
|
|
2020-06-02 02:30:11 +08:00
|
|
|
void showSectorTable(sector_t *k_sector, uint8_t k_sectorsCount);
|
|
|
|
void readerAttack(sector_t *k_sector, uint8_t k_sectorsCount, nonces_t data, bool setEmulatorMem, bool verbose);
|
2019-03-10 07:00:59 +08:00
|
|
|
void printKeyTable(uint8_t sectorscnt, sector_t *e_sector);
|
2019-12-29 06:51:17 +08:00
|
|
|
void printKeyTableEx(uint8_t sectorscnt, sector_t *e_sector, uint8_t start_sector);
|
2019-03-10 07:00:59 +08:00
|
|
|
void printKeyTable_fast(uint8_t sectorscnt, icesector_t *e_sector, uint64_t bar, uint64_t foo);
|
2021-02-19 20:39:35 +08:00
|
|
|
|
|
|
|
int mfc_ev1_print_signature(uint8_t *uid, uint8_t uidlen, uint8_t *signature, int signature_len);
|
2019-03-09 15:49:41 +08:00
|
|
|
#endif
|