├── .envrc ├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── harness_wrappers ├── harness_fuzz.go └── harness_test.go ├── harnesses ├── README.md ├── burntsushi-toml │ ├── go.mod │ ├── go.sum │ └── harness.go ├── caddy │ ├── go.mod │ ├── go.sum │ └── harness.go ├── path_constraint │ ├── go.mod │ └── harness.go └── promql │ ├── go.mod │ ├── go.sum │ └── harness.go ├── images └── performance.png ├── other_fuzzers ├── README.md ├── go_fuzz │ ├── README.md │ └── path_constraint │ │ ├── build.sh │ │ ├── fuzz.sh │ │ ├── get_cov.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── harness.go │ │ ├── harness_fuzz.go │ │ └── harness_test.go ├── go_fuzz_build │ ├── README.md │ ├── burntsushi-toml │ │ ├── build.sh │ │ ├── fuzz.sh │ │ ├── get_cov.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── harness.go │ │ ├── harness_fuzz.go │ │ └── harness_test.go │ ├── caddy │ │ ├── build.sh │ │ ├── fuzz.sh │ │ ├── get_cov.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── harness.go │ │ ├── harness_fuzz_test.go │ │ └── harness_test.go │ ├── path_constraint │ │ ├── build.sh │ │ ├── fuzz.sh │ │ ├── get_cov.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── harness.go │ │ ├── harness_fuzz_test.go │ │ └── harness_test.go │ └── prometheus │ │ ├── build.sh │ │ ├── fuzz.sh │ │ ├── get_cov.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── harness.go │ │ ├── harness_fuzz_test.go │ │ └── harness_test.go └── native_fuzzing │ ├── README.md │ ├── burntsushi-toml │ ├── fuzz.sh │ ├── get_cov.sh │ ├── go.mod │ ├── go.sum │ ├── harness.go │ └── harness_test.go │ ├── caddy │ ├── fuzz.sh │ ├── get_cov.sh │ ├── go.mod │ ├── go.sum │ ├── harness.go │ └── harness_test.go │ ├── path_constraint │ ├── fuzz.sh │ ├── get_cov.sh │ ├── go.mod │ ├── harness.go │ └── harness_test.go │ └── prometheus │ ├── fuzz.sh │ ├── get_cov.sh │ ├── go.mod │ ├── go.sum │ ├── harness.go │ └── harness_test.go ├── rust-toolchain.toml └── src └── main.rs /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/flake.nix -------------------------------------------------------------------------------- /harness_wrappers/harness_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harness_wrappers/harness_fuzz.go -------------------------------------------------------------------------------- /harness_wrappers/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harness_wrappers/harness_test.go -------------------------------------------------------------------------------- /harnesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/README.md -------------------------------------------------------------------------------- /harnesses/burntsushi-toml/go.mod: -------------------------------------------------------------------------------- 1 | module fuzz 2 | 3 | go 1.24.1 4 | 5 | require github.com/BurntSushi/toml v1.5.0 6 | -------------------------------------------------------------------------------- /harnesses/burntsushi-toml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/burntsushi-toml/go.sum -------------------------------------------------------------------------------- /harnesses/burntsushi-toml/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/burntsushi-toml/harness.go -------------------------------------------------------------------------------- /harnesses/caddy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/caddy/go.mod -------------------------------------------------------------------------------- /harnesses/caddy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/caddy/go.sum -------------------------------------------------------------------------------- /harnesses/caddy/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/caddy/harness.go -------------------------------------------------------------------------------- /harnesses/path_constraint/go.mod: -------------------------------------------------------------------------------- 1 | module fuzz 2 | 3 | go 1.24.1 4 | -------------------------------------------------------------------------------- /harnesses/path_constraint/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/path_constraint/harness.go -------------------------------------------------------------------------------- /harnesses/promql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/promql/go.mod -------------------------------------------------------------------------------- /harnesses/promql/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/promql/go.sum -------------------------------------------------------------------------------- /harnesses/promql/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/harnesses/promql/harness.go -------------------------------------------------------------------------------- /images/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/images/performance.png -------------------------------------------------------------------------------- /other_fuzzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/README.md -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/README.md -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go-fuzz-build -tags gofuzz 4 | -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/fuzz.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go-fuzz -procs 1 4 | -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/path_constraint/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/path_constraint/go.mod -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/path_constraint/go.sum -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/path_constraint/harness.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/harness_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/path_constraint/harness_fuzz.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz/path_constraint/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz/path_constraint/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/README.md -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/build.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/go.mod -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/go.sum -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/harness.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/harness_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/harness_fuzz.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/burntsushi-toml/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/burntsushi-toml/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/build.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/go.mod -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/go.sum -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/harness.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/harness_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/harness_fuzz_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/caddy/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/caddy/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/build.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/go.mod -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/go.sum -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/harness.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/harness_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/harness_fuzz_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/path_constraint/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/path_constraint/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/build.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/go.mod -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/go.sum -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/harness.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/harness_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/harness_fuzz_test.go -------------------------------------------------------------------------------- /other_fuzzers/go_fuzz_build/prometheus/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/go_fuzz_build/prometheus/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/README.md -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/burntsushi-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/burntsushi-toml/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/burntsushi-toml/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/burntsushi-toml/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/burntsushi-toml/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/burntsushi-toml/go.mod -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/burntsushi-toml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/burntsushi-toml/go.sum -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/burntsushi-toml/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/burntsushi-toml/harness.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/burntsushi-toml/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/burntsushi-toml/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/caddy/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/caddy/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/caddy/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/caddy/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/caddy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/caddy/go.mod -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/caddy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/caddy/go.sum -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/caddy/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/caddy/harness.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/caddy/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/caddy/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/path_constraint/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/path_constraint/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/path_constraint/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/path_constraint/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/path_constraint/go.mod: -------------------------------------------------------------------------------- 1 | module srlabs.de/harness 2 | 3 | go 1.24.1 4 | -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/path_constraint/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/path_constraint/harness.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/path_constraint/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/path_constraint/harness_test.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/prometheus/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/prometheus/fuzz.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/prometheus/get_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/prometheus/get_cov.sh -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/prometheus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/prometheus/go.mod -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/prometheus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/prometheus/go.sum -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/prometheus/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/prometheus/harness.go -------------------------------------------------------------------------------- /other_fuzzers/native_fuzzing/prometheus/harness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/other_fuzzers/native_fuzzing/prometheus/harness_test.go -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/golibafl/HEAD/src/main.rs --------------------------------------------------------------------------------