pox/Cargo.toml
alemi fab29c5423
feat: search for symbols in exported but also elf
this allows finding non-exported symbols on non-stripped elfs. requires
being able to read the executable that created this process. also added
example code in C to target with this tool
2023-03-30 01:38:21 +02:00

24 lines
506 B
TOML

[package]
name = "rustyneedle"
version = "0.1.0"
edition = "2021"
[lib]
name = "tetanus"
crate-type = ["cdylib"]
path = "src/lib.rs"
[[bin]]
name = "needle"
path = "src/needle/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.1.13", features = ["derive"] }
ctor = "0.1.26"
retour = "0.1" # plain detour doesn't work on latest nightly? idk
elf = "0.7.2"
nix = "0.26.2"
proc-maps = "0.3.0"
libloading = "0.7.4"