findshlibs
Find the shared libraries loaded in the current process with a cross platform API.
📚 Documentation on docs.rs 📚
Here is an example program that prints out each shared library that is loaded in the process and the addresses where each of its segments are mapped into memory.
```rust extern crate findshlibs; use findshlibs::{Segment, SharedLibrary, TargetSharedLibrary};
fn main() { TargetSharedLibrary::each(|shlib| { println!("{}", shlib.name().tostringlossy());
for seg in shlib.segments() {
println!(" {}: segment {}",
seg.actual_virtual_memory_address(shlib),
seg.name().to_string_lossy());
}
});
} ```
These are the OSes that findshlibs
currently supports:
Is your OS missing here? Send us a pull request!