Code Monkey home page Code Monkey logo

gameoffsetdumper's Introduction

πŸ” GameOffsetDumper

header

Leave a ⭐star if you find this helpful :)

GameOffsetDumper is a tool that finds offsets of various games by pattern scanning the entire module according to the signature you specify. This is a substitute for hazedumper not gonna lie, but this tool adopted toml file instead of json for config file. And since you can specify the export directory, you can directory update your offset header which I think is really useful.

Basically this would help game hackers yet sadly if you guys don't know how to reverse games and stuff, this is gonna be a trash for you. However, I'll be always ok to answer whatever you would ask, so create issue if you're wondering something.

⚠️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

Run following commands so that GameOffsetDumper.sln file for Visual Studio will be generated in build directory;)

$ git clone https://github.com/s3pt3mb3r/GameOffsetDumper.git
$ cd GameOffsetDumper
$ mkdir build && cd build
$ cmake ..

Firstly, prepare config.toml file in the same directory as GameOffsetDumper.exe and fill it up properly.

This is the format of config.toml. (We also have a sample of config.toml πŸ‘Œ.)

game = "left4dead2.exe"  #specify the name of the target game
export_dir = "D:/Dev/Cpp/" #You can even specify export directory.

[[profile]]
name = "dwLocalPlayer"   #You can name whatever you want.
signature = "8Bxxxxxxxxxxxx85xx74xx8Bxx8Bxxxxxxxxxx8BxxFFxx85xx74xx8Bxx"  #The signature you've got
module = "client.dll"   #name of the module that the address belongs to
offset = 3  #Read up below
extra = 0

[[profile]]
name = "BaseOfHandgun"
signature = "0Dxxxxxxxxxxxx0FB7xx03xx03xx03xx8Bxxxx"
module = "server.dll"
offset = 1
extra = 0

#so on and so forth

Then run GameOffsetDumper.exe and every offset will be searched through whole module and written to GameOffset.hpp which will create at the same directory.

Result would look like this

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

I'm currently working on making a complete guide of this tool for those who don't understand what signature, offset and extra is. Wait for it. Alternatively, you can find them Here as well.

🎢 Background

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

gameoffsetdumper's People

Contributors

vxcall avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.