proc-maps
proc-maps copied to clipboard
Read virtual memory maps from another process
Results
2
proc-maps issues
Sort by
recently updated
recently updated
newest added
```rust fn main() { let pid = std::env::args().nth(1).unwrap().parse().unwrap(); let maps = proc_maps::get_process_maps(pid).unwrap(); for map in maps.into_iter().filter(|x| !x.is_write()) { println!( "{:x}-{:x} {:?}", map.start(), map.size() + map.start(), map.filename() ) } } ```...
bug
help wanted
Not trust content from /proc/pid/maps and enforce stricter validation.