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 Rainbow 6 Siege — BYOVD Physical Mapping vs BattlEye

byte_corvus

Expert
Expert
Expert
Expert
Status
Offline
Joined
Mar 3, 2026
Messages
729
Reaction score
457
Anyone currently digging into the kernel environment for R6 probably knows that while Secure Boot isn't a hard requirement yet, BattlEye is getting increasingly aggressive with its detection vectors. I've been looking into a plan for an external that skips the usual manual mapping headache and goes straight for physical memory access via BYOVD.

The Logic: Secure Boot & VBS
With Secure Boot off, VBS/HVCI usually isn't in the way, making the kernel a lot less restrictive. However, BE still likes to play dirty. Based on analysis of their pushed shellcode, they aren't just walking PsLoadedModuleList or using EnumDeviceDrivers anymore. They are actively enumerating drivers, reading certificates, and even dumping binaries if they find suspicious strings. If you're running an unsigned driver—even manually mapped—you're basically asking for a flag.

BYOVD Physical Memory Mapping
The strategy involves using a vulnerable signed driver (think old hardware monitors or system utility tools) that carries a legitimate Authenticode certificate. Instead of loading custom kernel code, we leverage the driver's own IOCTL to map arbitrary physical memory into user space.

  1. Identify a signed driver not yet blacklisted by BE.
  2. Utilize its IOCTL to map game physical pages directly to the cheat process.
  3. No ReadProcessMemory, no handle stripping, and zero custom kernel footprints.
  4. Overlay execution via process hijacking (Medal, Discord, or similar trusted overlays).

Architecture & Detection Risks
While this method avoids the "unsigned code in kernel" trap, it's not a silver bullet. BattlEye has been known to track specific IOCTL patterns. Even if the driver is signed, if the anti-cheat sees a generic user-mode process calling an IOCTL known for physical memory mapping (like certain versions of MapPhysicalMemory), it might trigger a manual review or a heuristic ban.

Anti-Cheat Checks: BE's shellcode can check for specific driver symbols or strings that match known mapping vulnerabilities.
Overlay Safety: Hijacking is safer than creating a top-most window, but ensure the target process doesn't perform its own internal integrity checks on the rendering hook.
Communication: If you're not careful with your IOCTL calls, the sheer volume of reads could be an outlier in their telemetry data.

The goal here is to be as invisible as possible by using the system's own trusted (but broken) tools against it. If the cert is clean and the IOCTL isn't burned, this should theoretically stay under the radar for a while.

Has anyone caught a ban lately using this specific mapping method on BE, or are they still mostly focused on sig-scanning manual mappers?
 
Top