Current Release
v0.4.2.0b
BETA Released May 12, 2026
Requires approved partner account
File Size
4.8 MB
Archive
cerberus-sdk-v0.4.2.0b-win64.zip
Platform
Windows 10/11 x64
SHA-256 Checksum
a3f7e2d19c84b60f5512973ec1aa847d2b9f038c74e5d61b8a920c43e7f1d256
SDK Components
Everything included in the cerberus-sdk-v0.4.2.0b-win64.zip archive
C++ Static Library
Pre-compiled Win64 static library (.lib) ready to link into your game build. MSVC and Clang compatible.
STATIC LIB cerberus_sdk_x64.lib · 3.1 MB
C++ Header Files
Public API headers — cerberus_sdk.h, cerberus_types.h, cerberus_errors.h. C++17 compatible.
HEADERS include/ · 48 KB
Integration Guide
Step-by-step PDF covering build setup, API key provisioning, session lifecycle, and error handling.
PDF CerberusSDK-IntegrationGuide-v0.4.2.0b.pdf · 1.2 MB
Sample Project (UE5)
Fully functional Unreal Engine 5.1+ plugin with Blueprint bindings, session management, and ban hook examples.
UE5 samples/ue5/ · 280 KB
Sample Project (Unity) EARLY PREVIEW
Unity 2022 LTS package with C# P/Invoke bindings, session lifecycle hooks, and example ban callback handler. Unreal Engine is the primary supported engine — Unity integration is functional but still maturing.
UNITY samples/unity/ · 195 KB
CLI Diagnostic Tool
cerberus-diag.exe — validates driver installation, API key connectivity, and hardware compatibility before integration.
CLI TOOL tools/cerberus-diag.exe · 128 KB
System Requirements
Minimum requirements for SDK integration and runtime
  • OS Windows 10 / 11 64-bit REQUIRED
  • Compiler MSVC 2019+ or Clang 14+ REQUIRED
  • Engine UE 5.1+ or Unity 2022+ RECOMMENDED
  • Secure Boot Enabled REQUIRED
  • TPM TPM 2.0 REQUIRED
  • C++ Std C++17 minimum REQUIRED
Quick Start
Basic integration — four calls to protect a session
main.cpp C++
#include "cerberus_sdk.h"

int main() {
    CerberusConfig config = {};
    config.api_key  = "crb_live_xxxxxxxxxxxx";
    config.title_id = "CRB-0117";

    cerberus_init(&config);
    cerberus_start_session(player_id);
    // ... game loop ...
    cerberus_end_session();
    cerberus_shutdown();
}
Full Documentation
See the integration guide in Docs for session lifecycle, error handling, ban webhooks, and advanced config.
Version History
Current and recent releases
Version Date Size Changes Downloads