memMan is a simple tool to read and write memory of a process. It is written in C++ and uses the Windows API to access the memory of a process. The tool is useful for debugging and reverse engineering purposes.
To use memMan, follow these steps:
- Clone the repository
git clone https://github.com/mendax0110/memMan.git
- Navigate to the loggy directory
cd memMan
- Create a build directory
mkdir build
- Navigate to the build directory
cd build
- Generat the build files
cmake ..
- Build the project
cmake --build .
- List the memory regions of a process
memMan.exe <process_name> -l
- Read memory of a process
memMan.exe <process_name> <address> -r
- Write memory of a process
memMan.exe <process_name> <address> -w <value>
- Auto inject integer into memory region
memMan.exe <process_name> <address> -a <value>
- Windows