
* remove libafl_tests * fmt * fix * fix * fix * first * width * start working on runtime side * experimental c code for generate_shadow_check_function * generate shadow_check_blob * add * debuggin * fix * passes assert tests * cargo fmt * generate_shadow_check_blob, untested * save flags * add * make registers numbers a const * register frames? * comment * debugging memcpy * fix a bug, more to come * finally error removed * finally working function hooking & clean up * fix for arm & update stub * fix * blob * blob_check_mem works? (at least no errors) & fmt * add an link to show how the asm code are generated * put probe code for aarch64 back & clippy * fmt * still blob emitting errors * fmt * now that blob works? * stack alignment * testing speed with hook_function only * comment some printlns out * small fix: ignore rep, jmp to current_report_impl iff blob_check_mems are emitted * make rip accessible by pc() * Program counter accessors for both arch * fmt * fix * fix offset * retrieve accessed memory addr, r/w rip * inspect the fault triggering instruction * AsanError Classification * clippy fixes * pass basereg/indexreg/disp to AsanErros * update asanerrors for amd64 * clippy * fmt * use frida/frida-rust * just use 44 * fix debug build * fix * fix * crate.io * change * fmt
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "libafl_frida"
|
|
version = "0.6.1"
|
|
authors = ["s1341 <github@shmarya.net>"]
|
|
description = "Frida backend library for LibAFL"
|
|
documentation = "https://docs.rs/libafl_frida"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "frida", "instrumentation"]
|
|
edition = "2021"
|
|
|
|
|
|
[features]
|
|
default = []
|
|
cmplog = []
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
|
|
[dependencies]
|
|
libafl = { path = "../libafl", version = "0.6.1", features = ["std", "libafl_derive"] }
|
|
libafl_targets = { path = "../libafl_targets", version = "0.6.1", features = ["sancov_cmplog"] }
|
|
nix = "0.23.0"
|
|
libc = "0.2"
|
|
hashbrown = "0.11"
|
|
libloading = "0.7.0"
|
|
rangemap = "0.1.10"
|
|
frida-gum-sys = { version = "0.3", features = [ "auto-download", "event-sink", "invocation-listener"] }
|
|
frida-gum = { version = "0.6.1", features = [ "auto-download", "event-sink", "invocation-listener"] }
|
|
core_affinity = { version = "0.5", git = "https://github.com/s1341/core_affinity_rs", rev = "6648a7a" }
|
|
regex = "1.4"
|
|
dynasmrt = "1.0.1"
|
|
capstone = "0.10.0"
|
|
color-backtrace ={ version = "0.5", features = [ "resolve-modules" ] }
|
|
termcolor = "1.1.2"
|
|
serde = "1.0"
|
|
backtrace = { version = "0.3.58", default-features = false, features = ["std", "serde"] }
|
|
num-traits = "0.2.14"
|
|
ahash = "0.7"
|
|
paste = "1.0"
|