Strip SteamStub DRM from a Steam game executable you legally own to study how the DRM wrapper is structured.
Compile and run Steamless in Visual Studio 2022 to process a 32-bit or 64-bit game executable protected by SteamStub Variant 3.
Use Steamless as a reference implementation to understand how software DRM wrapping and executable patching work at a technical level.
Requires Visual Studio 2022 to compile from source, only for personal or educational use on games you legally own, commercial use is prohibited by the license.
Steamless is a C# application that removes a specific type of copy protection called SteamStub DRM from game executables distributed through Steam. SteamStub is a protection layer that Valve offers to game developers via the Steamworks SDK. It wraps the game's executable file and verifies that Steam is running and authenticated before the game can start. Steamless strips that wrapper off the executable. The README is explicit about what the tool does not do. It will not remove the Steamworks API integration that handles features like leaderboards or achievements. It will not include or distribute any software for running Steam games without a Steam account. It will not handle Valve's older CEG (Custom Executable Generation) protection used on some classic titles. The author states clearly that the tool is not intended for piracy and should only be used on games the user legally owns. Steamless supports several generations of SteamStub protection, referred to internally as Variant 1, Variant 2, and Variant 3, with multiple sub-versions under each. Variant 3 covers both 32-bit and 64-bit executables. The version numbering is the author's own labeling system based on observed differences in the DRM structure, not an official Valve versioning scheme. The project is released under a Creative Commons license that allows personal and educational use but prohibits commercial use and derivative works. The author describes its purpose as understanding how DRM technology works. The tool is built with Visual Studio 2022 and can be compiled by loading the solution file. Contributions are accepted but the author asks contributors to follow the existing code style, avoid adding new dependencies without discussion, and keep the tool general so it works across many titles rather than being hard-coded for specific games.
← atom0s on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.