Skip to content

CEServer for Cheat Engine 7.4 to perform DMA access to Windows processes

License

Notifications You must be signed in to change notification settings

cs1ime/ceserver-rawmem

Repository files navigation

ceserver-rawmem

Ceserver for cheatengine7.0 to analyze memorydump

The system in the memory dump only supports 64-bit systems, windows10, windows11

Instructions:

ceserver for raw memory dump file
Usage:
  ceserver-rawmem [OPTION...]

  -f, c arg  Raw memory dump file path
  -p, --port arg  CEServer using port (default: 8997)

-f/--file parameter only supports complete linear physical memory dump, you can get it through MemProcFS

Example for kvm core dump

Run commond

MemProcFS.exe -device win10.core

Copy M:\memory.pmem to your workspace

Open WSL and run command

./ceserver-rawmem -f memory.pmem

Port forwarding for WSL

netsh interface portproxy add v4tov4 listenport=8997 listenaddress=0.0.0.0 connectport=8997 connectaddress=xxx.xxx.xxx.xxx

Open cheatengine, connect to localhost:8997

How to build

Environment: Ubuntu22.04 x64

Require:

  1. CMake >= 3.20
  2. OpenSSL >= 1.1.1
  3. Clang >= 14
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install zlib1g-dev
sudo apt-get install libssl-dev
sudo apt-get install cmake
sudo apt-get install clang-14
mkdir build
cd build
cmake .. -DCMAKE_C_COMPILER=clang-14 -DCMAKE_CXX_COMPILER=clang++-14
make

Environment: macOS 13.4.1

brew install cmake
mkdir build
cd build
cmake .. -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
make

ToDoList

- [ ] Support qemu-kvm, pcileech

- [ ] Write an example of dumping apex game data

- [ ] Make a qemu-kvm cheat

Screenshots

image-1

Credits

  • memflow: Provides a nice way to get the base address of ntoskrnl.exe

  • query-pdb: Provides a good pdb parsing service

  • cheatengine: Cheat Engine is a development environment focused on modding games and applications for personal use.

  • cxxopts: Lightweight C++ command line option parser

  • MemProcFS: MemProcFS is an easy and convenient way of viewing physical memory as files in a virtual file system.

About

CEServer for Cheat Engine 7.4 to perform DMA access to Windows processes

Resources

License

Stars

Watchers

Forks

Packages

No packages published