├── .github ├── dependabot.yml └── workflows │ └── build-release.yaml ├── .gitignore ├── README.md ├── bepass ├── sni │ └── tls.go └── tlsfrag │ └── conn.go ├── go.mod ├── go.sum ├── main.go ├── test_QUIC_TLS13_UQUIC_Chrome_115_Default.go ├── test_TCP_TLS12_Default.go ├── test_TCP_TLS13_Default.go ├── test_TCP_TLS13_UTLS_ChromeAuto_Default.go ├── test_TCP_TLS13_UTLS_ChromeAuto_bepass_fragment.go ├── test_TCP_TLS_warp_plus_custom.go └── tests.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/.github/workflows/build-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/README.md -------------------------------------------------------------------------------- /bepass/sni/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/bepass/sni/tls.go -------------------------------------------------------------------------------- /bepass/tlsfrag/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/bepass/tlsfrag/conn.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/main.go -------------------------------------------------------------------------------- /test_QUIC_TLS13_UQUIC_Chrome_115_Default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/test_QUIC_TLS13_UQUIC_Chrome_115_Default.go -------------------------------------------------------------------------------- /test_TCP_TLS12_Default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/test_TCP_TLS12_Default.go -------------------------------------------------------------------------------- /test_TCP_TLS13_Default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/test_TCP_TLS13_Default.go -------------------------------------------------------------------------------- /test_TCP_TLS13_UTLS_ChromeAuto_Default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/test_TCP_TLS13_UTLS_ChromeAuto_Default.go -------------------------------------------------------------------------------- /test_TCP_TLS13_UTLS_ChromeAuto_bepass_fragment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/test_TCP_TLS13_UTLS_ChromeAuto_bepass_fragment.go -------------------------------------------------------------------------------- /test_TCP_TLS_warp_plus_custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/test_TCP_TLS_warp_plus_custom.go -------------------------------------------------------------------------------- /tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noql-net/heybabe/HEAD/tests.go --------------------------------------------------------------------------------