benfred-read-process-memory

Crates.iobenfred-read-process-memory
lib.rsbenfred-read-process-memory
version0.2.1
sourcesrc
created_at2018-08-25 18:41:33.355809
updated_at2021-03-22 02:47:55.012187
descriptionRead memory from another process.
homepagehttps://github.com/benfred/read-process-memory
repositoryhttps://github.com/benfred/read-process-memory
max_upload_size
id81414
size28,563
Ben Frederickson (benfred)

documentation

README

Build Status Build status [Build status] crates.io Coverage Status

A crate to read memory from another process. Code originally taken from Julia Evans' excellent ruby-stacktrace project.

Example

extern crate benfred_read_process_memory as read_process_memory;

use std::convert::TryInto;
use std::io;
use read_process_memory::{Pid, ProcessHandle, CopyAddress, copy_address};

// Try to read `size` bytes at `address` from the process `pid`.
fn read_some_memory(pid: Pid, address: usize, size: usize) -> io::Result<()> {
    let handle: ProcessHandle = pid.try_into()?;
    let _bytes = copy_address(address, size, &handle)?;
    println!("Read {} bytes", size);
    Ok(())
}

fn main() {
    read_some_memory(123 as Pid, 0x100000, 100).unwrap();
}

Documentation

https://docs.rs/read-process-memory

Commit count: 52

cargo fmt