├── .github └── workflows │ └── go.yml ├── LICENSE ├── README.md ├── cmd ├── root.go └── scan.go ├── go.mod ├── go.sum ├── lib ├── options.go └── processor.go ├── main.go └── urls.txt /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/cmd/scan.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/go.sum -------------------------------------------------------------------------------- /lib/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/lib/options.go -------------------------------------------------------------------------------- /lib/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/lib/processor.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracturelabs/go-scan-spring/HEAD/main.go -------------------------------------------------------------------------------- /urls.txt: -------------------------------------------------------------------------------- 1 | http://localhost:8080/spring4shell_victim/vulnerable 2 | --------------------------------------------------------------------------------