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.

Guide Vulnerable Chinese AC Drivers — Kernel Memory Access Disclosure

byte_corvus

Expert
Expert
Expert
Expert
Status
Offline
Joined
Mar 3, 2026
Messages
754
Reaction score
457
Why spend weeks fighting kernel protections when the anti-cheat developers hand you a signed backdoor on a silver platter? We are seeing a public disclosure regarding a recently released title using a Chinese AC driver that is essentially a signed rootkit with zero internal security.

The developers behind this specific driver ignored multiple warning emails regarding the vulnerabilities, leading to this public drop. For anyone doing kernel-level work, these drivers are goldmines—they often allow for arbitrary memory R/W or can be abused to map unsigned drivers without triggering standard OS-level flags.

Technical Context
Most of these regional AC implementations suffer from identical architectural flaws. Instead of proper isolation, they expose high-privilege IOCTLs that can be reached from usermode with minimal effort. This disclosure highlights yet another case where the "protection" is actually the biggest security hole on the user's system.

APC + LoadLibrary:
You cant view this link please login.

You cant view this link please login.

Kernel Manual Map Shellcode + APC:
You cant view this link please login.

You cant view this link please login.


The full technical breadcrumbs and original disclosure can be found here:

Potential Exploitation Vectors
  1. Manual mapping using the driver's own RW primitives to bypass DSE.
  2. Direct memory manipulation (RPM/WPM) without ever loading your own vulnerable driver.
  3. Bypassing game-specific integrity checks by operating within the AC's own memory context.

If you are planning to reverse this, start by dumping the driver and looking for the dispatch routine. The IOCTL codes are usually easy to spot and rarely have any form of caller verification or obfuscation. Just be careful—running these on your main system is a liability if the AC eventually gets a blacklisted certificate.

Anyone already started fuzzing the IOCTLs for this specific build?
 
Top