A powerful Windows process memory inspector and dumper inspired by Cheat Engine. Allows you to scan, view, and dump memory of running processes.
ProcessDumper is a lightweight, console-based tool that lets you inspect and analyze the memory of any running Windows process. It combines process information gathering with advanced memory scanning capabilities similar to Cheat Engine.
Warning: This tool requires administrator privileges and may be detected by antivirus software as a potential hacking/tool utility.
- Search for processes by name
- Display detailed process information (PID, path, memory usage, threads)
- Memory region analysis
- Value scanning (int, float)
- String scanning (ASCII and Unicode)
- Hex memory dump with ASCII view
- Clean and user-friendly console interface
- Run
ProcessDumper.exeas Administrator - Enter the name of the target process (e.g.
game.exe) - Select the process if multiple matches are found
- Use the menu to scan memory or view hex dumps
1→ Search for int value2→ Search for float value3→ Search for ASCII string4→ Search for Unicode string5→ Hex Dump at specific address6→ List all memory regions0→ Exit
- Windows 10/11
- Visual Studio 2022 (recommended) or MinGW
- Create a new Console App project
- Replace the code with the content of
main.cpp - Set Character Set to Use Unicode Character Set
- Build in Release x64
g++ -o ProcessDumper.exe main.cpp -static -lpsapi -lntdll -O2