proxmark3/doc/extensions_notes.md

21 lines
1.4 KiB
Markdown
Raw Normal View History

2019-09-05 17:29:32 +08:00
# Notes on file extensions
The Proxmark3 client uses a wide range of files. Here is a brief recap to get you up to speed.
2019-09-05 17:33:34 +08:00
| extension | description|
|---|---|
| .exe | windows executable |
2022-03-08 23:03:08 +08:00
| .bin | binary file, can be firmware or memory dump of a tag or keys dump of a tag|
| .eml | text file, with memory dump of a tag (deprecated) |
2019-09-23 22:40:48 +08:00
| .mfd | binary file, MIFARE file dump, name comes from NFC-Tools. Usually created with Mifare Classic Tool app (MCT) or NFC-Tools, contains memory dump of tag. Very similar to .bin file |
2019-09-05 17:33:34 +08:00
| .json | JSON file, usually settings file or it can also be a memory dump of a tag |
| .dic | dictionary file. textual, with keys/passwords one line / key |
| .elf | binary proxmark3 device firmware file. |
| .cmd | text file, contains proxmark3 client commands used to call client with -s |
| .lua | text file, contains lua script to be run inside client. or called with -l |
2019-12-22 19:47:57 +08:00
| .pm3 | text file, with numbers ranging 0-255 or -127 - 128. Contains trace signal data for low frequency tags (data load / data save) |
| .wav | binary file, PCM8 with samplerate 125000, one channel. (data save)
2020-09-29 23:25:20 +08:00
| .trace | binary file, contains trace log data usually from high frequency tags. (trace load) |
2019-09-23 22:40:48 +08:00
| .log | text file, our log file, contains the output from almost all commands you run inside Proxmark3 client |
2020-09-29 23:25:20 +08:00
| .history | text file, our command log file, contains the commands you ran inside Proxmark3 client |