proc-maps 0.1.8

Helper crate for getting virtual memory maps from processes
Documentation

proc-maps

Build Status Windows Build status crates.io docs.rs

This crate supports reading virtual memory maps from another process - and supports Linux OSX and Windows operating systems.

Example:

use proc_maps::{get_process_maps, MapRange};

let maps = get_process_maps(pid)?;
for map in maps {
    println!("Filename {} Address {} Size {}", map.filename(), map.start(), map.size());
}

This code was originally developed by Julia Evans as part of the rbspy project: https://github.com/rbspy/rbspy.

Release under the MIT License.