process-read-write 0.1.3

process-read-write allow you to read and write bytes from another processes, it also enables you to monitor a specefic process using ptrace, geting a real-time list a list of all the system calls made by that process.
Documentation
1
2
3
4
5
6
use process_read_write;

fn main(){
    let pid = 1234;
    process_read_write::watch_proc(pid);
}