Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pgkt04/pymem-osx
A python library for MacOS, providing the base functions required for memory manipulation (read/write).
https://github.com/pgkt04/pymem-osx
Last synced: 5 days ago
JSON representation
A python library for MacOS, providing the base functions required for memory manipulation (read/write).
- Host: GitHub
- URL: https://github.com/pgkt04/pymem-osx
- Owner: pgkt04
- License: mit
- Created: 2024-02-09T01:21:54.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T18:19:06.000Z (7 months ago)
- Last Synced: 2025-01-03T09:06:29.376Z (10 days ago)
- Language: Python
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pymem-osx
A python library for MacOS, providing the base functions required for memory manipulation.# Features
- Memory read/write helpers.
- Base address searcher
- Modules name and address dumper
- Live in-memory modules macho-o address parser/dumper (64-bit implementation).
- Useful for finding address of different sections (__DATA, __TEXT) and even their respective segments.# Installation
You can install pymem from source.
```
git clone https://github.com/qtkite/pymem-osx.git
cd pymem-osx
python3 -m pip install -e .
```Alternatively you can do:
```
pip install pymem-osx
```
# Note
When running your python script, it must be elevated (in sudo mode) for the api calls to work.