├── .gitignore ├── LICENSE ├── README.md ├── README.zh-CN.md ├── config.yaml ├── entry ├── cmd │ └── cmd.go └── server │ └── server.go ├── go.mod ├── go.sum ├── img.png ├── main-ui.go ├── main.go ├── makefile-all-platform.bat ├── makefile.bat ├── module ├── httpproxy │ └── proxy.go ├── httpserver │ ├── server.go │ ├── shell.go │ └── ssh.go ├── tcproxy │ └── tcp.go └── udproxy │ └── udp.go ├── support ├── api │ └── results │ │ └── result.go ├── bean │ └── bean.go └── config │ ├── config.go │ └── global.go └── wintun.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/config.yaml -------------------------------------------------------------------------------- /entry/cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/entry/cmd/cmd.go -------------------------------------------------------------------------------- /entry/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/entry/server/server.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/go.sum -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/img.png -------------------------------------------------------------------------------- /main-ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/main-ui.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/main.go -------------------------------------------------------------------------------- /makefile-all-platform.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/makefile-all-platform.bat -------------------------------------------------------------------------------- /makefile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/makefile.bat -------------------------------------------------------------------------------- /module/httpproxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/module/httpproxy/proxy.go -------------------------------------------------------------------------------- /module/httpserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/module/httpserver/server.go -------------------------------------------------------------------------------- /module/httpserver/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/module/httpserver/shell.go -------------------------------------------------------------------------------- /module/httpserver/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/module/httpserver/ssh.go -------------------------------------------------------------------------------- /module/tcproxy/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/module/tcproxy/tcp.go -------------------------------------------------------------------------------- /module/udproxy/udp.go: -------------------------------------------------------------------------------- 1 | package udproxy 2 | -------------------------------------------------------------------------------- /support/api/results/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/support/api/results/result.go -------------------------------------------------------------------------------- /support/bean/bean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/support/bean/bean.go -------------------------------------------------------------------------------- /support/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/support/config/config.go -------------------------------------------------------------------------------- /support/config/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/support/config/global.go -------------------------------------------------------------------------------- /wintun.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrf16/anchor/HEAD/wintun.dll --------------------------------------------------------------------------------