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.

internal

  1. byte_corvus

    Source HELLDIVERS 2 — Super Earth Tech: Crypto & API Request Base

    If you're tired of guessing how HELLDIVERS 2 handles its session signing and mission activity, here's the "Super Earth Technology" source. No hand-holding, no "vtable for dummies" basics, and no explanations on how to inject a DLL—just the technical meat. This is a framework for intercepting and...
  2. byte_corvus

    Question Combat Arms Classic — Custom Rapid Fire Implementation in CShell

    Still digging into Combat Arms Classic? The engine is a fossil, but extracting a truly custom rapid fire that hits 15x speeds without just nuking the animation rate is a common wall for coders working on CShell. Trying to find that specific member or function that bypasses the standard LithTech...
  3. byte_corvus

    Question Minecraft — OpenGL Chams and Entity Texture Swapping via GlHook

    Dealing with the Minecraft render pipeline without touching the JVM is a classic challenge for anyone trying to stay engine-independent. The goal here is simple: implement chams or texture swaps for players and entities strictly through OpenGL hooks. If you're trying to avoid JNI hooks to stay...
  4. byte_corvus

    Guide [Crash] Day of Defeat — DrawModelExecute DME Hook Stability Issues

    Anyone still messing with the Source engine knows that DrawModelExecute (DME) is a fickle beast. One wrong check and you're staring at a desktop instead of a capture point. Recently ran into a specific crash where the game would dump to desktop during the loading screen if the cheat was already...
  5. byte_corvus

    Question Day of Defeat — SetupBones Access Violation in ESP Render

    The classic Source Engine struggle — you drop a simple loop for your ESP and suddenly the client decides it's time to CTD. Usually, SetupBones is the culprit here, especially if you're calling it from a hook like PaintTraverse without the right synchronization or if your entity pointers are...
  6. byte_corvus

    Source Valorant Agent Icon ESP — Dynamic Texture Fetching via K2

    If you are still bloating your internal builds with massive headers full of raw icon bytes like it's a decade ago, you're doing it wrong. Most Valorant pastes suffer from unnecessary memory overhead because people are too lazy to interface with the engine. The Logic — Native Texture Hooking...
  7. byte_corvus

    Question OpenGL — wglSwapBuffers Hook Return Logic & Recursion Issues

    Anyone currently digging into OpenGL internals has probably hit this wall. You’re trying to hijack the render loop via wglSwapBuffers to draw your menu or ESP, but the moment you try to call the original function, the game either hangs or CTDs. The logic in the snippet provided is a textbook...
  8. byte_corvus

    Source CS2 Internal ESP — In-game Function Hooking & Pattern Scan

    Stumbled upon a clean implementation for CS2 that skips the typical overhead of external libraries or massive SDKs. This approach focuses on hijacking the game's native drawing routines to render visuals, making it significantly more lightweight than your average internal paste. Inside the...
  9. byte_corvus

    Source [Source] Ragnarok Online Internal Autopot & Macro — Customizable Base Addresses

    Anyone still grinding RO private servers and tired of smashing pots manually? Got my hands on a decent internal autopot and macro base that's now circulating. It’s an internal build, so it’s naturally smoother than your average AHK script, but you'll need to do a bit of legwork to point it at...
  10. byte_corvus

    Guide [Source] Rust Material Chams — Internal Shader Collection

    Anyone digging into Rust visuals lately knows that finding the right shader to override is half the battle. If you're tired of basic flat colors and want something that actually sticks or possesses depth-ignoring properties without writing a custom shader from scratch, this list is for you...
  11. 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...
  12. byte_corvus

    Guide [Source] Valorant Weapon Identification — Actor Inventory & ObjID Mapping

    Dealing with weapon strings and ability IDs in Valorant usually leads down a rabbit hole of traversing the Actor inventory. If you are building an ESP or logic-based trigger and need to know exactly what the pawn is holding—be it a Vandal or a specific agent utility like Omen's Dark Cover—you...
  13. byte_corvus

    Guide Rust Internal Silent Aim — pSilent vs. Prediction Logic

    Anyone currently digging into internal logic for Rust has probably hit a wall with long-distance accuracy. 80 meters isn't even that far, but if your prediction and spread compensation are trash, you won't hit the broad side of a barn with a holosight. The debate between standard silent and...
  14. byte_corvus

    Undetected [Release] My Hero Ultra Rumble — Damage Multi & Revive Hacks

    My Hero Ultra Rumble Internal — Damage Multi & Global Revive Exploit Digging back into the MHA universe with a solid internal build. It covers the basic visuals but the real value is in the game-breaking exploits like damage modifiers and the revive logic that manipulates the whole lobby...
  15. 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...
  16. byte_corvus

    Undetected [Release] Super Battle Golf — Birdie Mod (Swing Assist & Host Exploits)

    Super Battle Golf physics can be a pain when you just want to sink shots without sweating the wind vectors. Got my hands on a significant upgrade to the old MidTano foundations. This isn't just a basic swing script; it's a full-blown MelonLoader-based internal that overrides the game's core...
  17. byte_corvus

    Source Warface — Sending SvRequestShootHit via RMI

    Warface RMI Logic — Sending SvRequestShootHit without Hardcoded Addresses If you are still chasing raw offsets for every single action in Warface, you are doing it the hard way. The CryEngine RMI (Remote Method Invocation) system is the backbone of how the client talks to the server about shots...
  18. byte_corvus

    Question [Crash] R6S — Corrupted Memory Kick with Internal Trampoline Hook

    Anyone else getting clapped by the "Corrupted Memory Kick" in Siege lately? It looks like the old internal bases floating around are hitting a wall with current BattlEye integrity checks. I've been messing with a private base, and while the logic is solid, the hook implementation is screaming...
  19. byte_corvus

    Question Rust — ClientInputHook ModelState Flag Issues

    Anyone digging into the movement system lately knows that forcing interactive debug states isn't as simple as flipping a bit anymore. The Current Logic The snippet below shows a standard approach to hooking ClientInput and overriding the model state flags. The goal is usually to trick the...
  20. byte_corvus

    Question Deadlock — Magic Bullet Bullet Origin in CUserCmdPB (Source 2)

    Been digging into the Deadlock internals recently and hit a wall with bullet synchronization and position manipulation. While silent aim is trivial enough by hooking the prediction path camera setup and swapping pitch/yaw during the prediction tick, getting a proper magic bullet (position...
Top