Update to v0.15.3 (#3259)

Co-authored-by: Dominik Maier <domenukk@gmail.com>
Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
This commit is contained in:
Andrea Fioraldi 2025-05-23 22:50:23 +02:00 committed by GitHub
parent b22c2ca99c
commit ce63b76558
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
82 changed files with 103 additions and 103 deletions

View File

@ -54,35 +54,35 @@ exclude = [
] ]
[workspace.package] [workspace.package]
version = "0.15.2" version = "0.15.3"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
[workspace.dependencies] [workspace.dependencies]
# Internal deps # Internal deps
libafl = { path = "./libafl", version = "0.15.2", default-features = false } libafl = { path = "./libafl", version = "0.15.3", default-features = false }
libafl_bolts = { path = "./libafl_bolts", version = "0.15.2", default-features = false } libafl_bolts = { path = "./libafl_bolts", version = "0.15.3", default-features = false }
libafl_cc = { path = "./libafl_cc", version = "0.15.2", default-features = false } libafl_cc = { path = "./libafl_cc", version = "0.15.3", default-features = false }
symcc_runtime = { path = "./libafl_concolic/symcc_runtime", version = "0.15.2", default-features = false } symcc_runtime = { path = "./libafl_concolic/symcc_runtime", version = "0.15.2", default-features = false }
symcc_libafl = { path = "./libafl_concolic/symcc_libafl", version = "0.15.2", default-features = false } symcc_libafl = { path = "./libafl_concolic/symcc_libafl", version = "0.15.3", default-features = false }
libafl_derive = { path = "./libafl_derive", version = "0.15.2", default-features = false } libafl_derive = { path = "./libafl_derive", version = "0.15.3", default-features = false }
libafl_frida = { path = "./libafl_frida", version = "0.15.2", default-features = false } libafl_frida = { path = "./libafl_frida", version = "0.15.3", default-features = false }
libafl_intelpt = { path = "./libafl_intelpt", version = "0.15.2", default-features = false } libafl_intelpt = { path = "./libafl_intelpt", version = "0.15.3", default-features = false }
libafl_libfuzzer = { path = "./libafl_libfuzzer", version = "0.15.2", default-features = false } libafl_libfuzzer = { path = "./libafl_libfuzzer", version = "0.15.3", default-features = false }
libafl_nyx = { path = "./libafl_nyx", version = "0.15.2", default-features = false } libafl_nyx = { path = "./libafl_nyx", version = "0.15.3", default-features = false }
libafl_targets = { path = "./libafl_targets", version = "0.15.2", default-features = false } libafl_targets = { path = "./libafl_targets", version = "0.15.3", default-features = false }
libafl_tinyinst = { path = "./libafl_tinyinst", version = "0.15.2", default-features = false } libafl_tinyinst = { path = "./libafl_tinyinst", version = "0.15.3", default-features = false }
libafl_qemu = { path = "./libafl_qemu", version = "0.15.2", default-features = false } libafl_qemu = { path = "./libafl_qemu", version = "0.15.3", default-features = false }
libafl_qemu_build = { path = "./libafl_qemu/libafl_qemu_build", version = "0.15.2", default-features = false } libafl_qemu_build = { path = "./libafl_qemu/libafl_qemu_build", version = "0.15.3", default-features = false }
libafl_qemu_sys = { path = "./libafl_qemu/libafl_qemu_sys", version = "0.15.2", default-features = false } libafl_qemu_sys = { path = "./libafl_qemu/libafl_qemu_sys", version = "0.15.3", default-features = false }
libafl_sugar = { path = "./libafl_sugar", version = "0.15.2", default-features = false } libafl_sugar = { path = "./libafl_sugar", version = "0.15.3", default-features = false }
dump_constraints = { path = "./libafl_concolic/test/dump_constraints", version = "0.15.2", default-features = false } dump_constraints = { path = "./libafl_concolic/test/dump_constraints", version = "0.15.2", default-features = false }
runtime_test = { path = "./libafl_concolic/test/runtime_test", version = "0.15.2", default-features = false } runtime_test = { path = "./libafl_concolic/test/runtime_test", version = "0.15.2", default-features = false }
build_and_test_fuzzers = { path = "./utils/build_and_test_fuzzers", version = "0.15.2", default-features = false } build_and_test_fuzzers = { path = "./utils/build_and_test_fuzzers", version = "0.15.2", default-features = false }
deexit = { path = "./utils/deexit", version = "0.15.2", default-features = false } deexit = { path = "./utils/deexit", version = "0.15.2", default-features = false }
drcov_utils = { path = "./utils/drcov_utils", version = "0.15.2", default-features = false } drcov_utils = { path = "./utils/drcov_utils", version = "0.15.2", default-features = false }
construct_automata = { path = "./utils/gramatron/construct_automata", version = "0.15.2", default-features = false } construct_automata = { path = "./utils/gramatron/construct_automata", version = "0.15.2", default-features = false }
libafl_benches = { path = "./utils/libafl_benches", version = "0.15.2", default-features = false } libafl_benches = { path = "./utils/libafl_benches", version = "0.15.3", default-features = false }
libafl_jumper = { path = "./utils/libafl_jumper", version = "0.15.2", default-features = false } libafl_jumper = { path = "./utils/libafl_jumper", version = "0.15.3", default-features = false }
# External deps # External deps
ahash = { version = "0.8.12", default-features = false } # The hash function already used in hashbrown ahash = { version = "0.8.12", default-features = false } # The hash function already used in hashbrown

View File

@ -1,7 +1,7 @@
[package] [package]
name = "pylibafl" name = "pylibafl"
description = "Python bindings for LibAFL" description = "Python bindings for LibAFL"
version = "0.15.2" version = "0.15.3"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/AFLplusplus/LibAFL/" repository = "https://github.com/AFLplusplus/LibAFL/"
keywords = ["fuzzing", "testing", "security", "python"] keywords = ["fuzzing", "testing", "security", "python"]
@ -11,15 +11,15 @@ categories = ["development-tools::testing", "emulators", "embedded", "os"]
[dependencies] [dependencies]
pyo3 = { version = "0.24.0", features = ["extension-module"] } pyo3 = { version = "0.24.0", features = ["extension-module"] }
pyo3-log = { version = "0.12.2" } pyo3-log = { version = "0.12.2" }
libafl_sugar = { path = "../../libafl_sugar", version = "0.15.2", features = [ libafl_sugar = { path = "../../libafl_sugar", version = "0.15.3", features = [
"python", "python",
] } ] }
libafl_bolts = { path = "../../libafl_bolts", version = "0.15.2", features = [ libafl_bolts = { path = "../../libafl_bolts", version = "0.15.3", features = [
"python", "python",
] } ] }
[target.'cfg(target_os = "linux")'.dependencies] [target.'cfg(target_os = "linux")'.dependencies]
libafl_qemu = { path = "../../libafl_qemu", version = "0.15.2", features = [ libafl_qemu = { path = "../../libafl_qemu", version = "0.15.3", features = [
"python", "python",
] } ] }

View File

@ -4,7 +4,7 @@ build-backend = "maturin"
[project] [project]
name = "PyLibAFL" name = "PyLibAFL"
version = "0.15.2" version = "0.15.3"
description = "Advanced Fuzzing Library for Python" description = "Advanced Fuzzing Library for Python"
readme = "README.md" readme = "README.md"
requires-python = ">=3.8" requires-python = ">=3.8"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_listing_01" name = "baby_fuzzer_listing_01"
version = "0.15.2" version = "0.15.3"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
edition = "2024" edition = "2024"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_listing_02" name = "baby_fuzzer_listing_02"
version = "0.15.2" version = "0.15.3"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
edition = "2024" edition = "2024"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_listing_03" name = "baby_fuzzer_listing_03"
version = "0.15.2" version = "0.15.3"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
edition = "2024" edition = "2024"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_listing_04" name = "baby_fuzzer_listing_04"
version = "0.15.2" version = "0.15.3"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
edition = "2024" edition = "2024"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_listing_05" name = "baby_fuzzer_listing_05"
version = "0.15.2" version = "0.15.3"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
edition = "2024" edition = "2024"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_listing_06" name = "baby_fuzzer_listing_06"
version = "0.15.2" version = "0.15.3"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
edition = "2024" edition = "2024"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzer_custom_executor" name = "fuzzer_custom_executor"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_minimizing" name = "baby_fuzzer_minimizing"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_swap_differential" name = "baby_fuzzer_swap_differential"
version = "0.15.2" version = "0.15.3"
authors = ["Addison Crump <research@addisoncrump.info>"] authors = ["Addison Crump <research@addisoncrump.info>"]
edition = "2021" edition = "2021"
default-run = "fuzzer_sd" default-run = "fuzzer_sd"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_unicode" name = "baby_fuzzer_unicode"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "c_code_with_fork_executor" name = "c_code_with_fork_executor"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[features] [features]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "c_code_with_inprocess_executor" name = "c_code_with_inprocess_executor"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[features] [features]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "command_executor" name = "command_executor"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[features] [features]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "forkserver_executor" name = "forkserver_executor"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rust_code_with_fork_executor" name = "rust_code_with_fork_executor"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[features] [features]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rust_code_with_inprocess_executor" name = "rust_code_with_inprocess_executor"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[features] [features]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tutorial" name = "tutorial"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "frida_executable_fuzzer" name = "frida_executable_fuzzer"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[lib] [lib]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "frida_fuzzer" name = "frida_fuzzer"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "frida_windows_gdiplus" name = "frida_windows_gdiplus"
version = "0.15.2" version = "0.15.3"
authors = ["Richard Johnson <richinseattle@gmail.com>"] authors = ["Richard Johnson <richinseattle@gmail.com>"]
edition = "2021" edition = "2021"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_fork_qemu" name = "fuzzbench_fork_qemu"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_qemu" name = "fuzzbench_qemu"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",
@ -29,7 +29,7 @@ libafl_qemu = { path = "../../../libafl_qemu", features = [
"x86_64", "x86_64",
"usermode", "usermode",
] } ] }
libafl_targets = { path = "../../../libafl_targets", version = "0.15.2" } libafl_targets = { path = "../../../libafl_targets", version = "0.15.3" }
env_logger = "0.11.5" env_logger = "0.11.5"
log = { version = "0.4.22", features = ["release_max_level_info"] } log = { version = "0.4.22", features = ["release_max_level_info"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "qemu_cmin" name = "qemu_cmin"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "qemu_coverage" name = "qemu_coverage"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "qemu_launcher" name = "qemu_launcher"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tinyinst_simple" name = "tinyinst_simple"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_with_forkexecutor" name = "baby_fuzzer_with_forkexecutor"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "forkserver_libafl_cc" name = "forkserver_libafl_cc"
version = "0.15.2" version = "0.15.3"
authors = ["ergrelet <ergrelet@users.noreply.github.com>"] authors = ["ergrelet <ergrelet@users.noreply.github.com>"]
edition = "2021" edition = "2021"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_forkserver" name = "fuzzbench_forkserver"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_forkserver_cmplog" name = "fuzzbench_forkserver_cmplog"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_forkserver_sand" name = "fuzzbench_forkserver_sand"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libafl-fuzz" name = "libafl-fuzz"
version = "0.15.2" version = "0.15.3"
description = "Reimplementation of afl-fuzz on top of LibAFL" description = "Reimplementation of afl-fuzz on top of LibAFL"
documentation = "https://docs.rs/libafl" documentation = "https://docs.rs/libafl"
authors = ["Aarnav Bos <aarnavbos@gmail.com>"] authors = ["Aarnav Bos <aarnavbos@gmail.com>"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "nyx_libxml2_parallel" name = "nyx_libxml2_parallel"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
default-run = "nyx_libxml2_parallel" default-run = "nyx_libxml2_parallel"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "nyx_libxml2_standalone" name = "nyx_libxml2_standalone"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
default-run = "nyx_libxml2_standalone" default-run = "nyx_libxml2_standalone"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "qemu_baremetal" name = "qemu_baremetal"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "qemu_linux_kernel" name = "qemu_linux_kernel"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Romain Malmain <rmalmain@pm.me>", "Romain Malmain <rmalmain@pm.me>",
"Dongjia Zhang <tokazerkje@outlook.com>", "Dongjia Zhang <tokazerkje@outlook.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "qemu_linux_process" name = "qemu_linux_process"
version = "0.15.2" version = "0.15.3"
authors = ["Romain Malmain <rmalmain@pm.me>"] authors = ["Romain Malmain <rmalmain@pm.me>"]
edition = "2021" edition = "2021"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_wasm" name = "baby_fuzzer_wasm"
version = "0.15.2" version = "0.15.3"
authors = ["Addison Crump <research@addisoncrump.info>"] authors = ["Addison Crump <research@addisoncrump.info>"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_no_std" name = "baby_no_std"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,7 +1,7 @@
[package] [package]
name = "cargo_fuzz_test" name = "cargo_fuzz_test"
edition = "2021" edition = "2021"
version = "0.15.2" version = "0.15.3"
description = "test" description = "test"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libafl-fuzz" name = "libafl-fuzz"
version = "0.15.2" version = "0.15.3"
publish = false publish = false
edition = "2021" edition = "2021"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libafl_atheris" name = "libafl_atheris"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "push_harness" name = "push_harness"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "push_stage_harness" name = "push_stage_harness"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench" name = "fuzzbench"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_ctx" name = "fuzzbench_ctx"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzbench_text" name = "fuzzbench_text"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libmozjpeg" name = "libfuzzer_libmozjpeg"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng" name = "libfuzzer_libpng"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_accounting" name = "libfuzzer_libpng_accounting"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_launcher_centralized" name = "libfuzzer_libpng_launcher_centralized"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_cmin" name = "libfuzzer_libpng_cmin"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_launcher" name = "libfuzzer_libpng_launcher"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_launcher_norestart" name = "libfuzzer_libpng_launcher_norestart"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_tcp_manager" name = "libfuzzer_libpng_tcp_manager"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_stb_image" name = "libfuzzer_stb_image"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_stb_image_sugar" name = "libfuzzer_stb_image_sugar"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_windows_asan" name = "libfuzzer_windows_asan"
version = "0.15.2" version = "0.15.3"
authors = ["Max Ammann <max@maxammann.org>"] authors = ["Max Ammann <max@maxammann.org>"]
edition = "2021" edition = "2021"
categories = ["development-tools::testing"] categories = ["development-tools::testing"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_libpng_launcher_centralized_multi_machine" name = "libfuzzer_libpng_launcher_centralized_multi_machine"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Romain Malmain <romain.malmain@pm.me>", "Romain Malmain <romain.malmain@pm.me>",
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_gramatron" name = "baby_fuzzer_gramatron"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_grimoire" name = "baby_fuzzer_grimoire"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_multi" name = "baby_fuzzer_multi"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_nautilus" name = "baby_fuzzer_nautilus"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "baby_fuzzer_tokens" name = "baby_fuzzer_tokens"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "forkserver_simple" name = "forkserver_simple"
version = "0.15.2" version = "0.15.3"
authors = ["tokatoka <tokazerkje@outlook.com>"] authors = ["tokatoka <tokazerkje@outlook.com>"]
edition = "2021" edition = "2021"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libfuzzer_stb_image_concolic" name = "libfuzzer_stb_image_concolic"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "example_runtime" name = "example_runtime"
version = "0.15.2" version = "0.15.3"
edition = "2021" edition = "2021"
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"] authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "nautilus_sync" name = "nautilus_sync"
version = "0.15.2" version = "0.15.3"
authors = [ authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>", "Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libafl_libfuzzer_runtime" name = "libafl_libfuzzer_runtime"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
publish = false publish = false

View File

@ -3,7 +3,7 @@ members = ["asan", "gasan", "qasan", "zasan", "fuzz", "dummy_libc", "runner"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.15.2" version = "0.15.3"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2024" edition = "2024"
rust-version = "1.87" rust-version = "1.87"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "desyscall" name = "desyscall"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
description = "DeSyscall: Hooks syscalls for reduces overhead during in-process fuzzing" description = "DeSyscall: Hooks syscalls for reduces overhead during in-process fuzzing"
repository = "https://github.com/AFLplusplus/LibAFL/" repository = "https://github.com/AFLplusplus/LibAFL/"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "gdb_demo" name = "gdb_demo"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
[build-dependencies] [build-dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "gdb_qemu" name = "gdb_qemu"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
[build-dependencies] [build-dependencies]

View File

@ -212,7 +212,7 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
[[package]] [[package]]
name = "libafl_repo_tools" name = "libafl_repo_tools"
version = "0.15.2" version = "0.15.3"
dependencies = [ dependencies = [
"clap", "clap",
"colored", "colored",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libafl_repo_tools" name = "libafl_repo_tools"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
description = "A set of useful tools to manage the LibAFL repository" description = "A set of useful tools to manage the LibAFL repository"
authors = ["Romain Malmain <romain.malmain@pm.me>"] authors = ["Romain Malmain <romain.malmain@pm.me>"]

View File

@ -1,7 +1,7 @@
[package] [package]
name = "multi_machine_generator" name = "multi_machine_generator"
authors = ["Romain Malmain <romain.malmain@pm.me>"] authors = ["Romain Malmain <romain.malmain@pm.me>"]
version = "0.15.2" version = "0.15.3"
description = "Generator for multi-machine setup" description = "Generator for multi-machine setup"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing", "security"] keywords = ["fuzzing", "testing", "security"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "noaslr_demo" name = "noaslr_demo"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
[build-dependencies] [build-dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libnoaslr" name = "libnoaslr"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
[lib] [lib]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "noaslr" name = "noaslr"
version = "0.15.2" version = "0.15.3"
edition = "2024" edition = "2024"
[build-dependencies] [build-dependencies]