├── .github └── workflows │ └── go.yml ├── README.md ├── cmd └── l9fuzz │ └── main.go ├── fuzzer.go ├── fuzzer_options.go ├── fuzzer_test.go ├── fuzzers.go ├── go.mod ├── go.sum ├── http.go ├── http_server.go ├── ldap_server.go ├── payloads.go ├── scanner.go ├── templates ├── payloads │ ├── log4j214.txt │ ├── log4j215.txt │ └── php.txt └── requests │ ├── http-custom-payload.txt │ ├── http.txt │ ├── simple.txt │ └── smtp.txt ├── tests └── payload_test.txt ├── translator.go └── translator_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/README.md -------------------------------------------------------------------------------- /cmd/l9fuzz/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/cmd/l9fuzz/main.go -------------------------------------------------------------------------------- /fuzzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/fuzzer.go -------------------------------------------------------------------------------- /fuzzer_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/fuzzer_options.go -------------------------------------------------------------------------------- /fuzzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/fuzzer_test.go -------------------------------------------------------------------------------- /fuzzers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/fuzzers.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/go.sum -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/http.go -------------------------------------------------------------------------------- /http_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/http_server.go -------------------------------------------------------------------------------- /ldap_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/ldap_server.go -------------------------------------------------------------------------------- /payloads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/payloads.go -------------------------------------------------------------------------------- /scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/scanner.go -------------------------------------------------------------------------------- /templates/payloads/log4j214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/templates/payloads/log4j214.txt -------------------------------------------------------------------------------- /templates/payloads/log4j215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/templates/payloads/log4j215.txt -------------------------------------------------------------------------------- /templates/payloads/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/templates/payloads/php.txt -------------------------------------------------------------------------------- /templates/requests/http-custom-payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/templates/requests/http-custom-payload.txt -------------------------------------------------------------------------------- /templates/requests/http.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/templates/requests/http.txt -------------------------------------------------------------------------------- /templates/requests/simple.txt: -------------------------------------------------------------------------------- 1 | {{ .Fuzzer.PayloadJNDILog4J .Url.String "TCP" }} -------------------------------------------------------------------------------- /templates/requests/smtp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/templates/requests/smtp.txt -------------------------------------------------------------------------------- /tests/payload_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/tests/payload_test.txt -------------------------------------------------------------------------------- /translator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/translator.go -------------------------------------------------------------------------------- /translator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeakIX/l9fuzz/HEAD/translator_test.go --------------------------------------------------------------------------------