Skip to content
forked from pseuxide/MiraDump

🔍 Modern web based GUI app to find offsets in various games. For game hackers <3

License

Notifications You must be signed in to change notification settings

5l1v3r1/MiraDump

 
 

Repository files navigation

🔍 MiraDump

header-image

Leave a ⭐star if you find this helpful :)

MiraDump is an app that finds offsets of various games by pattern scanning the entire module according to the signature you specify. The biggest feature of this is this clean looks GUI which lets you work easily and Intuitively.

app-image

⚠️Do not use this to the game running with a modern anti-cheat. Or launch option -insecure will help you when you try this tool on the game under VAC protection.

🔥 Get started

  1. First of all, you must install following dependencies beforehand to build app properly. Everything listed here is crucial when it comes to developing tools, you would need these later with someone else's product so just fricking install them. You'll be totally fine.
  1. Git clone this repository by running this command in any directory you'd like to install.
$ git clone https://github.com/s3pt3mb3r/MiraDump.git
  1. Once you install them, run following commands. Also, I prepare MiraDump-build.cmd which is the bat file runs the commands automatically for you instead, so double click it could also lets you proceed.
$ npm install
$ npm i electron -D
$ npm i electron-builder -D
$ "node_modules/.bin/electron-builder" --win --x64
$ copy /y "config.toml" "dist\win-unpacked\config.toml"
$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .
$ cd ..
$ copy /y "build\Debug\MiraDump.exe" "dist\win-unpacked\MiraDump.exe"
  1. If you've done this without any errors, you will see MiraDumpClient.exe, MiraDump.exe as well as config.toml in the dist/win-unpacked folder in the project root.

  2. Run MiraDumpClient.exe and GUI app will be launched. Refer to How to use this app for usage of this app.

✨ How to use this app

  1. Specify the name of the target name in the first textarea and specify the directory you want result hpp file to be created.

fundamental-info-image

  1. This is what they call profile. Specify following things here.
  • signature name (anything)
  • actual signature
  • module name (including extention)
  • offset (if you dont know what's offset and extra, read this article)
  • extra
  • x64relative (This option is particularly for RIP-relative-addressing. If the target process is x86, just keep this untick)

profiles-image

  1. Once you fill up the forms, click Run MiraDump button and you will see the log/error in the light blue field below it while MiraDump is doing its thing. Finally, Offsets.hpp will be created in the export directory.

run-btn-image

Result would look like this

If you specify invalid informations in config.toml, the address will be 0x0 and corresponding error comment will appear.

namespace GameOffsetDumper {
    constexpr uintptr_t dwLocalPlayer = 0x6fd9d8 //client.dll
    constexpr uintptr_t InvalidModuleName = 0x0 //Invalid module name: client.dll
    constexpr uintptr_t BaseOfHandgun = 0x7b13ec //server.dll
    constexpr uintptr_t InvalidSignature = 0x0 //Invalid signature: 8Bxxxxx
}

🎶 Background

The purpose of this project for me is reinventing the wheel and to use for my personal hacking activity in the future.

About

🔍 Modern web based GUI app to find offsets in various games. For game hackers <3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 56.8%
  • JavaScript 17.2%
  • SCSS 17.0%
  • HTML 6.1%
  • CMake 1.6%
  • Batchfile 1.3%