Updated Standalone mode (markdown)

Iceman 2019-06-17 08:56:01 +02:00
parent 68feb4d4e5
commit 19727136a2

@ -1,8 +1,38 @@
# Introduction
The most curious concept of Proxmark3 is the standalone mode functionalities.
With a battery power option, your device can enter custom standalone function. This means no need for the full Proxmark3 client. The standalone mode is usually limited to a certain function, like the developer wanted it.
This also means the user interaction with the device is limited to 4 leds (A,B,C,D) and button presses.
Usually the button press is short, long or multiple (twice). All standalone modes uses this differently and is hard to find out what is what.
This also means the user interaction with the device is
| LEDS | BUTTONPRESS |
|------------------|-------------------------- |
| 4 leds (A,B,C,D) | short, long or multiple (twice) |
All standalone modes uses this differently and is hard to find out what is what.
You can implement your own mode or you can use others already implemented modes.
For any iceman based repo the current most popular public standalone modes is quite easy to compile and install.
In this repo its even easier than before. The default standalone mode is LF_SAMYRUN, which gives READ/SIM of LF HID26 tags.
## Built in support
The following standalone modes is built in this repo.
| STANDALONE | DESCRIPTION | AUTHOR |
|------------------ |-------------------------------------------------------- |------------------------------------ |
| LF_SAMYRUN (def) | HID26 read/clone/sim | Samy Kamkar |
| LF_ICERUN | standalone mode skeleton | iceman |
| LF_PROXBRUTE | HID ProxII bruteforce | Brad Antoniewicz |
| LF_HIDBRUTE | HID corporate 1000 bruteforce | Federico dotta & Maurizio Agazzini |
| HF_YOUNG | Mifare sniff/simulation | Craig Young |
| HF_MATTYRUN | Mifare sniff/clone | Matías A. Ré Medina |
| HF_COLIN | Mifare ultra fast sniff/sim/clone | Colin Brigato |
| HF_BOG | 14a sniff with ULC/ULEV1/NTAG auth storing in flashmem | Bogito |
## Documentation
Some community efforts has been done to document these.
Hacker warehouse did a nice [video on youtube](https://www.youtube.com/watch?v=W22juSqhJSA).
@ -13,12 +43,6 @@ A forum user [detailed some modes](http://www.proxmark.org/forum/viewtopic.php?p
The user Tinker wrote a [blogpost about badge cloning by Tinker](https://www.tinker.sh/badge-cloning-clone-hid-prox-with-proxmark3-rvd4/).
You can implement your own mode or you can use others already implemented modes.
For any iceman based repo the current most popular public standalone modes is quite easy to compile and install.
In this repo its even easier than before. The default standalone mode is LF_SAMYRUN, which gives READ/SIM of LF HID26 tags.
## Development
If you want to write and implement your own standalone mode, the best starting point is to read and understand the [readme document found here](https://github.com/RfidResearchGroup/proxmark3/tree/master/armsrc/Standalone/readme.md).