Proxmark3GUI/README.md

99 lines
3.4 KiB
Markdown
Raw Normal View History

2020-04-06 23:49:21 +08:00
# Proxmark3GUI
[![downloads](https://img.shields.io/github/downloads/wh201906/Proxmark3GUI/total?label=GitHub%20release%20downloads)](https://github.com/wh201906/Proxmark3GUI/releases)
[![downloads](https://img.shields.io/sourceforge/dt/proxmark3gui.svg?label=SourceForge%20downloads)](https://sourceforge.net/projects/proxmark3gui/)
2021-02-16 14:25:20 +08:00
2022-09-12 22:36:21 +08:00
A cross-platform GUI for [Proxmark3](https://github.com/Proxmark/proxmark3)/[Proxmark3 Iceman fork](https://github.com/RfidResearchGroup/proxmark3) client
(The [orignal Proxmark3 repo](https://github.com/Proxmark/proxmark3) has been unmaintained for a long time. I personally suggest using the [Proxmark3 Iceman fork](https://github.com/RfidResearchGroup/proxmark3))
2020-04-07 18:16:00 +08:00
2021-09-22 15:45:49 +08:00
[中文介绍](doc/README/README_zh_CN.md)
2020-04-29 20:49:23 +08:00
***
## Features
2020-08-07 23:51:24 +08:00
+ Easy to find available Serial Port
+ Support raw commands of Proxmark3 client(Official/Iceman)
2020-04-29 20:49:23 +08:00
+ Have a friendly UI to test Mifare cards
2020-08-07 23:51:24 +08:00
+ Support different card size(MINI, 1K, 2K, 4K)
2020-08-08 16:51:34 +08:00
+ Easy to edit Mifare block data
2020-08-08 11:23:17 +08:00
+ Easy to read all/selected blocks with well-designed read logic
2020-08-08 16:51:34 +08:00
+ Easy to write all/selected blocks
2020-08-07 23:51:24 +08:00
+ Support binary(.bin .dump) files and text(.eml) files
+ Analyze Access Bits
+ Support Chinese Magic Card
2021-02-23 20:40:55 +08:00
+ Have basic support for LF commands
2020-08-08 16:51:34 +08:00
+ Customize UI
+ ...
2020-04-29 20:49:23 +08:00
***
2020-08-08 16:51:34 +08:00
## Preview
2021-09-22 15:45:49 +08:00
![preview](doc/README/preview.png)
2020-04-29 20:49:23 +08:00
2021-09-22 15:45:49 +08:00
[more previews](doc/preview/previews.md)
2020-04-29 20:49:23 +08:00
2020-08-08 16:51:34 +08:00
***
## About Compiled Windows clients
2021-02-23 20:40:55 +08:00
A cool guy [Gator96100](https://github.com/Gator96100) creates [ProxSpace](https://github.com/Gator96100/ProxSpace) and makes it possible to compile both the firmware and the client on Windows.
2021-02-16 14:25:20 +08:00
Also, he makes the [pre-compiled Windows client](https://www.proxmarkbuilds.org/) so you can download it and run your PM3 client on Windows instantly.
2020-08-08 16:51:34 +08:00
I included his compiled client in my releases so you can use the GUI on the fly, and you can also use the GUI with your prefered client.
Great thanks to him.
2020-04-29 20:49:23 +08:00
2020-04-07 18:16:00 +08:00
***
## Download binaries for Windows
You can download pre-built Windows binaries in [release](https://github.com/wh201906/Proxmark3GUI/releases) page
`Vx.x.x-win64.7z` only contains the GUI
`Vx.x.x-win64-xxxxxxx.7z` contains the GUI and corresponding client. You just need to open `Vx.x.x-win64-xxxxxxx\GUI\Proxmark3GUI.exe`
You can also download them in SourceForge
[![Download Proxmark3GUI](https://a.fsdn.com/con/app/sf-download-button)](https://sourceforge.net/projects/proxmark3gui/files/latest/download)
2021-02-16 14:25:20 +08:00
## Build on Linux
```
cd ~
sudo apt-get update
sudo apt-get install git build-essential
sudo apt-get install qt5-default libqt5serialport5-dev
git clone https://github.com/wh201906/Proxmark3GUI.git --depth=1
cd Proxmark3GUI
mkdir build && cd build
qmake ../src
make -j4 && make clean
./Proxmark3GUI
```
2021-02-16 14:25:20 +08:00
2022-07-14 08:46:29 +08:00
## Build on macOS
```
cd ~
brew update
brew install qt@5
brew link qt5 --force
git clone https://github.com/wh201906/Proxmark3GUI.git --depth=1
cd Proxmark3GUI
mkdir build && cd build
qmake ../src
make -j4 && make clean
open Proxmark3GUI.app
```
2022-07-14 08:46:29 +08:00
> In order for the GUI to connect to the device in macOS, you'd need to tweak the settings a little bit
![macOS_settings](doc/README/macOS_settings.png)
2021-02-16 14:25:20 +08:00
***
2023-06-04 18:41:30 +08:00
2021-09-22 15:45:49 +08:00
## Tutorial
[1.Quickstart](doc/tutorial/Quickstart/quickstart.md)
2023-06-04 18:41:30 +08:00
[2.Work with ProxSpace](doc/tutorial/Work_With_ProxSpace/work_with_proxspace.md)
[3.Edit Mifare Classic data](doc/tutorial/Edit_Mifare_Classic_data/Edit_Mifare_Classic_data.md)(Proxmark3 hardware is not necessary)
2021-09-22 15:45:49 +08:00
***
2021-02-16 14:25:20 +08:00
2022-03-13 20:36:50 +08:00
## Change Log
[Change Log](CHANGELOG.md)