Skip to content

Latest commit

 

History

History
50 lines (46 loc) · 1002 Bytes

README.md

File metadata and controls

50 lines (46 loc) · 1002 Bytes

memMan

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.

Usage

To use memMan, follow these steps:

  1. Clone the repository
git clone https://github.com/mendax0110/memMan.git
  1. Navigate to the loggy directory
cd memMan
  1. Create a build directory
mkdir build
  1. Navigate to the build directory
cd build
  1. Generat the build files
cmake ..
  1. Build the project
cmake --build .
  1. List the memory regions of a process
memMan.exe <process_name> -l
  1. Read memory of a process
memMan.exe <process_name> <address> -r
  1. Write memory of a process
memMan.exe <process_name> <address> -w <value>
  1. Auto inject integer into memory region
memMan.exe <process_name> <address> -a <value>

Supported Platforms

  • Windows