All Projects → ReClassNET → Reclass.net

ReClassNET / Reclass.net

Licence: mit
More than a ReClass port to the .NET platform.

Projects that are alternatives of or similar to Reclass.net

X64dbg
An open-source x64/x32 debugger for windows.
Stars: ✭ 37,825 (+4837.99%)
Mutual labels:  hacktoberfest, debugger
nxdk-rdt
Remote Dev Tool is a tool to remote control an Xbox using memory access and RPC
Stars: ✭ 23 (-97%)
Mutual labels:  debugger, remote
React Native Network Logger
An HTTP network request monitor for React Native with in-app interface for iOS and Android with no native code
Stars: ✭ 161 (-78.98%)
Mutual labels:  hacktoberfest, debugger
Gleebug
Debugging Framework for Windows.
Stars: ✭ 1,168 (+52.48%)
Mutual labels:  hacktoberfest, debugger
Remote
Jobs and Tips for remote work
Stars: ✭ 416 (-45.69%)
Mutual labels:  hacktoberfest, remote
Markor
Text editor - Notes & ToDo (for Android) - Markdown, todo.txt, plaintext, math, ..
Stars: ✭ 1,394 (+81.98%)
Mutual labels:  hacktoberfest, class
Mond
A scripting language for .NET Core
Stars: ✭ 237 (-69.06%)
Mutual labels:  hacktoberfest, debugger
Generators
Laravel File Generators with config and publishable stubs
Stars: ✭ 102 (-86.68%)
Mutual labels:  hacktoberfest, class
Powershelleditorservices
A common platform for PowerShell development support in any editor or application!
Stars: ✭ 394 (-48.56%)
Mutual labels:  hacktoberfest, debugger
Remote Jobs
A list of semi to fully remote-friendly companies (jobs) in tech.
Stars: ✭ 17,863 (+2231.98%)
Mutual labels:  hacktoberfest, remote
Class Logger
Boilerplate-free decorator-based class logging
Stars: ✭ 64 (-91.64%)
Mutual labels:  hacktoberfest, class
Bit Slicer
Universal game trainer for macOS
Stars: ✭ 602 (-21.41%)
Mutual labels:  memory-hacking, debugger
Yii2 Debug
Debug Extension for Yii 2
Stars: ✭ 179 (-76.63%)
Mutual labels:  hacktoberfest, debugger
Awesome Remote Work
😎 Awesome lists about remote work
Stars: ✭ 264 (-65.54%)
Mutual labels:  hacktoberfest, remote
Vardbg
A simple Python debugger and profiler that generates animated visualizations of program flow, useful for algorithm learning.
Stars: ✭ 543 (-29.11%)
Mutual labels:  hacktoberfest, debugger
Ruby jard
Just Another Ruby Debugger. Provide a rich Terminal UI that visualizes everything your need, navigates your program with pleasure, stops at matter places only, reduces manual and mental efforts. You can now focus on real debugging.
Stars: ✭ 669 (-12.66%)
Mutual labels:  hacktoberfest, debugger
Reactiveui
An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application.
Stars: ✭ 6,709 (+775.85%)
Mutual labels:  hacktoberfest
Reaktive
Kotlin multi-platform implementation of Reactive Extensions
Stars: ✭ 760 (-0.78%)
Mutual labels:  hacktoberfest
Node Fetch
A light-weight module that brings the Fetch API to Node.js
Stars: ✭ 7,176 (+836.81%)
Mutual labels:  hacktoberfest
Pry
A runtime developer console and IRB alternative with powerful introspection capabilities.
Stars: ✭ 6,351 (+729.11%)
Mutual labels:  debugger

ReClass.NET

This is a port of ReClass to the .NET platform with lots of additional features.

Features

  • Support for x86 / x64
  • File import from ReClass 2007-2016 and ReClass QT
  • Memory Nodes
    • Arrays and Pointers to every other node types
    • Hex 8 / 16 / 32 / 64
    • Int 8 / 16 / 32 / 64
    • UInt 8 / 16 / 32 / 64
    • Bool
    • Bits
    • Enumerations
    • Float / Double
    • Vector 2 / 3 / 4
    • Matrix 3x3 / 3x4 / 4x4
    • UTF8 / UTF16 / UTF32 Text and pointer to text
    • Virtual Tables
    • Function
    • Function Pointer
    • Unions
  • Automatic Node Dissection
  • Highlight changed memory
  • Pointer Preview
  • Copy / Paste Support across ReClass.NET instances
  • Display types from Debug Symbols (*.pdb)
  • Display Runtime Type Informations (RTTI)
  • Control the remote process: start / stop / kill
  • Process Selection Dialog with filtering
  • Memory Viewer
  • Memory Scanner
    • Import files from Cheat Engine and CrySearch
    • Scan for values correlated to your input
  • Class address calculator
  • Code Generator (C++ / C#)
  • Module / Section Dumper
  • Linux Support (tested on Ubuntu 18.04)
  • Debugger with "Find out what writes/accesses this address" support
  • Plugin Support
    • Plugins can be written in different languages (example: C++, C++/CLI, C#)
    • Plugins can provide custom methods to access an other process (example: use a driver)
    • Plugins can interact with the ReClass.NET windows
    • Plugins can provide node infos which will be displayed (example: class informations for Frostbite games)
    • Plugins can implement custom nodes with load/save and code generation support

Plugins

To install a plugin just copy it in the "Plugins" folder. If you want to develop your own plugin just learn from the code of the Sample Plugins and Frostbite Plugin repositories. If you have developed a nice plugin, leave me a message and I will add it to the list above.

Installation

Just download the latest version and start the x86 / x64 version or let the launcher decide.

Tips

  • Lots of elements have a context menu. Just right-click it and see what you can do there.

  • The node window can be controlled with the keyboard too. Arrow keys can select other keys, combined with the shift key the nodes get selected. The menu key opens the context menu which itself can be controlled with the keyboard.

  • The memory address field of a class can contain a real formula not just a fixed address.

    <Program.exe> + 0x123 will use the base address of Program.exe and add 0x123 to it.
    [0x4012ABDE] will read the integer (4 byte on x86 / 8 byte on x64) from the address 0x4012ABDE and use this value as class address.
    [<Program.exe> + 0xDE] - AB will use the base address of Program.exe, add 0xDE to it, read the value from this address and finally sub 0xAB from it.
    [<Program.exe> + offset + [<Program.exe> + offset2]] Nested operations are supported too.

    Valid operations are read ([..]), add (+), sub (-), mul (*) and div (/). Please note that all operations are integer calculations.

Compiling

If you want to compile ReClass.NET just fork the repository and open the ReClass.NET.sln file with Visual Studio 2019. Compile the project and copy the dependencies to the output folder.

Videos

Youtube Playlist

Screenshots

Process Selection

Memory Viewer

Memory Scanner

Pointer Preview

Code Generator

Plugins

Settings

Authors / Special Thanks

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].