A Python application to scan and modify memory values of a running process.
- Scan memory for specific values in a running process
- Filter addresses that change to a new value
- Modify memory values at specific addresses
-
Clone the repository:
git clone https://github.com/EhDaYaGhaly/Memo
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the application:
python cli.app
-
Follow the prompts to enter the process name, initial value, new value, and modification value.
memory-scanner
├── cli
│ └── app.py
├── src
│ ├── __init__.py
│ ├── memory_scanner.py
├── tests
│ ├── __init__.py
│ └── test_memory_scanner.py
├── requirements.txt
└── README.md