Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Osiris | 3,103 | 2 days ago | 149 | mit | C++ | |||||
Free and open-source game hack for Counter-Strike 2, written in modern C++. For Windows and Linux. | ||||||||||
Aws Cheatsheet | 45 | 3 years ago | agpl-3.0 | |||||||
☁️ The AWS Cheat Sheet ☁️ | ||||||||||
Docker Cheat Sheet | 15 | 4 years ago | ||||||||
Most commonly used docker commands | ||||||||||
Docker Cheat Sheet | 15 | 8 years ago | 1 | |||||||
Handy cheat sheet for Docker setup and operational commands | ||||||||||
Docker Cheat Sheet | 4 | 2 years ago | ||||||||
My docker cheat sheet! | ||||||||||
Docker Cheatsheet | 2 | 4 years ago | ||||||||
Useful Docker commands and snippets | ||||||||||
Alllauncher | 1 | 4 years ago | PowerShell | |||||||
AllLauncher is a command line based launcher for games. It is designed to be used with some other frontend and provides automation options. | ||||||||||
Docker Cheat Sheet | 1 | 6 years ago | mit | |||||||
A Docker Cheat Sheet. |
Free and open-source game hack for Counter-Strike 2. Compatible with the latest Steam version of the game. Cross-platform - available for Windows and Linux systems.
Open Osiris.sln in Visual Studio 2022, set build configuration to Release | x64. Press Build solution and you should receive Osiris.dll file.
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.
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.
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.
Copyright (c) 2018-2023 Daniel Krupiński
This project is licensed under the MIT License - see the LICENSE file for details.