mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
follow alphabetic order
This commit is contained in:
parent
77116b3952
commit
e1b6e342d9
3 changed files with 10 additions and 10 deletions
|
@ -68,6 +68,9 @@ define KNOWN_STANDALONE_DEFINITIONS
|
|||
| HF_MATTYRUN | Mifare sniff/clone |
|
||||
| | - Matías A. Ré Medina |
|
||||
+----------------------------------------------------------+
|
||||
| HF_MFCSIM | Simulate Mifare Classic 1k card |
|
||||
| (RDV4 only) | storing in flashmem - Ray Lee |
|
||||
+----------------------------------------------------------+
|
||||
| HF_MSDSAL | Read and emulate MSD Visa cards |
|
||||
| (default) | - Salvador Mendoza |
|
||||
+----------------------------------------------------------+
|
||||
|
@ -83,13 +86,10 @@ define KNOWN_STANDALONE_DEFINITIONS
|
|||
| HF_YOUNG | Mifare sniff/simulation |
|
||||
| | - Craig Young |
|
||||
+----------------------------------------------------------+
|
||||
| HF_MFCSIM | Mifare Classic simulation |
|
||||
| | - Ray Lee |
|
||||
+----------------------------------------------------------+
|
||||
endef
|
||||
|
||||
STANDALONE_MODES := LF_SKELETON LF_EM4100EMUL LF_EM4100RSWB LF_EM4100RWC LF_HIDBRUTE LF_HIDFCBRUTE LF_ICEHID LF_PROXBRUTE LF_SAMYRUN LF_THAREXDE LF_NEXID
|
||||
STANDALONE_MODES += HF_14ASNIFF HF_AVEFUL HF_BOG HF_COLIN HF_CRAFTBYTE HF_ICECLASS HF_LEGIC HF_MATTYRUN HF_MSDSAL HF_TCPRST HF_TMUDFORD HF_YOUNG HF_REBLAY HF_MFCSIM
|
||||
STANDALONE_MODES += HF_14ASNIFF HF_AVEFUL HF_BOG HF_COLIN HF_CRAFTBYTE HF_ICECLASS HF_LEGIC HF_MATTYRUN HF_MFCSIM HF_MSDSAL HF_TCPRST HF_TMUDFORD HF_YOUNG HF_REBLAY
|
||||
STANDALONE_MODES_REQ_BT := HF_REBLAY
|
||||
STANDALONE_MODES_REQ_SMARTCARD :=
|
||||
STANDALONE_MODES_REQ_FLASH := LF_HIDFCBRUTE LF_ICEHID LF_NEXID LF_THAREXDE HF_14ASNIFF HF_BOG HF_COLIN HF_ICECLASS HF_MFCSIM
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// RayCN, 2021
|
||||
// Ray Lee, 2021
|
||||
//
|
||||
// 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
|
||||
|
@ -30,7 +30,7 @@
|
|||
* It requires RDV4 hardware (for flash and battery).
|
||||
*
|
||||
* On entering stand-alone mode, this module will start simulating.
|
||||
* Data is read from bin dump file uploaded to flash memory (hf_mfcsim_dump_1.bin).
|
||||
* Data is read from bin dump file uploaded to flash memory (hf_mfcsim_dump.bin).
|
||||
* Only support mifare classic 1k
|
||||
*
|
||||
* LEDs:
|
||||
|
@ -39,13 +39,13 @@
|
|||
* - LED C blinking: data transmiting
|
||||
*
|
||||
* To upload input file (eml format) to flash:
|
||||
* - mem spiffs upload -s <filename> -d hf_mfcsim_dump_1.bin
|
||||
* - mem spiffs upload -s <filename> -d hf_mfcsim_dump.bin
|
||||
* To delete the input file from flash:
|
||||
* - mem spiffs remove -f hf_mfcsim_dump_1.bin
|
||||
* - mem spiffs remove -f hf_mfcsim_dump.bin
|
||||
*
|
||||
*/
|
||||
|
||||
#define HF_MFCSIM_INPUTFILE_SIM "hf_mfcsim_dump_1.bin"
|
||||
#define HF_MFCSIM_INPUTFILE_SIM "hf_mfcsim_dump.bin"
|
||||
#define DUMP_SIZE 1024
|
||||
|
||||
static uint8_t uid[10];
|
||||
|
|
|
@ -97,12 +97,12 @@ Here are the supported values you can assign to `STANDALONE` in `Makefile.platfo
|
|||
| HF_ICECLASS | iCLASS 4-1 mode sim/read & dump/loclass/glitch & config to flashmem - Iceman1001
|
||||
| HF_LEGIC | HF Legic Prime standalone - uhei
|
||||
| HF_MATTYRUN | Mifare sniff/clone - Matías A. Ré Medina
|
||||
| HF_MFCSIM | Simulate Mifare Classic 1k card storing in flashmem - Ray Lee
|
||||
| HF_MSDSAL (def)| EMV Read and emulation - Salvador Mendoza
|
||||
| HF_REBLAY | 14A relay over BT - Salvador Mendoza
|
||||
| HF_TCPRST | IKEA Rothult ST25TA, Standalone Master Key Dump/Emulation - Nick Draffen
|
||||
| HF_TMUDFORD | Read and emulate ISO15693 card UID - Tim Mudford
|
||||
| HF_YOUNG | Mifare sniff/simulation - Craig Young
|
||||
| HF_MFCSIM | Mifare Classic simulation - Ray Lee
|
||||
|
||||
By default `STANDALONE=HF_MSDSAL`.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue