├── .gitignore ├── 1clk.sh ├── LICENSE ├── README.md ├── egressguy.go ├── go.mod ├── go.sum ├── http ├── http.go └── http2.go ├── main ├── main.go └── util.go ├── tcpconn.go ├── tcphandler.go └── util.go /.gitignore: -------------------------------------------------------------------------------- 1 | /egressguy 2 | /run.sh 3 | *.txt 4 | -------------------------------------------------------------------------------- /1clk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/1clk.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/README.md -------------------------------------------------------------------------------- /egressguy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/egressguy.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/go.sum -------------------------------------------------------------------------------- /http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/http/http.go -------------------------------------------------------------------------------- /http/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/http/http2.go -------------------------------------------------------------------------------- /main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/main/main.go -------------------------------------------------------------------------------- /main/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/main/util.go -------------------------------------------------------------------------------- /tcpconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/tcpconn.go -------------------------------------------------------------------------------- /tcphandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/tcphandler.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0r31337/EgressGuy/HEAD/util.go --------------------------------------------------------------------------------