百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
R

ReClass.NET

> 开发工具
开源

不仅仅是 ReClass 移植到 .NET 平台。

2.2K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

不仅仅是 ReClass 移植到 .NET 平台。

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

  • Sample Plugins
  • Frostbite Plugin
  • MemoryPipe Plugin
  • LoadBinary Plugin
  • Handle Abuser Plugin
  • Unreal Plugin (not available anymore) (by DrP3pp3r)
  • DriverReader (by Niemand)

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.

To compile the linux native core library, you need WSL installed and configured. If you do not need linux support, simply unload the project in the Solution Explorer. If you want to build cross-platform (x86/x64) you have to install g++-multilib too.

If you use the Makefile with docker or podman you have to build the needed image gcc_multilib from the following Dockerfile (docker build -t gcc_multi .):

FROM ubuntu:latest

RUN apt-get update \
 && apt-get install --assume-yes --no-install-recommends --quiet \
        make \
        g++ \
        g++-multilib \
 && apt-get clean all

Videos

Youtube Playlist

Screenshots

Process Selection

Memory Viewer

Memory Scanner

Pointer Preview

Code Generator

Plugins

Settings

Authors / Special Thanks

  • KN4CK3R
  • DrUnKeN ChEeTaH
  • P47R!CK
  • DogMatt
  • ajkhoury
  • IChooseYou
  • stevemk14ebr
  • Timboy67678
  • DarthTon
  • ReUnioN
  • leveln
  • buddyfavors
  • DrP3pp3r
  • ko1N
  • Niemand (see his talk at BlackHat Europe 2019 (London) "Unveiling the underground world of Anti-Cheats")

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

C#classdebuggerhacktoberfestmemory-analysis

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类开发工具
定价开源

> 相关工具

V
VS Code
流行的开源代码编辑器
G
Git
分布式版本控制系统
V
Vite
下一代前端构建工具