1 Star 0 Fork 6

supercoeus / GhostJ

forked from RockChin / GhostJ 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

GhostJ

说明

GhostJ实现了实时执行指令、截图、文件操作、鼠标键盘控制、操作监控等功能

  • 此项目架构较为复杂,可读性较差

声明

使用此类代码进行未经允许的远程控制属于违法行为,本项目及作者不向违法行为提供任何支持

联系方式

问题发至issue 讨论细节邮件至1010553892@qq.com或QQ联系

依赖

  • fastjson 阿里巴巴的json解析类库
  • RFT 自己开发的文件上传类库 可在主页找到开源仓库
  • RFTX2 自己开发的文件双向传输类库 可在主页找到开源仓库

分支

  • master 正在开发的主分支
  • classic 重构服务端之前的经典服务端代码

目录结构

  • src 源代码
  • libs 依赖库

项目结构

主要包

  • com.ghostj.client 客户端主程序,被控端
  • com.ghostj.master 主控端程序,javaSwing开发的可视化操作桌面程序
  • com.ghostj.server_old 服务端程序,处理客户端和主控端的连接、管理文件、转发消息等功能
  • com.ghostj.util 通用的类和方法

client

已使用策略模式重构

  • cmd 命令处理逻辑的model(独立出来的代码见 https://github.com/rockchinq/rcp)
  • conn 建立并管理客户端到服务端的连接
  • core 客户端的启动类,包含命令行执行线程类、控制命令解析类
  • func 所有客户端支持的控制指令,由Processor类解析控制指令并调用
  • util 客户端实用类

*注意:此处控制命令(指客户端收到的由主控端或服务端发出的控制指令)有别于命令行的命令(将被cmd.exe执行的指令)
事实上,客户端执行命令行指令的逻辑也被归类为一个控制指令

执行逻辑

被启动后,启动HandleConn线程,尝试建立与服务端的连接,堵塞接收指令解析并执行。
当检测到连接断开后,重新尝试连接

master

有待重构,目前可读性很低

  • conn 管理与服务端的连接
  • core 批处理类和模拟控制台的缓冲区
  • gui 管理所有界面
  • util 实用类

master界面

server

服务端代码有待重构,目前未使用设计模式来构建服务端代码。可读性很低 server启动 server命令

指令说明

GhostJ平台有两种级别的指令:Server级别、Client级别
Server级别的由单个半角惊叹号(!)开始,Client级别的由两个半角惊叹号(!!)开始

  • 可以直接在运行Server的控制台输入指令并回车执行
  • 或者在Master底端的文本框输入并回车执行
  • Master传到Server的指令无法识别的,将直接发到当前被聚焦的Client

Server级别

以下指令均运行于Server,实现代码详见server包的TransCmd类

!help

  • 输出指令列表
  • 使用此指令输出的命令列表不完整
  • 详见TransCmd.java

!list

  • 输出在线客户端列表

!echo <Message>

  • 输出Message
  • 所有在线Master均可见

!pw <NewPassword>

  • 修改Master连接Server的密码为NewPassword

!focus <Client>

  • 聚焦到指定客户端
  • Client为目标客户端的名称&+客户端编号
  • e.g. 聚焦到名称为test、编号为3的客户端:!focus test!focus tes!focus &3

!dfocus

  • 取消聚焦
  • 若是改变聚焦目标,可直接focus到新目标,无需dfocus目前目标

!test [TimeOut]

  • 测试所有客户端的在线状态
  • 并断开意外断连的客户端
  • TimeOut为客户端响应超时时间,毫秒,未指定时默认为200毫秒

!chname <Client> <NewName>

  • 修改客户端名称
  • Client指定客户端,修改其名称为NewName

!lstag

  • 列出所有已记录的TagLog名称
  • TagLog是用于记录客户端在线时间的功能

!rmtag <tagName>

  • 删除tag名称为tagName的所有在线时间记录

!lsmst

  • 列出所有当前在线Master的列表
  • 此消息所有Master可见

!rft <chdir|dir|task|stop> <params>

  • RFT是管理GhostJ平台中传输文件的指令
  • !rft chdir <NewPath>修改RFT接收的文件储存目录为NewPath
  • !rft dir输出当前RFT接收的文件储存目录
  • !rft task输出当前RFT正在接收的文件列表
  • !rft stop <TaskIndex>中断指定的传输任务

!jre <view|reg|tag|rmtag>

  • 管理免安装JRE登记表
  • 此登记表需结合安装器使用,见GhostPioneer项目

!note <Message>

  • 设置新note,在Master登录时会向Master发送此Message

!exit <-m|-a|-lv|ClientName>

  • 通知客户端退出并断开客户端连接
  • !exit -m退出名称相同的更靠后的客户端
  • !exit -a退出所有客户端
  • !exit -lv退出相同名称的客户端中版本较低的连接
  • !exit <ClientName>退出指定名称的客户端,此处名称必须为完整名称

!hst

  • !hst输出近期Server输出记录

!log <flush|len>

  • !log flush刷新日志缓冲区
  • !log len输出日志缓冲区大小及已占用大小

!all <Content>

  • 向所有客户端发送Content

!ban <add|ls> <params>

  • 封禁
  • !ban add <Address>封禁来自Address的所有连接
  • !ban ls列出所有封禁地址

!startup [rm|Content]

  • 操作客户端连接上Server时发送给Client的指令
  • !startup查看目前指令
  • !startup rm删除指令
  • !startup <Content>设置指令为Content

!stop

关闭服务端

Client级别

以下指令均运行于Client,其实现代码详见client包中的func包

!!audio [Length]

  • 录音并上传到Server
  • Length为录音时长毫秒,未指定时设置为5000

!!bat <reset|add|view|run> [params]

  • Client提供一个储存指令的缓存
  • !!batch reset清除缓存
  • !!batch add <Content>在缓存中追加一行内容
  • !!batch view输出缓存中所有指令
  • !!batch run逐行运行缓存中的指令

!!cfg <ls|write|set|rm> <params>

  • 管理客户端的配置文件,操作不当可能导致断连
  • !!cfg ls列出客户端所有配置字段
  • !!cfg write将运行时修改的配置字段写入配置文件
  • !!cfg set <Field> <Value>设置运行时中的配置字段FieldValue
  • !!cfg rm <Field>删除字段
  • set和rm之后需要执行write才能写入文件,否则重启客户端之后将丢失修改结果

!!exit <ClientName>

  • 退出客户端
  • ClientName必须为客户端完整名称

!!gget <URL> <SavePath> <SaveName>

  • http下载器
  • url的文件下载到目录SavePath,重命名为SaveName

!!help

  • 输出客户端指令帮助

!!info

  • 运行时信息

!!kmr <mouse|key> <params>

  • 控制鼠标和模拟键盘输入

!!proc <focus|ls|bg|new|disc> <params>

  • 管理客户端上启动的子进程
  • !!proc ls列出所有子进程
  • !!proc new [Name] [Command]新建名为Name的子进程并执行命令Command并聚焦到此子进程,若未设置命令则执行cmd
  • !!proc bg [Name] [Command]新建子进程并执行命令,但不聚焦到此子进程
  • !!proc focus <ProcessName>聚焦到名称以ProcessName开头的子进程,之后Client收到的来自Server的内容都将发送到Process中
  • !!proc disc <ProcessName>断连名称以ProcessName开头的子进程,此操作并不会停止目标子进程,且Client之后将无法操作此子进程

!!scr <params>

  • 屏幕截图并发送到Server
  • !!scr <FileName>全屏截图并储存到文件
  • !!scr <FileName> <ResolutionCompressRate>全屏截图并进行分辨率压缩(范围0.0-+∞)然后储存到文件
  • !!scr <FileName> <ResolutionCompressRate> <ColorCompressRate>全屏截图并进行分辨率压缩(范围0.0-+∞),进行颜色压缩(范围0.0-1.0),然后储存到文件
  • !!scr <FileName> <ResolutionCompressRate> <ColorCompresseRate> <Width> <Height> <XOnScreen> <YOnScreen> <ColorFormat>
    从屏幕坐标(x,y)为(XOnScreen,YOnScreen)的像素开始向右下角截图宽为Width长为Height的截图,并对图像的分辨率进行比率为ResolutionCompressRate(范围0.0-+∞)的压缩,
    对图像色彩进行比率为ColorCompressRate(范围0.0-1.0)的压缩,使用编码为ColorFormat的颜色格式编码到文件FileName
  • 每次截图之后都会自动上传到Server,除非命令第四个参数为nosend

!!rfe <dir|cd|upload|download|dsk|del> <params>

  • 为GhostJ设计的文件浏览指令,详见client包中func包中的FuncRFE.java

!!rft upload <FileOnClientHost> <TargetPathOnServerHost>

  • 使用文件传输库传输文件
  • 将客户端本地的FileOnClientHost文件上传到Server主机上相对于Server上RFT根目录的路径TargetPathOnServerHost
  • 设置Server上RFT的根目录参见!rft指令

!!reconn

  • 使该客户端断连并尝试重新连接Server

!!startup [set|rm]

  • 管理Client的启动任务,客户端将在每次启动时自动运行此任务
  • !!startup set <Content>设置启动任务为Content
  • !!startup rm删除启动任务
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

简介

使用java实现的远程控制核心服务 @see github.com/RockChinQ/GhostJ @see github.com/idoknow/GhostConsole 展开 收起
Java
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/supercoeus/GhostJ.git
git@gitee.com:supercoeus/GhostJ.git
supercoeus
GhostJ
GhostJ
master

搜索帮助