├── .github └── workflows │ ├── codeql.yml │ └── release.yml ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── html │ ├── captcha.html │ ├── error.html │ └── login.html └── server │ ├── server.crt │ └── server.key ├── core ├── api │ ├── api.go │ └── structs.go ├── config │ ├── generate.go │ ├── init.go │ └── structs.go ├── domains │ ├── domain.go │ └── util.go ├── firewall │ ├── eval.go │ ├── filter.go │ ├── fingerprint.go │ ├── general.go │ └── requests.go ├── pnc │ └── panicHandler.go ├── proxy │ └── proxy.go ├── server │ ├── middleware.go │ ├── monitor.go │ └── serve.go └── utils │ ├── debug.go │ ├── discord.go │ ├── domain.go │ ├── encryption.go │ ├── image.go │ ├── ip.go │ └── text.go ├── examples └── config.json ├── global ├── fingerprints │ ├── bot_fingerprints.json │ ├── known_fingerprints.json │ └── malicious_fingerprints.json └── proxy │ └── version.json ├── go.mod ├── go.sum ├── main.go └── oryxBuildBinary /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/README.md -------------------------------------------------------------------------------- /assets/html/captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/assets/html/captcha.html -------------------------------------------------------------------------------- /assets/html/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/assets/html/error.html -------------------------------------------------------------------------------- /assets/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/assets/html/login.html -------------------------------------------------------------------------------- /assets/server/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/assets/server/server.crt -------------------------------------------------------------------------------- /assets/server/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/assets/server/server.key -------------------------------------------------------------------------------- /core/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/api/api.go -------------------------------------------------------------------------------- /core/api/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/api/structs.go -------------------------------------------------------------------------------- /core/config/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/config/generate.go -------------------------------------------------------------------------------- /core/config/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/config/init.go -------------------------------------------------------------------------------- /core/config/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/config/structs.go -------------------------------------------------------------------------------- /core/domains/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/domains/domain.go -------------------------------------------------------------------------------- /core/domains/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/domains/util.go -------------------------------------------------------------------------------- /core/firewall/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/firewall/eval.go -------------------------------------------------------------------------------- /core/firewall/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/firewall/filter.go -------------------------------------------------------------------------------- /core/firewall/fingerprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/firewall/fingerprint.go -------------------------------------------------------------------------------- /core/firewall/general.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/firewall/general.go -------------------------------------------------------------------------------- /core/firewall/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/firewall/requests.go -------------------------------------------------------------------------------- /core/pnc/panicHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/pnc/panicHandler.go -------------------------------------------------------------------------------- /core/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/proxy/proxy.go -------------------------------------------------------------------------------- /core/server/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/server/middleware.go -------------------------------------------------------------------------------- /core/server/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/server/monitor.go -------------------------------------------------------------------------------- /core/server/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/server/serve.go -------------------------------------------------------------------------------- /core/utils/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/debug.go -------------------------------------------------------------------------------- /core/utils/discord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/discord.go -------------------------------------------------------------------------------- /core/utils/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/domain.go -------------------------------------------------------------------------------- /core/utils/encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/encryption.go -------------------------------------------------------------------------------- /core/utils/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/image.go -------------------------------------------------------------------------------- /core/utils/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/ip.go -------------------------------------------------------------------------------- /core/utils/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/core/utils/text.go -------------------------------------------------------------------------------- /examples/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/examples/config.json -------------------------------------------------------------------------------- /global/fingerprints/bot_fingerprints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/global/fingerprints/bot_fingerprints.json -------------------------------------------------------------------------------- /global/fingerprints/known_fingerprints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/global/fingerprints/known_fingerprints.json -------------------------------------------------------------------------------- /global/fingerprints/malicious_fingerprints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/global/fingerprints/malicious_fingerprints.json -------------------------------------------------------------------------------- /global/proxy/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/global/proxy/version.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/main.go -------------------------------------------------------------------------------- /oryxBuildBinary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/41Baloo/balooProxy/HEAD/oryxBuildBinary --------------------------------------------------------------------------------