An open API service indexing awesome lists of open source software.

https://github.com/im-razvan/memx

A Python Library to Manipulate macOS Processes.
https://github.com/im-razvan/memx

game-hacking macos memory memory-hacking python

Last synced: 10 months ago
JSON representation

A Python Library to Manipulate macOS Processes.

Awesome Lists containing this project

README

          

#  MemX
## A Python Library to Manipulate macOS Processes.
---
### Example usage:
```
from memx import *

mx = Process("assaultcube")
mx.fetch_modules()
base = Module(mx, "assaultcube").BaseAddress

s = mx.read_longlong(base + 0x1D9EF0)
healthAddr = mx.read_longlong(s) + 0x418

print(f"Health value: {mx.read_int(healthAddr)}")
```
This program reads the health value from a process named `assaultcube`.