- Status
- Offline
- Joined
- Mar 3, 2026
- Messages
- 729
- Reaction score
- 457
Anyone else digging into the Alkad ban logic lately?
Getting clapped on Alkad 1.5x servers is one thing, but the way their launcher handles identities is becoming a headache for those running cracked builds. If a fresh Steam account and a new IP haven't worked, you're likely being tracked via client-side artifacts rather than a standard server-side HWID flag.
Tirify Launcher & Rust Trace Locations
Using Process Monitor to sniff out what RustClient.exe and the Tirify launcher are touching reveals several persistence points. If you're trying to bypass a ban, nuking these is the bare minimum before attempting a rejoin:
Experimental Fixes & Troubleshooting
Testing confirms that Alkad's ban system behaves differently depending on the client integrity. If you can log into the server on a legit copy but get kicked on the crack using the same hardware, the Tirify wrapper is clearly flagging your environment.
Anyone found any deeper hooks in the Tirify assembly or specific offsets being checked? Drop your crash logs or success stories below.
Getting clapped on Alkad 1.5x servers is one thing, but the way their launcher handles identities is becoming a headache for those running cracked builds. If a fresh Steam account and a new IP haven't worked, you're likely being tracked via client-side artifacts rather than a standard server-side HWID flag.
Tirify Launcher & Rust Trace Locations
Using Process Monitor to sniff out what RustClient.exe and the Tirify launcher are touching reveals several persistence points. If you're trying to bypass a ban, nuking these is the bare minimum before attempting a rejoin:
- Global Rust Config: Rust\config.dat
- Microsoft Cache: AppData\LocalLow\Microsoft\CryptnetUrlCache\
- Facepunch Identity: AppData\LocalLow\Microsoft\Facepunch\
- Registry Keys:
Code:
HKEY_CURRENT_USER\Software\Facepunch HKEY_CURRENT_USER\Software\Tirify - Launcher App Data: AppData\Roaming\tirify-launcher-app
The Tirify launcher seems to generate its own unique identifier and stores session data in AppData\Roaming\tirify-launcher-app. Deleting this folder often allows a temporary rejoin, but if you're getting flagged again within hours, they might be cross-referencing your disk serials or volume IDs alongside these traces. The diff between the original copy (which logs in fine) and the crack suggests the launcher-level tracking is the primary culprit.
Experimental Fixes & Troubleshooting
Testing confirms that Alkad's ban system behaves differently depending on the client integrity. If you can log into the server on a legit copy but get kicked on the crack using the same hardware, the Tirify wrapper is clearly flagging your environment.
- Nuke the registry keys mentioned above before every launch—don't let them persist.
- Use a clean MAC address and verify your disk serials aren't being logged via a basic spoofer.
- Always clear the Cryptnet cache—it's a common "hidden" trace point for custom AC implementations that people often overlook.
Anyone found any deeper hooks in the Tirify assembly or specific offsets being checked? Drop your crash logs or success stories below.