Bypassing ricochet's Anti-Cheat with one hook

Table of Contents
What is Ricochet
Ricochet Anti-Cheat is a proprietary anti-cheat system developed by Activision for its popular video games, including the "Call of Duty" series. It aims to detect and prevent cheating in online multiplayer games, ensuring a fair gaming environment. The system employs a combination of server-side tools and a kernel-level driver for Windows, which provides deeper access to monitor and manage the integrity of the game's processes. By analyzing game data and behaviors, Ricochet can identify and mitigate cheating tactics more effectively. The implementation of this anti-cheat technology reflects Activision's commitment to combating cheating and enhancing the overall player experience.
bdEventLog::RecordEventsMixed
"bdEventLog::RecordEventsMixed" is essentially a telemetry function used by Demonware, a subsidiary of Activision, for logging and sending various in-game events and data. This function collects detailed information about player activities and behaviors, including potential detection vectors that might indicate cheating. When certain suspicious activities or patterns, referred to as "infractions," are detected, these events are recorded and sent to the server. This data helps the anti-cheat system analyze and identify possible cheats or exploits, ultimately contributing to the decision-making process for triggering bans and maintaining game integrity. The use of "bdEventLog::RecordEventsMixed" is crucial for enhancing the effectiveness of the anti-cheat measures and ensuring a fair gaming environment.
The Bypass
As of 30/05/2024 this bypass works but will most likely be fixed in the coming days or weeks.
- Hooking bdEventLog::RecordEventsMixed and returning
'0'
Makes the usermode not report any 'infractions' bypassing the kernel level Anti-Cheat. - Returning
'0'
within the bdEventLog::RecordEventsMixed hook on MW3 will result in server disconnects. This occurs because, in MW3, it is necessary to modify the event information to allow certain events to pass through before blocking other events.
-
Unlike MW3, you can return
'0'
in MW2 and MW2019 without encountering these issues, eliminating the need for additional code modifications.
'Cobalt'
use this bypass to get around
Ricochet's Kernal Anti-Cheat
Summary
Ricochet Anti-Cheat is Activision's proprietary system designed to prevent cheating in games like
the "Call of Duty"
series by using a combination of server-side tools and a kernel-level driver. The
"bdEventLog::RecordEventsMixed"
function, developed by Demonware, logs player activities and detects potential cheating infractions,
aiding in the
enforcement of game integrity.
As of May 30, 2024, a known bypass exploits this function by hooking it and making it return '0', thus
preventing the
reporting of infractions and bypassing the anti-cheat system. This bypass is used by some cheating
software and affects
all Ricochet-protected titles.
I reached out to an Activision employee, who wishes to
remain
anonymous, to get their perspective on the recent bypass
of the Ricochet Anti-Cheat system. They emphasized that breaches in the anti-cheat system are taken very
seriously. The
employee assured that the Ricochet team is actively working on a fix to address the vulnerability and
reinforce
the integrity of
their anti-cheat measures.