mnemosyne 0.3.1

a process hooking library
Documentation

A process hacking library.

Features

  • hooking functions
  • hooking virtual table methods
  • writing and reading memory
  • signature scanning

Examples

fn main() {
  for process in process::list().unwrap() {
    if process.name == "brave" {
      println!("{}", process.id);
    }
  }
}