2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
2018-02-15 06:03:39 +08:00
|
|
|
// Merlok - 2017
|
2010-02-21 08:47:22 +08:00
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// High frequency commands
|
|
|
|
//-----------------------------------------------------------------------------
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
#include "cmdhf.h"
|
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
2018-02-15 06:03:39 +08:00
|
|
|
int usage_hf_search(){
|
2018-02-21 14:16:33 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Usage: hf search");
|
|
|
|
PrintAndLogEx(NORMAL, "Will try to find a HF read out of the unknown tag. Stops when found.");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h - This help");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
2018-02-15 06:03:39 +08:00
|
|
|
return 0;
|
2015-01-17 05:41:19 +08:00
|
|
|
}
|
2018-02-15 06:03:39 +08:00
|
|
|
int usage_hf_snoop(){
|
2018-02-21 14:16:33 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Usage: hf snoop <skip pairs> <skip triggers>");
|
|
|
|
PrintAndLogEx(NORMAL, "The high frequence snoop will assign all available memory on device for snooped data");
|
|
|
|
PrintAndLogEx(NORMAL, "User the 'data samples' command to download from device, and 'data plot' to look at it");
|
|
|
|
PrintAndLogEx(NORMAL, "Press button to quit the snooping.");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h - This help");
|
|
|
|
PrintAndLogEx(NORMAL, " <skip pairs> - skip sample pairs");
|
|
|
|
PrintAndLogEx(NORMAL, " <skip triggers> - skip number of triggers");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " hf snoop");
|
|
|
|
PrintAndLogEx(NORMAL, " hf snoop 1000 0");
|
2018-02-15 06:03:39 +08:00
|
|
|
return 0;
|
2017-09-05 00:38:57 +08:00
|
|
|
}
|
2015-01-05 04:22:54 +08:00
|
|
|
|
2015-05-13 00:57:47 +08:00
|
|
|
int CmdHFSearch(const char *Cmd){
|
2015-11-02 02:49:08 +08:00
|
|
|
|
|
|
|
char cmdp = param_getchar(Cmd, 0);
|
|
|
|
if (cmdp == 'h' || cmdp == 'H') return usage_hf_search();
|
|
|
|
|
2017-12-09 05:27:55 +08:00
|
|
|
int ans = CmdHF14AInfo("s");
|
2015-05-13 15:10:47 +08:00
|
|
|
if (ans > 0) {
|
2018-04-27 18:15:26 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "\nValid ISO14443-A Tag Found\n");
|
2015-05-13 15:10:47 +08:00
|
|
|
return ans;
|
|
|
|
}
|
|
|
|
ans = HF15Reader("", false);
|
|
|
|
if (ans) {
|
2018-04-27 18:15:26 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "\nValid ISO15693 Tag Found\n");
|
2015-05-13 15:10:47 +08:00
|
|
|
return ans;
|
|
|
|
}
|
2016-10-09 01:14:09 +08:00
|
|
|
ans = HFLegicReader("", false);
|
|
|
|
if ( ans == 0) {
|
2018-04-27 18:15:26 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "\nValid LEGIC Tag Found\n");
|
2016-10-09 01:14:09 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2016-03-06 20:21:42 +08:00
|
|
|
ans = CmdHFTopazReader("s");
|
2016-03-06 19:40:04 +08:00
|
|
|
if (ans == 0) {
|
2018-04-27 18:15:26 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "\nValid Topaz Tag Found\n");
|
2016-03-06 19:40:04 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2017-07-07 21:45:40 +08:00
|
|
|
// 14b and iclass is the longest test (put last)
|
|
|
|
ans = HF14BReader(false); //CmdHF14BReader("s");
|
|
|
|
if (ans) {
|
2018-04-27 18:15:26 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "\nValid ISO14443-B Tag Found\n");
|
2017-07-07 21:45:40 +08:00
|
|
|
return ans;
|
|
|
|
}
|
2016-10-09 01:14:09 +08:00
|
|
|
ans = HFiClassReader("", false, false);
|
|
|
|
if (ans) {
|
2018-04-27 18:15:26 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "\nValid iClass Tag (or PicoPass Tag) Found\n");
|
2016-10-09 01:14:09 +08:00
|
|
|
return ans;
|
2016-09-27 02:01:23 +08:00
|
|
|
}
|
2017-10-10 20:59:58 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
ans = CmdHFFelicaReader("s");
|
|
|
|
if (ans) {
|
2018-02-21 14:16:33 +08:00
|
|
|
PrintAndLogEx(NORMAL, "\nValid ISO18092 / FeliCa Found\n");
|
2017-10-10 20:59:58 +08:00
|
|
|
return ans;
|
|
|
|
}
|
|
|
|
*/
|
2016-09-27 02:01:23 +08:00
|
|
|
|
2018-04-27 23:38:41 +08:00
|
|
|
PrintAndLogEx(FAILED, "\nno known/supported 13.56 MHz tags found\n");
|
2015-05-13 00:57:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
|
2018-02-15 06:03:39 +08:00
|
|
|
int CmdHFTune(const char *Cmd) {
|
2018-02-21 14:16:33 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Measuring HF antenna, press button to exit");
|
2018-02-15 06:03:39 +08:00
|
|
|
UsbCommand c = {CMD_MEASURE_ANTENNA_TUNING_HF};
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-02 22:25:54 +08:00
|
|
|
int CmdHFSnoop(const char *Cmd) {
|
2015-11-02 02:49:08 +08:00
|
|
|
char cmdp = param_getchar(Cmd, 0);
|
|
|
|
if (cmdp == 'h' || cmdp == 'H') return usage_hf_snoop();
|
|
|
|
|
|
|
|
int skippairs = param_get32ex(Cmd, 0, 0, 10);
|
|
|
|
int skiptriggers = param_get32ex(Cmd, 1, 0, 10);
|
|
|
|
|
2016-03-21 02:24:14 +08:00
|
|
|
UsbCommand c = {CMD_HF_SNIFFER, {skippairs, skiptriggers, 0}};
|
2016-03-06 17:35:25 +08:00
|
|
|
clearCommandBuffer();
|
2015-10-28 04:47:21 +08:00
|
|
|
SendCommand(&c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-06 17:35:25 +08:00
|
|
|
static command_t CommandTable[] = {
|
|
|
|
{"help", CmdHelp, 1, "This help"},
|
2018-11-08 23:29:58 +08:00
|
|
|
{"14a", CmdHF14A, 1, "{ ISO14443A RFIDs... }"},
|
|
|
|
{"14b", CmdHF14B, 1, "{ ISO14443B RFIDs... }"},
|
|
|
|
{"15", CmdHF15, 1, "{ ISO15693 RFIDs... }"},
|
|
|
|
{"epa", CmdHFEPA, 1, "{ German Identification Card... }"},
|
|
|
|
{"emv", CmdHFEMV, 1, "{ EMV RFIDs... }"},
|
|
|
|
{"felica", CmdHFFelica, 1, "{ ISO18092 / Felica RFIDs... }"},
|
|
|
|
{"legic", CmdHFLegic, 1, "{ LEGIC RFIDs... }"},
|
|
|
|
{"iclass", CmdHFiClass, 1, "{ ICLASS RFIDs... }"},
|
|
|
|
{"mf", CmdHFMF, 1, "{ MIFARE RFIDs... }"},
|
|
|
|
{"mfp", CmdHFMFP, 1, "{ MIFARE Plus RFIDs... }"},
|
|
|
|
{"mfu", CmdHFMFUltra, 1, "{ MIFARE Ultralight RFIDs... }"},
|
|
|
|
{"mfdes", CmdHFMFDes, 1, "{ MIFARE Desfire RFIDs... }"},
|
|
|
|
{"topaz", CmdHFTopaz, 1, "{ TOPAZ (NFC Type 1) RFIDs... }"},
|
|
|
|
{"fido", CmdHFFido, 1, "{ FIDO and FIDO2 authenticators... }"},
|
2018-03-19 01:00:41 +08:00
|
|
|
{"list", CmdTraceList, 0, "List protocol data in trace buffer"},
|
2016-03-06 17:35:25 +08:00
|
|
|
{"tune", CmdHFTune, 0, "Continuously measure HF antenna tuning"},
|
|
|
|
{"search", CmdHFSearch, 1, "Search for known HF tags [preliminary]"},
|
2017-07-15 02:54:11 +08:00
|
|
|
{"snoop", CmdHFSnoop, 0, "<samples to skip (10000)> <triggers to skip (1)> Generic HF Snoop"},
|
2015-01-05 04:22:54 +08:00
|
|
|
{NULL, NULL, 0, NULL}
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
};
|
|
|
|
|
2016-02-14 22:24:11 +08:00
|
|
|
int CmdHF(const char *Cmd) {
|
|
|
|
clearCommandBuffer();
|
|
|
|
CmdsParse(CommandTable, Cmd);
|
|
|
|
return 0;
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
}
|
|
|
|
|
2016-02-14 22:24:11 +08:00
|
|
|
int CmdHelp(const char *Cmd) {
|
|
|
|
CmdsHelp(CommandTable);
|
|
|
|
return 0;
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
}
|