You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Proxmark3GUI/README.md

104 lines
3.0 KiB
Markdown

5 years ago
# Proxmark3GUI
4 years ago
![downloads](https://img.shields.io/github/downloads/wh201906/Proxmark3GUI/total)
A cross-platform GUI for [Proxmark3](https://github.com/Proxmark/proxmark3) client
5 years ago
4 years ago
[中文介绍](README/doc/README_zh_CN.md)
4 years ago
***
## Features
+ Easy to find available Serial Port
+ Support raw commands of Proxmark3 client(Official/Iceman)
4 years ago
+ Have a friendly UI to test Mifare cards
+ Support different card size(MINI, 1K, 2K, 4K)
+ Easy to edit Mifare block data
4 years ago
+ Easy to read all/selected blocks with well-designed read logic
+ Easy to write all/selected blocks
+ Support binary(.bin .dump) files and text(.eml) files
+ Analyze Access Bits
+ Support Chinese Magic Card
4 years ago
+ Have basic support for LF commands
+ Customize UI
+ ...
4 years ago
***
## Preview
![preview](README/img/preview.png)
4 years ago
[more previews](README/doc/previews.md)
4 years ago
***
## About Iceman fork/repo
The [Iceman fork/repo](https://github.com/RfidResearchGroup/proxmark3) has more powerful functions like offline sniff. These guys even developed a new hardware called Proxmark3 RDV4 with smart card support. But the official repo and the Iceman repo is not fully compatible.
4 years ago
This GUI is compatible with Iceman/RRG repo(tested on v4.9237)
***
## About Compiled Windows clients
4 years ago
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.
4 years ago
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.
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.
4 years ago
5 years ago
***
4 years ago
## Build on Linux
cd ~
git clone https://github.com/wh201906/Proxmark3GUI.git
cd Proxmark3GUI
mkdir build
cd build
qmake ../
make
make clean
cp -r ../lang ./
./Proxmark3GUI
***
4 years ago
## Update Log:
4 years ago
### V0.2
+ Use Dock widget for more flexible layout
+ Support basic LF commands
+ Fix a bug in RawCommand tab
4 years ago
### V0.1.4
+ Optimize performance
+ Optimize UI
+ Search available ports automatically
+ Add High-DPI support
+ Support configuring environment variables by script
(Useful when the client requires specific environment variables)
+ All functions are compatible with Iceman/RRG repo(tested on v4.9237)
+ Support specifying client working directory
4 years ago
+ Fix some bugs
4 years ago
### V0.1.3
+ Fix Trailer Decoder
+ Add feedback when writing selected blocks
### V0.1.2
+ Optimize read logic
+ Make UI Customizable
+ Save client path automatically
4 years ago
+ Add Trailer Decoder(Deprecated, plz use V0.1.3 or higher version)
+ Support read/write selected blocks
+ Support a few Iceman functions
+ Fix some bugs
4 years ago
### V0.1.1
+ Complete Mifare module(support simulate and sniff)
4 years ago
### V0.1
+ Able to deal with Mifare card and related files
5 years ago
4 years ago
### V0.0.1
5 years ago
+ a dumb version with a useless GUI and a serial choose box.