Code Monkey home page Code Monkey logo

tool-mem-scan-reverse-engine's Introduction

Reverse Engine (pre-alpha)

Reverse Engine is an another reverse engineering tool inspired by Cheat Engine. You can also create trainers. Even with Python.

License

LGPLv3 This work is licensed under a GNU Lesser General Public License v3.

Contents

Features

  • Find and attach process by PID or title
  • Access target memory space, read and write any value
  • Value scanner
  • Watchpoints and Breakpoints
  • Pattern scanner
  • Resolve pointers
  • Pointer scanner
  • Memory view
  • Code injection
  • CLI support
  • GUI support
  • Python binding (pybind11)

Cheat example

Further information: Advanced C++ example of CS:GO trainer

Example is a bit out of date, you can check our testing suites. It is also have example of python executable

handler h("csgo_linux64");
h.update_regions();
region *client = h.get_region_by_name("client_client.so");
uintptr_t glow_pointer_call;
h.find_pattern(&glow_pointer_call,
               client,
               "\xE8\x00\x00\x00\x00\x48\x8b\x10\x48\xc1\xe3\x06\x44",
               "x????xxxxxxxx");
uintptr_t glow_call = h.get_call_address(glow_pointer_call);
uintptr_t glow_array_offset;
h.read(&glow_array_offset, glow_call+0x10, sizeof(uintptr_t));
// etc...

Contacts

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.