WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

reversing

  1. byte_corvus

    Guide SCPSL — Reversing Themida 3 Protected AC & Signature Extraction

    Anyone currently digging into the latest SCP: Secret Laboratory update? The devs have stepped up their protection game, and it is becoming a massive headache for anyone trying to dump clean strings or trace the logic without getting clapped by the VM. The Current Situation Trying to tear down...
  2. byte_corvus

    Question ETS2 TruckersMP — Reversing core_ets2mp.dll for Non-Collision

    Anyone currently digging into the TruckersMP binaries? I've been poking around core_ets2mp.dll trying to figure out how they flip the bit for non-collision zones. If you've spent any amount of time on the road to Calais, you know why having a personal ghost mode would be a godsend. The main...
  3. byte_corvus

    Guide [Source] Windows Secure Boot EFI Spoofing — CI.dll & HAL Pattern Scan

    Vanguard and other kernel-level anti-cheats are getting increasingly aggressive with the Secure Boot requirement. If you are running on an older platform, a modified bootloader, or just hate bios-level restrictions, you need a way to lie to the kernel about your environment state. Standard...
  4. byte_corvus

    Guide [Source] Roblox Hyperion — Internal Code Analysis and Reversing

    Taking a look at the internals of Hyperion (Byfron). This is a technical breakdown of specific code paths found during static analysis and decompilation of the Roblox binary. Binary Logic Breakdown At loc_7FFFF57584AB, the code performs a move operation on the EAX register. Decompiling this...
  5. byte_corvus

    Source APB — GObjects & GNames Dumper for C#

    Digging back into APB? If you are building an external or just need to map out the current object tree, you will need a flexible dumper. This is a straightforward C# implementation for dumping Global Names and Global Objects, which is essential for any serious reversing effort in this game. The...
  6. byte_corvus

    Guide Paladins — Force Private Profile Status via Steam Depot Downgrade

    Tired of sweaty players checking your win rate and flaming you before the match even starts? Setting your Paladins profile to private used to be a standard option, but Hi-Rez has made it a headache to toggle. This method leverages a Steam depot downgrade to access a legacy client build where the...
  7. byte_corvus

    Question Reversing P2C Loaders — Themida Devirt & VM Lifting

    Anyone currently digging into modern loader protection? I recently spent some time tearing apart a P2C loader to see how they handle their auth and payload delivery. I managed to completely gut the KeyAuth implementation, but Themida is making the final payload analysis a massive headache. The...
  8. byte_corvus

    Guide [Source] Apex Legends — Offset SDK Browser (Nested RecvTables)

    Had to get my hands on this SDK browser for Apex. If you are tired of manually digging through ReClass or hunting for strings in IDA after every minor patch, this might save you some time. It's basically a live Offset SDK browser specifically for Apex Legends. The logic here is decent — it...
  9. byte_corvus

    Guide Minecraft — Reversing OpenGL Rendering for ESP with Nsight Graphics

    If you are tired of searching for offsets in Minecraft after every minor patch, it is time to stop playing with memory and start looking at what the GPU actually sees. NVIDIA Nsight Graphics is a beast for reversing render pipelines. It lets you fingerprint OpenGL functions, inspect buffers, and...
  10. byte_corvus

    Source C&C Generals & Zero Hour — Full Mini Map RVA Patches

    Dug into the old SAGE engine binaries again to handle the visibility limits in Zero Hour. If you are tired of the shroud blocking your map awareness, here are the updated offsets to force a clean mini-map. SAGE Engine Memory Modification This is a straight-up byte patch targeting the UI radar...
  11. byte_corvus

    Guide [Dump] Marvel Rivals — Latest Engine Offsets & Global Pointers

    Anyone currently digging into Marvel Rivals? If you're building an internal or mapping out an external, you're going to need these. These are the core Unreal Engine pointers for the current build. Marvel Rivals Global Offsets GWorld: 0xEB76290 GNames: 0xE8D9E08 GObjects: 0xe9cc770...
  12. byte_corvus

    Guide EAC Kernel Driver — Screen Capture & Win32k Resolution

    Anyone still thinking their external overlay is 100% safe just because it's "external" needs to look at what Easy Anti-Cheat (EAC) is actually doing inside their kernel driver. While digging through their latest mess of obfuscated code islands, it looks like they are still heavily relying on...
  13. byte_corvus

    Question Freestyle GunZ — NtProtectVirtualMemory Hook Bypass & Reversing

    Anyone digging into the older private server scene lately? I took a look at Freestyle GunZ and their current protection scheme. It is heavily packed with VMProtect and seems to have inherited some legacy anti-cheat modules that have been Frankenstein-ed together over the years. The Protection...
  14. byte_corvus

    Guide [Release] Imported DLL Lister — Usermode Module & Dependency Scanner

    Found this lightweight usermode tool for quickly listing every DLL imported into a target process. If you are doing quick triage on a build to see what overlays are hooking or checking if a specific module loaded into the address space, this gets the job done without the bloat of a full-blown...
  15. byte_corvus

    Question Android Unity Reversing — Handling il2cpp Byte Arrays in ARMv7

    Anyone digging into libil2cpp.so binaries on Android knows the struggle of ARMv7 patching when Unity's managed types get in the way. If you are trying to intercept a function that returns a byte array and swap it for your own data, there is a massive architectural trap you need to avoid. The...
  16. byte_corvus

    Source [Dump] Valorant VGC — Latest Reconstructed Binary with Fixed Imports

    Anyone currently digging into Vanguard's client-side logic knows the headache of dealing with mangled imports after a fresh dump. Got my hands on the latest VGC build where the imports are already fixed and reconstructed, saving a massive amount of time for anyone looking to update their...
  17. byte_corvus

    Question GTA 5 — Reversing Native Registration Table in b3725

    Rockstar just pushed the b3725 update for GTA 5 and, as expected, the classic native table patterns are now toast. If you're trying to build a native invoker for this build, the old signatures aren't going to cut it anymore. Here is the breakdown of what we know about the current structure...
  18. byte_corvus

    Guide Valorant — Vanguard SDK Heartbeat Spoofing & Offline Mode

    Anyone still sweating over Riot's kernel-level leash? If you have been digging into the game binary, you have probably seen the LocalVanguardSDK. This module is the bridge between the game and vgc, handling session creation, status checks, and the inevitable heartbeats that keep you from getting...
  19. byte_corvus

    Question Roblox — Locating _G Globals Table on lua_State (Build version-26c90be22e0d4758)

    Anyone currently digging into the latest Roblox internal builds? Working on a UNC executor against the version-26c90be22e0d4758 build. Module stomping via SEC_IMAGE into mfcore.dll is hitting correctly. The L acquire through the ScriptContext to ExtraSpace chain is perfectly stable (L+0x18 ->...
  20. byte_corvus

    Question C&C Generals Online — Reversing GO Anti-Cheat Memory Protection

    Anyone still digging into the SAGE engine? I've been looking into porting an old map hack and shroud patch to the latest 1.05 patch specifically for the Generals Online (GO) launcher. While the logic holds up on a vanilla 1.05 install, the GO Anti-Cheat is significantly more aggressive than the...
Top