Osiris
Cross-platform game hack for Counter-Strike 2 with Panorama-based GUI.
Install / Use
/learn @tarekk2/OsirisREADME
Osiris
Cross-platform (Windows, Linux) game hack for Counter-Strike 2 with GUI and rendering based on game's Panorama UI. Compatible with the latest game update on Steam.
What's new
-
23 October 2025
-
Hostage Outline Glow hue is now customizable
-
20 October 2025
-
Added "No Scope Inaccuracy Visualization" feature
<a href="https://github.com/tarekk2/Osiris/releases/download/v1.7.2/Osiris.zip"><img height="300" alt="no scope inaccuracy visualization" src="https://github.com/user-attachments/assets/860c944a-00b1-4b67-9d41-6f43e46f4252" /></a>
-
09 October 2025
-
Added viewmodel fov modification
-
25 August 2025
-
Outline Glow hues are now customizable
-
Added
Enemy/Allycolor mode to Player Outline Glow -
19 July 2025
-
Adjusted allowed value range of "Team T Hue" Model Glow setting
Technical features
- C++ runtime library (CRT) is not used in release builds
- No heap memory allocations
- No static imports in release build on Windows
- No threads are created
- Exceptions are not used
- No external dependencies
Compiling
Prerequisites
Windows
- Microsoft Visual Studio 2022 with Desktop development with C++ workload
Linux
- CMake 3.24 or newer
- g++ 11 or newer or clang++ 17 or newer
Compiling from source
Windows
Open Osiris.sln in Visual Studio 2022, set build configuration to Release | x64. Press Build solution and you should receive Osiris.dll file.
Linux
Configure with CMake:
cmake -DCMAKE_BUILD_TYPE=Release -B build
Build:
cmake --build build -j $(nproc --all)
After following these steps you should receive libOsiris.so file in build/Source/ directory.
Loading / Injecting into game process
Windows
You need a DLL injector to inject (load) Osiris.dll into game process.
Counter-Strike 2 blocks LoadLibrary injection method, so you have to use a manual mapping (aka reflective DLL injection) injector.
Xenos and Extreme Injector are known to be detected by VAC.
Linux
You can simply run the following script in the directory containing libOsiris.so:
sudo gdb -batch-silent -p $(pidof cs2) -ex "call (void*)dlopen("$PWD/libOsiris.so", 2)"
However, this injection method might be detected by VAC as gdb is visible under TracerPid in /proc/$(pidof cs2)/status for the duration of the injection.
FAQ
Where are the settings stored on disk?
In a configuration file default.cfg inside %appdata%\OsirisCS2\configs directory on Windows and $HOME/OsirisCS2/configs on Linux.
License
Copyright (c) 2018-2025 Daniel Krupiński
