Skip to content

Commit b8c4e8e

Browse files
committed
V0.1.4
1 parent 4f10e3d commit b8c4e8e

File tree

6 files changed

+63
-23
lines changed

6 files changed

+63
-23
lines changed

Proxmark3GUI.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ qnx: target.path = /tmp/$${TARGET}/bin
5454
else: unix:!android: target.path = /opt/$${TARGET}/bin
5555
!isEmpty(target.path): INSTALLS += target
5656

57-
VERSION = 0.1.3
57+
VERSION = 0.1.4
5858
QMAKE_TARGET_PRODUCT = "Proxmark3GUI"
5959
QMAKE_TARGET_DESCRIPTION = "Proxmark3GUI"
6060
QMAKE_TARGET_COMPANY = "wh201906"

README.md

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Proxmark3GUI
2-
A GUI for [Proxmark3](https://github.com/Proxmark/proxmark3) client
2+
![downloads](https://img.shields.io/github/downloads/wh201906/Proxmark3GUI/total)
3+
4+
A cross-platform GUI for [Proxmark3](https://github.com/Proxmark/proxmark3) client
35

46
[中文](README/doc/README_zh_CN.md)
57

@@ -32,25 +34,46 @@ A GUI for [Proxmark3](https://github.com/Proxmark/proxmark3) client
3234
## About Iceman fork/repo
3335

3436
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.
35-
This GUI was designed for only official repo at first, but I'm trying to make it compatible with Iceman repo.
36-
37-
Supported functions when using Iceman client:
38-
39-
[supported functions](README/doc/supported_Iceman.md)
37+
This GUI is compatible with Iceman/RRG repo(tested on v4.9237)
4038

4139
***
4240

4341
## About Compiled Windows clients
4442

4543
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 client on Windows.
46-
Also, he makes the [pre-compiled Windows client](http://www.proxmark.org/forum/viewtopic.php?id=3975) so you can download it and run your PM3 client on Windows instantly.
44+
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.
4745
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.
4846
Great thanks to him.
4947

5048
***
5149

50+
## Build on Linux
51+
52+
cd ~
53+
git clone https://github.com/wh201906/Proxmark3GUI.git
54+
cd Proxmark3GUI
55+
mkdir build
56+
cd build
57+
qmake ../
58+
make
59+
make clean
60+
cp -r ../lang ./
61+
./Proxmark3GUI
62+
63+
***
64+
5265
## Update Log:
5366

67+
### V0.1.4
68+
+ Optimize performance
69+
+ Optimize UI
70+
+ Search available ports automatically
71+
+ Add High-DPI support
72+
+ Support configuring environment variables by script
73+
(Useful when the client requires specific environment variables)
74+
+ All functions are compatible with Iceman/RRG repo(tested on v4.9237)
75+
+ Fix some bugs
76+
5477
### V0.1.3
5578
+ Fix Trailer Decoder
5679
+ Add feedback when writing selected blocks

README/doc/README_zh_CN.md

Lines changed: 32 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Proxmark3GUI
2-
一个自制的[Proxmark3](https://github.com/Proxmark/proxmark3) GUI
2+
![downloads](https://img.shields.io/github/downloads/wh201906/Proxmark3GUI/total)
3+
4+
一个自制的[Proxmark3](https://github.com/Proxmark/proxmark3) GUI,可在Windows/Linux系统下运行
35

46
[English](../../README.md)
57

@@ -30,23 +32,47 @@
3032
***
3133

3234
## 关于冰人版
33-
这个GUI一开始是针对官方版本做的,现在正在尽力让它兼容冰人版的功能
34-
(没钱买RDV4也没钱买两台PM3,测一次冰人就要烧一次固件 qwq)
35+
[冰人版](https://github.com/RfidResearchGroup/proxmark3)(Iceman/RRG)的客户端和固件更新更为激进,相比官方版具有更多的功能
36+
此GUI所有功能均兼容冰人版(在v4.9237上测试通过)
3537

36-
[已支持功能](../doc/supported_Iceman.md)
3738
***
3839

3940
## 关于预编译Windows客户端
4041

41-
一个国外大佬 [Gator96100](https://github.com/Gator96100) 做了个 [ProxSpace](https://github.com/Gator96100/ProxSpace) 以便在Windows平台上编译PM3固件和客户端,他还把自己编译好的客户端放到了[论坛](http://www.proxmark.org/forum/viewtopic.php?id=3975)里面
42-
文件都是放到Google Drive上面的,国内网络无法访问,所以我在release版本里面放了个带预编译客户端版本的GUI。这个GUI也可以搭配你自己的客户端使用
42+
一位国外大佬 [Gator96100](https://github.com/Gator96100) 做了个 [ProxSpace](https://github.com/Gator96100/ProxSpace) 以便在Windows平台上编译PM3固件和客户端,他还把自己编译好的客户端放到了[网站](https://www.proxmarkbuilds.org/)
43+
release页面中有含客户端的GUI。这个GUI也可以搭配你自己的客户端使用
4344
(本来打算在CSDN下载里面放几个最新版客户端的,结果不能把下载币改为0)
4445
感谢大佬
4546

4647
***
4748

49+
## 在Linux系统下编译
50+
51+
cd ~
52+
git clone https://github.com/wh201906/Proxmark3GUI.git
53+
cd Proxmark3GUI
54+
mkdir build
55+
cd build
56+
qmake ../
57+
make
58+
make clean
59+
cp -r ../lang ./
60+
./Proxmark3GUI
61+
62+
***
63+
4864
## 更新日志:
4965

66+
### V0.1.4
67+
+ 优化性能
68+
+ 优化用户界面
69+
+ 自动搜索可用端口
70+
+ 支持高分屏
71+
+ 可通过外部脚本配置环境变量
72+
(在客户端需要配置环境变量时很有用)
73+
+ 全功能兼容冰人版(在v4.9237上测试通过)
74+
+ 修复部分bug
75+
5076
### V0.1.3
5177
+ 修复访问控制位解码器
5278
+ 写多个块时显示写入结果

README/doc/supported_Iceman.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

README/img/preview.png

-5.01 KB
Loading

README/img/preview_zh_CN.png

-3.72 KB
Loading

0 commit comments

Comments
 (0)