├── .github └── workflows │ └── gorelease.yml ├── .gitignore ├── .gitmodules ├── .goreleaser.yml ├── LICENSE ├── README.md ├── cmd └── cmd.go ├── config.yaml ├── core ├── baseline │ └── baseline.go ├── config.go ├── finger.go ├── format.go ├── ihttp │ ├── client.go │ ├── request.go │ └── response.go ├── option.go ├── pool │ ├── brutepool.go │ ├── checkpool.go │ ├── config.go │ ├── pool.go │ └── type.go ├── runner.go ├── task.go └── types.go ├── go.mod ├── go.sum ├── pkg ├── bar.go ├── errors.go ├── fingers.go ├── load.go ├── parse.go ├── statistor.go ├── templates.go └── utils.go └── spray.go /.github/workflows/gorelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/.github/workflows/gorelease.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/.gitmodules -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/README.md -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/config.yaml -------------------------------------------------------------------------------- /core/baseline/baseline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/baseline/baseline.go -------------------------------------------------------------------------------- /core/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/config.go -------------------------------------------------------------------------------- /core/finger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/finger.go -------------------------------------------------------------------------------- /core/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/format.go -------------------------------------------------------------------------------- /core/ihttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/ihttp/client.go -------------------------------------------------------------------------------- /core/ihttp/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/ihttp/request.go -------------------------------------------------------------------------------- /core/ihttp/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/ihttp/response.go -------------------------------------------------------------------------------- /core/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/option.go -------------------------------------------------------------------------------- /core/pool/brutepool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/pool/brutepool.go -------------------------------------------------------------------------------- /core/pool/checkpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/pool/checkpool.go -------------------------------------------------------------------------------- /core/pool/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/pool/config.go -------------------------------------------------------------------------------- /core/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/pool/pool.go -------------------------------------------------------------------------------- /core/pool/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/pool/type.go -------------------------------------------------------------------------------- /core/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/runner.go -------------------------------------------------------------------------------- /core/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/task.go -------------------------------------------------------------------------------- /core/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/core/types.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/bar.go -------------------------------------------------------------------------------- /pkg/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/errors.go -------------------------------------------------------------------------------- /pkg/fingers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/fingers.go -------------------------------------------------------------------------------- /pkg/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/load.go -------------------------------------------------------------------------------- /pkg/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/parse.go -------------------------------------------------------------------------------- /pkg/statistor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/statistor.go -------------------------------------------------------------------------------- /pkg/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/templates.go -------------------------------------------------------------------------------- /pkg/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/pkg/utils.go -------------------------------------------------------------------------------- /spray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainreactors/spray/HEAD/spray.go --------------------------------------------------------------------------------