2021-12-31 18:42:15 +08:00
|
|
|
<a id="Top"></a>
|
|
|
|
|
2021-12-31 23:13:49 +08:00
|
|
|
# 1. Validating Proxmark3 client functionality
|
2021-12-31 18:42:15 +08:00
|
|
|
|
|
|
|
# Table of Contents
|
2021-12-31 23:13:49 +08:00
|
|
|
- [1. Validating Proxmark3 client functionality](#1-validating-proxmark3-client-functionality)
|
2021-12-31 18:42:15 +08:00
|
|
|
- [Table of Contents](#table-of-contents)
|
|
|
|
- [To get interactive help](#to-get-interactive-help)
|
|
|
|
- [First tests](#first-tests)
|
|
|
|
- [To quit the client](#to-quit-the-client)
|
|
|
|
- [Next steps](#next-steps)
|
|
|
|
|
|
|
|
|
2019-04-08 06:38:00 +08:00
|
|
|
|
|
|
|
If all went well you should get some information about the firmware and memory usage as well as the prompt, something like this.
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
```
|
2023-02-09 06:17:19 +08:00
|
|
|
[=] Session log /home/iceman/.proxmark3/logs/log_20230208.txt
|
2020-05-22 04:23:12 +08:00
|
|
|
[+] loaded from JSON file /home/iceman/.proxmark3/preferences.json
|
2021-07-10 01:15:37 +08:00
|
|
|
[=] Using UART port /dev/ttyS3
|
2020-05-22 04:23:12 +08:00
|
|
|
[=] Communicating with PM3 over USB-CDC
|
2019-05-06 01:53:58 +08:00
|
|
|
|
2020-05-22 04:23:12 +08:00
|
|
|
|
2022-02-13 20:02:23 +08:00
|
|
|
8888888b. 888b d888 .d8888b.
|
|
|
|
888 Y88b 8888b d8888 d88P Y88b
|
|
|
|
888 888 88888b.d88888 .d88P
|
|
|
|
888 d88P 888Y88888P888 8888"
|
|
|
|
8888888P" 888 Y888P 888 "Y8b.
|
|
|
|
888 888 Y8P 888 888 888
|
|
|
|
888 888 " 888 Y88b d88P
|
2023-02-09 06:17:19 +08:00
|
|
|
888 888 888 "Y8888P" [ ☕ ]
|
2019-05-06 01:53:58 +08:00
|
|
|
|
2022-02-12 19:06:27 +08:00
|
|
|
|
|
|
|
[ Proxmark3 RFID instrument ]
|
2019-05-06 01:53:58 +08:00
|
|
|
|
2023-02-09 06:17:19 +08:00
|
|
|
MCU....... AT91SAM7S512 Rev A
|
|
|
|
Memory.... 512 Kb ( 66% used )
|
2019-05-06 01:53:58 +08:00
|
|
|
|
2023-02-09 06:17:19 +08:00
|
|
|
Client.... Iceman/master/v4.16191 2023-02-08 22:54:30
|
|
|
|
Bootrom... Iceman/master/v4.16191 2023-02-08 22:54:26
|
|
|
|
OS........ Iceman/master/v4.16191 2023-02-08 22:54:27
|
|
|
|
Target.... RDV4
|
|
|
|
|
2022-02-12 19:06:27 +08:00
|
|
|
[usb] pm3 -->
|
2019-05-06 01:53:58 +08:00
|
|
|
```
|
|
|
|
|
2020-05-22 04:28:01 +08:00
|
|
|
This `[usb] pm3 --> ` is the Proxmark3 interactive prompt.
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
### To get interactive help
|
2021-12-31 18:42:15 +08:00
|
|
|
^[Top](#top)
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
For basic help type `help`. Or for help on a set of sub commands type the command followed by `help`. For example `hf mf help`.
|
2022-03-20 16:54:39 +08:00
|
|
|
All commands now implement `-h` or `--help` parameter to give basic instructions on how to use the command.
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
### First tests
|
2021-12-31 18:42:15 +08:00
|
|
|
^[Top](#top)
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
These commands will return some info about your Proxmark software and hardware status.
|
|
|
|
```
|
2020-05-22 04:28:01 +08:00
|
|
|
[usb] pm3 --> hw status
|
|
|
|
[usb] pm3 --> hw version
|
|
|
|
[usb] pm3 --> hw tune
|
2019-05-06 01:53:58 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
You are now ready to use your newly flashed proxmark3 device. Many commands uses the `h` parameter to show a help text.
|
|
|
|
|
|
|
|
### To quit the client
|
2021-12-31 18:42:15 +08:00
|
|
|
^[Top](#top)
|
|
|
|
|
2019-05-06 01:53:58 +08:00
|
|
|
```
|
2020-05-22 04:28:01 +08:00
|
|
|
[usb] pm3 --> quit
|
2019-05-06 01:53:58 +08:00
|
|
|
```
|
2022-02-12 19:13:55 +08:00
|
|
|
or simple press `CTRL-D` on an empty line.
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
## Next steps
|
2021-12-31 18:42:15 +08:00
|
|
|
^[Top](#top)
|
2019-05-06 01:53:58 +08:00
|
|
|
|
|
|
|
Some configuration steps are still needed.
|
|
|
|
|
|
|
|
For the next steps, please read the following pages:
|
|
|
|
|
|
|
|
* [First Use and Verification](/doc/md/Use_of_Proxmark/2_Configuration-and-Verification.md)
|
2019-05-06 02:05:02 +08:00
|
|
|
* [Commands & Features](/doc/md/Use_of_Proxmark/3_Commands-and-Features.md)
|
2019-05-06 01:53:58 +08:00
|
|
|
|