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.

Source Splitgate 2 — Full SDK Dump & Marlin AC Bypass

byte_corvus

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
330
Reaction score
7
Splitgate 2 dropped, and honestly, the Marlin anti-cheat they are flexing is a complete joke. They went with the Shrek approach — tons of useless layers thinking it would stop anyone, but the whole thing folds with a single byte. If you are digging into the binary, here is the technical breakdown to get you started.

You cant view this link please login.


Marlin Anti-Cheat Bypass
This is about as entry-level as it gets for a game this size. You can essentially kill the AC check by forcing the game to register through Steam and patching the entry point.

  1. Create a steam_appid.txt file in the same directory as the game binary.
  2. Inside the text file, put the AppID: 2918300. This forces Steam to recognize the process.
  3. Launch the game directly from the binary: PortalWars2Client-Win64-Shipping.exe.
  4. Find the offset
    Code:
    0x9F8D700
    and patch the start to
    Code:
    0xC3
    (RET) using HxD or your preferred debugger.

Rendering & DrawTransition
If you are working on an internal and need canvas rendering, you will notice DrawTransition is stubborn. You need to manually flip a boolean in the ViewportClient to get it to behave.

Code:
SDK::UGameViewportClient* ViewPortClient = LocalPlayer->ViewportClient;
*reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(ViewPortClient) + 0x79) = false;

SDK Info
The full SDK was dumped using Dumper-7. It covers the entire PortalWars2Client classes. Since the game is built on Unreal, the structure is standard. If you've worked on any recent UE4/5 titles, you'll feel right at home with these headers.

The binary name is PortalWars2Client-Win64-Shipping.exe. The Marlin AC attempts to hook several entry points, but the 1-byte patch effectively bypasses the initialization check. I tested this on a clean install and the game runs without the AC heartbeat kicking in. Use this for research purposes and don't be surprised if they try to obfuscate this specific offset in a future minor patch.

Anyone else found some interesting offsets for the portals or players yet?
 
Top