├── .gitignore ├── 1715138459905_temp_qrcode_share_9993.png ├── README.md ├── bin_deps ├── comwechatrobot │ ├── README.md │ ├── http │ │ ├── SWeChatRobot.dll │ │ ├── wxDriver.dll │ │ ├── wxDriver.lib │ │ ├── wxDriver.py │ │ ├── wxDriver64.dll │ │ └── wxDriver64.lib │ ├── inject-dll │ ├── inject-monitor │ └── wxDriver.exe ├── wechat-bot │ ├── README.md │ ├── funtool_wx=3.9.2.23.exe │ ├── inject-dll │ └── inject-monitor └── wxhelper │ ├── README.md │ └── wxhelper.dll ├── docker-compose.yaml ├── docker-compose ├── comwechatrobot │ └── docker-compose.yaml ├── wechat-bot │ └── docker-compose.yaml └── wxhelper │ └── docker-compose.yaml ├── forward ├── forward-monitor ├── http-forward └── inj-entrypoint.sh ├── go-wxDriver ├── README ├── build.sh ├── go.mod ├── go.sum ├── main.go └── test.go ├── screenshot └── screenshot.jpg └── vnc ├── index.html ├── inj-entrypoint.sh ├── websockify.conf └── x11vnc.conf /.gitignore: -------------------------------------------------------------------------------- 1 | wxDriver.exe 2 | -------------------------------------------------------------------------------- /1715138459905_temp_qrcode_share_9993.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/1715138459905_temp_qrcode_share_9993.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/README.md -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/README.md -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/http/SWeChatRobot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/http/SWeChatRobot.dll -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/http/wxDriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/http/wxDriver.dll -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/http/wxDriver.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/http/wxDriver.lib -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/http/wxDriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/http/wxDriver.py -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/http/wxDriver64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/http/wxDriver64.dll -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/http/wxDriver64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/http/wxDriver64.lib -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/inject-dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/inject-dll -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/inject-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/inject-monitor -------------------------------------------------------------------------------- /bin_deps/comwechatrobot/wxDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/comwechatrobot/wxDriver.exe -------------------------------------------------------------------------------- /bin_deps/wechat-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/wechat-bot/README.md -------------------------------------------------------------------------------- /bin_deps/wechat-bot/funtool_wx=3.9.2.23.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/wechat-bot/funtool_wx=3.9.2.23.exe -------------------------------------------------------------------------------- /bin_deps/wechat-bot/inject-dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/wechat-bot/inject-dll -------------------------------------------------------------------------------- /bin_deps/wechat-bot/inject-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/wechat-bot/inject-monitor -------------------------------------------------------------------------------- /bin_deps/wxhelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/wxhelper/README.md -------------------------------------------------------------------------------- /bin_deps/wxhelper/wxhelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/bin_deps/wxhelper/wxhelper.dll -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/comwechatrobot/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/docker-compose/comwechatrobot/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/wechat-bot/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/docker-compose/wechat-bot/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/wxhelper/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/docker-compose/wxhelper/docker-compose.yaml -------------------------------------------------------------------------------- /forward/forward-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/forward/forward-monitor -------------------------------------------------------------------------------- /forward/http-forward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/forward/http-forward -------------------------------------------------------------------------------- /forward/inj-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/forward/inj-entrypoint.sh -------------------------------------------------------------------------------- /go-wxDriver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/go-wxDriver/README -------------------------------------------------------------------------------- /go-wxDriver/build.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | 3 | CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -ldflags="-s -w" -o wxDriver.exe main.go -------------------------------------------------------------------------------- /go-wxDriver/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/go-wxDriver/go.mod -------------------------------------------------------------------------------- /go-wxDriver/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/go-wxDriver/go.sum -------------------------------------------------------------------------------- /go-wxDriver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/go-wxDriver/main.go -------------------------------------------------------------------------------- /go-wxDriver/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/go-wxDriver/test.go -------------------------------------------------------------------------------- /screenshot/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/screenshot/screenshot.jpg -------------------------------------------------------------------------------- /vnc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/vnc/index.html -------------------------------------------------------------------------------- /vnc/inj-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/vnc/inj-entrypoint.sh -------------------------------------------------------------------------------- /vnc/websockify.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/vnc/websockify.conf -------------------------------------------------------------------------------- /vnc/x11vnc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayue2019/wechat-service-allin/HEAD/vnc/x11vnc.conf --------------------------------------------------------------------------------