├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── internal ├── cert.go ├── handler.go └── handler_test.go └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/internal/cert.go -------------------------------------------------------------------------------- /internal/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/internal/handler.go -------------------------------------------------------------------------------- /internal/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/internal/handler_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostsecurityarchive/waf-btk/HEAD/main.go --------------------------------------------------------------------------------