Skip to content

Commit 7c84a79

Browse files
s1341tokatoka
andauthored
Frida updates and FASAN fixes (#2838)
* Frida updates and FASAN fixes * fmt * Fixes * clippy * fmt * Clippy * Update to frida 0.16.2 * fix windows hooks * Fix * Fmt * windows fix * Bump frida version to 0.16.3 * Get rid of call to LLVMFuzzerInitialize * bump version 0.16.5; use find_global_export_by_name * allow unused_macro_rules * Don't do stdout_file on windows * fmt * Add tmate to debug * fix windows frida_libpng --------- Co-authored-by: Dongjia "toka" Zhang <[email protected]>
1 parent ba0da51 commit 7c84a79

File tree

13 files changed

+925
-500
lines changed

13 files changed

+925
-500
lines changed

fuzzers/binary_only/frida_executable_libpng/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ libafl = { path = "../../../libafl", features = [
2525
"frida_cli",
2626
] } #, "llmp_small_maps", "llmp_debug"]}
2727
libafl_bolts = { path = "../../../libafl_bolts" }
28-
frida-gum = { version = "0.15.1", features = [
28+
frida-gum = { version = "0.16.5", features = [
2929
"auto-download",
3030
"event-sink",
3131
"invocation-listener",

fuzzers/binary_only/frida_libpng/Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ lto = true
1616
codegen-units = 1
1717
opt-level = 3
1818
debug = true
19+
panic = 'abort'
1920

2021
[dependencies]
2122
libafl = { path = "../../../libafl", features = [
@@ -26,7 +27,7 @@ libafl = { path = "../../../libafl", features = [
2627
"errors_backtrace",
2728
] } #, "llmp_small_maps", "llmp_debug"]}
2829
libafl_bolts = { path = "../../../libafl_bolts" }
29-
frida-gum = { version = "0.15.1", features = [
30+
frida-gum = { version = "0.16.5", features = [
3031
"auto-download",
3132
"event-sink",
3233
"invocation-listener",
@@ -37,7 +38,9 @@ libafl_targets = { path = "../../../libafl_targets", features = [
3738
"sancov_cmplog",
3839
] }
3940
libloading = "0.8.5"
40-
log = { version = "0.4.22", features = ["release_max_level_info"] }
41-
mimalloc = { version = "0.1.43", default-features = false }
42-
color-backtrace = "0.6.1"
41+
log = { version = "0.4.22", features = ["release_max_level_trace"] }
42+
mimalloc = { version = "0.1.43", default-features = true, features = [
43+
"local_dynamic_tls",
44+
] }
45+
color-backtrace = { version = "0.6.1", features = ["resolve-modules"] }
4346
env_logger = "0.11.5"

0 commit comments

Comments
 (0)