├── .idea ├── ZheTian.iml ├── misc.xml ├── modules.xml ├── shelf │ ├── Uncommitted_changes_before_Update_at_2021_8_26_17_02_[Changes] │ │ └── shelved.patch │ └── Uncommitted_changes_before_Update_at_2021_8_26_17_02__Changes_.xml ├── vcs.xml └── workspace.xml ├── LICENSE.txt ├── README.md ├── images ├── code.png ├── favicon.ico ├── group.png ├── logo.png ├── payload.jpg ├── run.png ├── v1.png ├── v2.png ├── v2xg.png ├── v3.png ├── wx.jpg └── wxgzh.jpg ├── v1 ├── ZheTian.go ├── ZheTian.manifest ├── ZheTian.syso ├── favicon.ico ├── go.mod ├── go.sum ├── readme.md └── server │ ├── cmd.go │ ├── loadFile.go │ ├── memoryInject.go │ ├── netUserAdd.go │ ├── temp.go │ └── utils.go ├── v2 ├── ZheTian.go ├── ZheTian.manifest ├── ZheTian.syso ├── core │ ├── core.go │ ├── temp32 │ ├── temp64 │ ├── tmp │ └── utils.go ├── favicon.ico ├── go.mod ├── go.sum └── readme.md └── v3 └── readme.md /.idea/ZheTian.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/ZheTian.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_2021_8_26_17_02_[Changes]/shelved.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/shelf/Uncommitted_changes_before_Update_at_2021_8_26_17_02_[Changes]/shelved.patch -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_2021_8_26_17_02__Changes_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/shelf/Uncommitted_changes_before_Update_at_2021_8_26_17_02__Changes_.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/README.md -------------------------------------------------------------------------------- /images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/code.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/group.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/payload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/payload.jpg -------------------------------------------------------------------------------- /images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/run.png -------------------------------------------------------------------------------- /images/v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/v1.png -------------------------------------------------------------------------------- /images/v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/v2.png -------------------------------------------------------------------------------- /images/v2xg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/v2xg.png -------------------------------------------------------------------------------- /images/v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/v3.png -------------------------------------------------------------------------------- /images/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/wx.jpg -------------------------------------------------------------------------------- /images/wxgzh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/images/wxgzh.jpg -------------------------------------------------------------------------------- /v1/ZheTian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/ZheTian.go -------------------------------------------------------------------------------- /v1/ZheTian.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/ZheTian.manifest -------------------------------------------------------------------------------- /v1/ZheTian.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/ZheTian.syso -------------------------------------------------------------------------------- /v1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/favicon.ico -------------------------------------------------------------------------------- /v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/go.mod -------------------------------------------------------------------------------- /v1/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/go.sum -------------------------------------------------------------------------------- /v1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/readme.md -------------------------------------------------------------------------------- /v1/server/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/server/cmd.go -------------------------------------------------------------------------------- /v1/server/loadFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/server/loadFile.go -------------------------------------------------------------------------------- /v1/server/memoryInject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/server/memoryInject.go -------------------------------------------------------------------------------- /v1/server/netUserAdd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/server/netUserAdd.go -------------------------------------------------------------------------------- /v1/server/temp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/server/temp.go -------------------------------------------------------------------------------- /v1/server/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v1/server/utils.go -------------------------------------------------------------------------------- /v2/ZheTian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/ZheTian.go -------------------------------------------------------------------------------- /v2/ZheTian.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/ZheTian.manifest -------------------------------------------------------------------------------- /v2/ZheTian.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/ZheTian.syso -------------------------------------------------------------------------------- /v2/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/core/core.go -------------------------------------------------------------------------------- /v2/core/temp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/core/temp32 -------------------------------------------------------------------------------- /v2/core/temp64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/core/temp64 -------------------------------------------------------------------------------- /v2/core/tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/core/tmp -------------------------------------------------------------------------------- /v2/core/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/core/utils.go -------------------------------------------------------------------------------- /v2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/favicon.ico -------------------------------------------------------------------------------- /v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/go.mod -------------------------------------------------------------------------------- /v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/go.sum -------------------------------------------------------------------------------- /v2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v2/readme.md -------------------------------------------------------------------------------- /v3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yqcs/ZheTian/HEAD/v3/readme.md --------------------------------------------------------------------------------